Skip to content

Commit

Permalink
Now retrieves *all* URLs (up to 100) from organization
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebraham committed Aug 9, 2022
1 parent 0995656 commit ba3a8c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

def main():
def query_org_repos():
r = requests.get(API_URL)
r = requests.get(API_URL, params={"per_page": 100})
urls = [
j["html_url"] for j in r.json() if not j["private"] and not j["archived"]
]
Expand Down

0 comments on commit ba3a8c4

Please sign in to comment.