https://github.com/anuja-rahul/stat-retrieval-using-riotapi
A python program that can access and retrieve your desired information from riot games api and returns/stores them as text/bytes.
https://github.com/anuja-rahul/stat-retrieval-using-riotapi
learning-by-doing oop python3 riot-games-api statistics
Last synced: 2 months ago
JSON representation
A python program that can access and retrieve your desired information from riot games api and returns/stores them as text/bytes.
- Host: GitHub
- URL: https://github.com/anuja-rahul/stat-retrieval-using-riotapi
- Owner: anuja-rahul
- License: mit
- Created: 2024-03-27T17:07:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-28T13:59:12.000Z (about 1 year ago)
- Last Synced: 2025-01-01T19:28:50.277Z (4 months ago)
- Topics: learning-by-doing, oop, python3, riot-games-api, statistics
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README


# Stat retrieval using riotAPI
#### Currently only support league of legends only !


## Prerequisites:
- A riot games developer account with access to a developer api key.
- You can set up an account from [here](https://developer.riotgames.com/).
- Python v3.10 or higher.
- You can download python from [here](https://www.python.org/downloads/).
- All the packages specified in the [requirements.txt](https://github.com/anuja-rahul/stat-retrieval-using-riotAPI/blob/main/requirements.txt) file.
- Save your api key in a .env file (or you can hardcode it into a variable, although not recommended)
- Your .env file should look something similar to this,
```dotenv
# Example .env file
API_KEY="YOUR API KEY"
```