mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
Moving json from API to dedicated folder
This commit is contained in:
parent
0911ebb1e1
commit
80df6a6bcd
4 changed files with 3 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1 @@
|
|||
*.json
|
||||
data/*.json
|
||||
|
|
|
@ -48,7 +48,7 @@ def main():
|
|||
|
||||
print("Analyzing %s ..." % repo)
|
||||
|
||||
with open("./%s.json" % repo, "r") as f:
|
||||
with open("data/%s.json" % repo, "r") as f:
|
||||
j = json.loads(f.read())
|
||||
|
||||
for issue in j:
|
||||
|
|
0
data/.gitkeep
Normal file
0
data/.gitkeep
Normal file
2
fetch.py
2
fetch.py
|
@ -14,5 +14,5 @@ for repo in repos:
|
|||
|
||||
issues = requests.get("https://api.github.com/repos/yunohost/%s/issues?per_page=100" % repo)
|
||||
|
||||
with open("./%s.json" % repo, "w") as f:
|
||||
with open("data/%s.json" % repo, "w") as f:
|
||||
f.write(issues.text)
|
||||
|
|
Loading…
Reference in a new issue