Asynchronous, feature-rich and easy to use Python wrapper for Public Wynncraft API
Project description
Corkus.py ⚙️
Asynchronous, feature-rich and easy to use Python wrapper for Public Wynncraft API.
Key Features
- Modern asynchronous API using
async
/await
syntax. - Easy to use with an object oriented design using
fetch
and helper functions. - 100% coverage of the Wynncraft API.
- Proper rate limit handling that prevents 429s.
- Responses caching to improve speed.
Installation
Python 3.8+ or higher is required
pip install corkus.py
Or install latest development version:
pip install --upgrade git+https://github.com/MrBartusek/corkus.py@main
See documentation for more information.
Quick Example
Using Context Manager:
import asyncio
from corkus import Corkus
async def player_stats():
async with Corkus() as corkus:
player = await corkus.player.get("Salted")
print(f"username: {player.username}")
print(f"chests_found: {player.statistics.chests_found}")
loop = asyncio.get_event_loop()
loop.run_until_complete(player_stats())
Without Context Manager:
import asyncio
from corkus import Corkus
async def player_stats():
corkus = Corkus()
player = await corkus.player.get("Salted")
print(f"username: {player.username}")
print(f"chests_found: {player.statistics.chests_found}")
await corkus.close()
loop = asyncio.get_event_loop()
loop.run_until_complete(player_stats())
Output:
username: Salted
chests_found: 219
Contributing
Want to contribute to the project?
First of all, thanks! Check contributing guidelines for more information.
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 Distribution
corkus.py-1.2.1.tar.gz
(42.9 kB
view hashes)
Built Distribution
corkus.py-1.2.1-py3-none-any.whl
(69.5 kB
view hashes)
Close
Hashes for corkus.py-1.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e7acbdd21496af43bf44dd462a5507345b95a2bf24636bb3adc55d0b99e3506 |
|
MD5 | c2e049e585295533471a45b7d6698830 |
|
BLAKE2b-256 | 276befb3de5d3f9aadbdef6ba4a088e76d3e8efebc86c48a2ba1edd6073e81c3 |