Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 1.12 KB

README.md

File metadata and controls

30 lines (19 loc) · 1.12 KB

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