We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Say I want to get all my Github Org's repos info, for data analysis. Not just the public repos, but also the private/internal repos.
The endpoints are different for organisation, and this tool doesn't take it into account:
github-to-sqlite/github_to_sqlite/utils.py
Line 453 in ace13ec
Line 455 in ace13ec
The endpoints for organisation repos is instead (source): url = "https://api.github.com/orgs/{}/repos".format(username)
url = "https://api.github.com/orgs/{}/repos".format(username)
Let's add support for organisations repo scraping.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Say I want to get all my Github Org's repos info, for data analysis. Not just the public repos, but also the private/internal repos.
The endpoints are different for organisation, and this tool doesn't take it into account:
github-to-sqlite/github_to_sqlite/utils.py
Line 453 in ace13ec
github-to-sqlite/github_to_sqlite/utils.py
Line 455 in ace13ec
The endpoints for organisation repos is instead (source):
url = "https://api.github.com/orgs/{}/repos".format(username)
Let's add support for organisations repo scraping.
The text was updated successfully, but these errors were encountered: