Skip to content

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

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.txt
Notifications You must be signed in to change notification settings

newzoo-nexus/igdb_api_python

 
 

This repo is no longer officially supported though it's still open to contributions via pull requests and issue support.

Build Status Coverage Status PyPI version

It is expected that you know how the API works and read the documentation: https://igdb.github.io/api/about/welcome/


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"])

result is an requests object: http://docs.python-requests.org/en/master/
So you can check on status_code etc.

Example.py for more examples

About

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

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.txt

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%