HTTP wrapper for the Epic/Fortnite APIs.
Project description
Still in early development.
PyEpic
An asynchronous, object-oriented API wrapper for the Epic/Fortnite HTTP services, written in Python.
Key Features
- Use of the
asyncioframework to handle many IO-bound tasks concurrently. - Automatic, configurable rate limit handling and caching.
- Optimised for speed and memory.
Installing
Python 3.10 or higher is required. For project dependencies, see requirements.txt.
It is recommended to install the library within a virtual environment instead of the global Python installation.
# Windows
py -m pip install py-epic
#Linux/MacOS
python3 -m pip install py-epic
Basic Example
import asyncio
import pyepic
async def main():
async with pyepic.HTTPClient() as client:
auth_code = input(f'Enter authorization code from {client.user_auth_path} here: ')
async with client.create_auth_session(auth_code) as auth_session:
account = await auth_session.account()
print(f'Logged in as: {account}')
asyncio.run(main())
Notes
- PyEpic does not currently support Epic Games' XMPP services. This includes real-time in-game events such as party invites or whispers.
Disclaimers
- The APIs that PyEpic interacts with are not officially documented, nor are they intended to be used outside the official clients. As a result, the package could experience major breaking changes (or stop working!) at any moment.
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 Distribution
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 py-epic-0.1.0.tar.gz.
File metadata
- Download URL: py-epic-0.1.0.tar.gz
- Upload date:
- Size: 42.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d4297f3fcadf1363251bf56f6c22a985fee805cf0f92b88f4026ff927cd77ab
|
|
| MD5 |
ba4503a56eb3278652a92cb2a1f8988c
|
|
| BLAKE2b-256 |
c55fe32edbe892672c64559e818bbf603ba3ec22d0b80a1d77514f42fef97bbe
|
File details
Details for the file py_epic-0.1.0-py3-none-any.whl.
File metadata
- Download URL: py_epic-0.1.0-py3-none-any.whl
- Upload date:
- Size: 46.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4546a4d0773f16e85056b6d145e70b3c93cf4c9475fa8b3d43325f799aa69b10
|
|
| MD5 |
c6a346af203b623da3a630a5c495532c
|
|
| BLAKE2b-256 |
d7ade06e84912676b09529f1ec1fc4653603360991f3fb46bb8fa47c30673e8f
|