A Python wrapper for the Wynncraft API
Project description
Corkus.py ⚙️
Asynchronous, feature-rich and easy to use Python wrapper for Public Wynncraft API.
Key Features
- Asynchronous API using
async
andawait
- Easy to use with an object oriented design and
fetch
functions - ≈ 95% coverage of the Wynncraft API as of now
- Proper rate limit handling
- Responses caching
Missing Features
- Item Database Endpoint
- Wired search routes
- Error handling
Installation
Python 3.8+ or higher is required
pip install corkus.py
Or install latest development version:
pip install git+https://github.com/MrBartusek/corkus.py@main
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
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-0.2.2.tar.gz
(3.6 kB
view hashes)