husnjak / igdb_api_python

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

Home Page:https://api.igdb.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

https://api.igdb.com/

License:MIT License


Languages

Language:Python 100.0%