An asynchronous API wrapper for the pokeapi.
Project description
AioPokéApi
An Asynchronous API wrapper for the PokéApi.
Report issue · Request feature · Fork project
🗝️ Key Features
- Use of modern Python keywords:
async
andawait
. - Every object is fully type hinted.
- Objects get cached, this increases speed and avoids unnecessary API requests.
🌍 Documentation
AioPokéApi has a very minimal website, which you can find here. It also has some documentation.
☄️ Installation
pip install aiopokeapi
⚙️ Didn't work?
Depending on your Python installation, you might need to use one of the following:
-
Python is not in PATH
path/to/python.exe -m pip install aiopokeapi
-
Python is in PATH but pip is not
python -m pip install aiopokeapi
-
Unix systems can use pip3/python3 commands
pip3 install aiopokeapi
python3 -m pip install aiopokeapi
-
Using multiple Python versions
py -m pip install aiopokeapi
🚀 Getting started
Aiopoke's goal is to be simple and easy to use:
import asyncio
import aiopoke
async def main():
client = aiopoke.AiopokeClient()
ability = await client.get_ability(1)
generation = await ability.generation.fetch()
await client.close()
asyncio.run(main())
Or even better, using a context manager:
# in main()
async with aiopoke.AiopokeClient() as client:
ability = await client.get_ability(1)
generation = await ability.generation.fetch()
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
File details
Details for the file aiopokeapi-0.1.5.1.tar.gz
.
File metadata
- Download URL: aiopokeapi-0.1.5.1.tar.gz
- Upload date:
- Size: 12.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1284e60020261fc60e008f1d0c6a8175e607ce2141f732514b5997a7ebb44ce1 |
|
MD5 | 23e8ea025493360834b7ae50cf363955 |
|
BLAKE2b-256 | cb92739bfa332a911549fea78f7d1a9296c8e748939d8eb60530919b4efad47f |
File details
Details for the file aiopokeapi-0.1.5.1-py3-none-any.whl
.
File metadata
- Download URL: aiopokeapi-0.1.5.1-py3-none-any.whl
- Upload date:
- Size: 59.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | feaac66ecf504a97c4b17b4305bf62294235257778f28f6409d30256f746f0a0 |
|
MD5 | 939ad62c8c20e3572add865f212020c6 |
|
BLAKE2b-256 | 46869a8019f5326dea05500fff64ce48cc5c7774fd36d66fce723268fbfde8af |