An API wrapper for Epic Games Store written in Python
Project description
epicstore_api
An unofficial library to work with Epic Games Store Web API.
Installing
Python 3.6 or higher is required
To install the library you can just run the following command:
# Linux/macOS
python3 -m pip install -U epicstore_api
# Windows
py -3 -m pip install -U epicstore_api
Quick Example
api = EpicGamesStoreAPI()
namespace, slug = next(iter(api.get_product_mapping().items()))
first_product = api.get_product(slug)
offers = [
OfferData(page['namespace'], page['offer']['id'])
for page in first_product['pages']
if page.get('offer') and 'id' in page['offer']
]
offers_data = api.get_offers_data(*offers)
for offer_data in offers_data:
data = offer_data['data']['Catalog']['catalogOffer']
developer_name = ''
for custom_attribute in data['customAttributes']:
if custom_attribute['key'] == 'developerName':
developer_name = custom_attribute['value']
print('Offer ID:', data['id'], '\nDeveloper Name:', developer_name)
You can find more examples in the examples directory.
Contributing
Feel free to contribute by creating PRs and sending your issues
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file epicstore_api-0.2.0-py3-none-any.whl.
File metadata
- Download URL: epicstore_api-0.2.0-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
953225ef9f73d7486e27e8e3d332c29a5a1a4dbdabf98b46d8c4ad2fa3a173c9
|
|
| MD5 |
6bec71da330d293d293d2ecb4cb6fea2
|
|
| BLAKE2b-256 |
11c14913a1ed4c45fbf0f4683a8e57ad4e91fa75c5f6c9e3fbe70f5184f6446e
|