Documentation Home#

Fetch repositories and developers from GitHub Trending.

Here’s a simple example, get the trending python projects and display their full names:

from gtrending import fetch_repos


repos = fetch_repos(language="python")  # Returns a dictionary

for repo in repos:
    print(repo["fullname"])  # "user/repo" for each repo

Installation#

Install gtrending on PyPI using your favorite package manage. For example:

pip3 install gtrending

Contribute#

Support#

If you are having issues, please open an issue on the github issue tracker as linked above.

License#

The project is licensed under the MIT license.

Indices and tables#