mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
14 lines
317 B
Python
Executable file
14 lines
317 B
Python
Executable file
#!/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", verify=False)
|
|
|
|
|
|
with open("data/raw_roadmapissues.xml", "w") as f:
|
|
f.write(roadmapissues.text)
|
|
|
|
get_roadmapissues()
|