我的文件格式看起来像这样report_10_04_2019_18_10_38
。我想每次检查是否有新文件,如果有新文件发送到我的私人仓库。我想继续寻找新文件,每 15 分钟或 1 小时将文件发送回我的仓库,但我该怎么做呢?
import datetime
from github import Github
repository = "xxxxxxxxx/xxxxxxxxx"
commit_message = "hello"
crashes = "xxxx/xxxx.html"
g = Github("xxxxxxxxxxxx")
repo = g.get_repo(repository)
while True:
repo.create_file(crashes, commit_message, "test")