Metadata-Version: 2.4
Name: igdbpy
Version: 0.1.1
Summary: Python wrapper around the IGDB API
Author-email: TonyGrif <TonyGriffin2000@gmail.com>
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.9
Requires-Dist: requests>=2.32.3
Description-Content-Type: text/markdown

# IgdbPy
A Python wrapper around the [Internet Game Database (IGDB)](https://www.igdb.com/) API

## Usage
```py
import igdbpy

key = igdbpy.generate_api_key(ID, SECRET)
wrapper = IgdbWrapper(ID, key)

data = wrapper.request_game(FIELD_QUERY)
more_data = wrapper.make_request(ENDPOINT, FIELD_QUERY)
```

## Authors
* [TonyGrif](https://github.com/TonyGrif) - Creator and Maintainer

## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) for details
