A simple, easy to use python wrapper for the Nookipedia API
Project description
#AIO-Nookipedia A simple, all-in-one python wrapper for the Nookipedia API
Nookipedia is a community-driven Animal Crossing wiki. The main page of the Nookipedia wiki can be found here.
##General Usage:
Every endpoint in the API is accessible through the get functions inside NookClient found in client.py
For security in your own project, it is best if you use python-dotenv to load your api key, but you can pass the api key into NookClient()
manually if you wish.
import asyncio
from aionookipedia.client import NookClient
from dotenv import load_dotenv
import os
#Example Usage:
async def main():
load_dotenv()
apiKey = os.getenv("API_KEY")
async with NookClient(apiKey) as client:
data = await client.getFish('pike')
print(data.name)
asyncio.run(main())
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 aio_nookipedia-0.1.8.tar.gz.
File metadata
- Download URL: aio_nookipedia-0.1.8.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27a6317f39044f4a111d46be2cb7dc76a3207581bb8687579ef2109918523518
|
|
| MD5 |
9bd7d95287a017a04deda3dc950bf488
|
|
| BLAKE2b-256 |
f40393eda820a3244015f1a872cbb8ea3da09579ec9c86d1ac09bca324b784f9
|
File details
Details for the file aio_nookipedia-0.1.8-py3-none-any.whl.
File metadata
- Download URL: aio_nookipedia-0.1.8-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3116390120539ddc7af2a62adcbe9e2ea78b426cf37eeb0bbb768fc73475ec98
|
|
| MD5 |
26d11ff414becfd562ab79505ec9e341
|
|
| BLAKE2b-256 |
fd574427026390c9f02873d40f86c9e2977313b243e0399c002de2749ea4f941
|