|
|
@ -22,7 +22,7 @@ def getpage(url, page):
|
|
|
|
def getbylabel(label):
|
|
|
|
def getbylabel(label):
|
|
|
|
pagecount = 1
|
|
|
|
pagecount = 1
|
|
|
|
json = list()
|
|
|
|
json = list()
|
|
|
|
urlbase = 'https://api.github.com/repos/matrix-org/matrix-doc/issues?state=open&labels=' + label + '&page='
|
|
|
|
urlbase = 'https://api.github.com/repos/matrix-org/matrix-doc/issues?state=all&labels=' + label + '&page='
|
|
|
|
print(urlbase)
|
|
|
|
print(urlbase)
|
|
|
|
json.extend(getpage(urlbase, 1))
|
|
|
|
json.extend(getpage(urlbase, 1))
|
|
|
|
for page in range(2, int(pagecount) + 1):
|
|
|
|
for page in range(2, int(pagecount) + 1):
|
|
|
|