First upload of CVIssueCount

This commit is contained in:
2022-08-13 20:04:01 +02:00
parent 0daa99dbb2
commit 48a4cbce1e
42 changed files with 17177 additions and 0 deletions

19
CVIssueCount/v1/count.py Normal file
View File

@@ -0,0 +1,19 @@
import xml.etree.ElementTree as ET
t = """<response>
<error>OK</error>
<limit>1</limit>
<offset>0</offset>
<number_of_page_results>1</number_of_page_results>
<number_of_total_results>1</number_of_total_results>
<status_code>1</status_code>
<results>
<count_of_issues>403</count_of_issues>
</results>
<version>1.0</version>
</response>"""
tree = ET.parse(t)
root = tree.getroot()
for data in root[1]:
print data.text