Skip to content

Instantly share code, notes, and snippets.

@khuyentran1401
Last active June 29, 2022 00:46
Show Gist options
  • Save khuyentran1401/0189be1116084e5fd402cffa6c7f8bae to your computer and use it in GitHub Desktop.
Save khuyentran1401/0189be1116084e5fd402cffa6c7f8bae to your computer and use it in GitHub Desktop.
import requests
def get_general_info_of_repos(auth: dict):
response = requests.get(
f"https://api.github.com/users/{auth['username']}/received_events/public?per_page=100",
auth=(auth["username"], auth["token"]),
)
data = response.json()
return data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment