mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
15 lines
303 B
Python
15 lines
303 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
import requests
|
||
|
import json
|
||
|
|
||
|
def get_roadmapissues():
|
||
|
|
||
|
roadmapissues = requests.get("https://dev.yunohost.org/issues.xml?fixed_version_id=11&status_id=*&limit=100")
|
||
|
|
||
|
|
||
|
with open("data/raw_roadmapissues.xml", "w") as f:
|
||
|
f.write(roadmapissues.text)
|
||
|
|
||
|
get_roadmapissues()
|