tartiflette/roadmap/fetch.py

18 lines
418 B
Python
Raw Normal View History

#!/usr/bin/python3
import requests
import json
2017-08-26 14:59:28 +02:00
roadmaps = { "2.7": 15, "3.0": 14, "3.1": 13 }
2017-07-03 23:33:27 +02:00
def get_roadmapissues():
2017-07-03 23:33:27 +02:00
for roadmap, id in roadmaps.items():
2017-07-03 23:33:27 +02:00
issues = requests.get("https://dev.yunohost.org/issues.xml?fixed_version_id="+str(id)+"&status_id=*&limit=100", verify=False)
2017-07-03 23:33:27 +02:00
with open("data/raw_"+roadmap+"_issues.xml", "w") as f:
f.write(issues.text)
get_roadmapissues()