Skip to content

Commit ba3a8c4

Browse files
committed
Now retrieves *all* URLs (up to 100) from organization
1 parent 0995656 commit ba3a8c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
def main():
5151
def query_org_repos():
52-
r = requests.get(API_URL)
52+
r = requests.get(API_URL, params={"per_page": 100})
5353
urls = [
5454
j["html_url"] for j in r.json() if not j["private"] and not j["archived"]
5555
]

0 commit comments

Comments
 (0)