/igdb_api_python

Python Wrapper for IGDB.com API. Requires an API key. Get one at:

Primary LanguagePythonMIT LicenseMIT

Build Status Coverage Status PyPI version

To use this wrapper, run:

pip install igdb_api_python

Example on how to use it

from igdb_api_python.igdb import igdb

igdb = igdb("YOUR_KEY")
result = igdb.games(1942)

for game in result.body:
    print("Retrieved: " + game["name"])

Example.py for more examples