معرفی شرکت ها


aiopokeapi-0.1.4


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

An asynchronous API wrapper for the pokeapi.
ویژگی مقدار
سیستم عامل OS Independent
نام فایل aiopokeapi-0.1.4
نام aiopokeapi
نسخه کتابخانه 0.1.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده beastmatser
ایمیل نویسنده -
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/aiopokeapi/
مجوز MIT
<p align="center"> <h1 align="center"> AioPokéApi</h1> <p align="center"> An Asynchronous API wrapper for the <a href="https://pokeapi.co">PokéApi</a>. </p> <p align="center"> <img id="tests" src="https://img.shields.io/github/workflow/status/beastmatser/aiopokeapi/tests?label=Tests&logo=github&style=flat-square"> <img id="pypi-version" src="https://img.shields.io/pypi/v/aiopokeapi?label=Pypi%20version&logo=pypi&logoColor=ffffff&style=flat-square"> <img id="python-version" src="https://img.shields.io/pypi/pyversions/aiopokeapi?label=Python%20version&logo=python&logoColor=ffffff&style=flat-square"> <img id="license" src="https://img.shields.io/github/license/beastmatser/aiopokeapi?label=License&style=flat-square"> <img id="style" src="https://img.shields.io/badge/Code%20style-black-black?style=flat-square"> </p> <p align="center"> <a href="https://github.com/beastmatser/aiopokeapi/issues/new/choose"> Report issue</a> · <a href="https://github.com/beastmatser/aiopokeapi/issues/new/choose"> Request feature</a> · <a href="https://github.com/beastmatser/aiopokeapi/fork"> Fork project</a> </p> ## 🗝️ Key Features - Use of modern Python keywords: `async` and `await`. - 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](https://beastmatser.github.io/aiopoke/). It also has some [documentation](https://beastmatser.github.io/aiopoke/docs/). ## ☄️ Installation ```sh pip install aiopokeapi ``` <details> <summary> ⚙️ <i> Didn't work?</i> </summary> Depending on your Python installation, you might need to use one of the following: - Python is not in PATH ```sh path/to/python.exe -m pip install aiopokeapi ``` - Python is in PATH but pip is not ```sh python -m pip install aiopokeapi ``` - Unix systems can use pip3/python3 commands ```sh pip3 install aiopokeapi ``` ```sh python3 -m pip install aiopokeapi ``` - Using multiple Python versions ```sh py -m pip install aiopokeapi ``` </details> ## 🚀 Getting started Aiopoke's goal is to be simple and easy to use: ```py 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: ```py # in main() async with aiopoke.AiopokeClient() as client: ability = await client.get_ability(1) generation = await ability.generation.fetch() ```


نیازمندی

مقدار نام
==0.8.0 aiofiles
>=3.7.4 aiohttp
>=6.0 pytest
>=2.0 pytest-cov
>=0.910 mypy
>=3.9 flake8
>=3.24 tox


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl aiopokeapi-0.1.4:

    pip install aiopokeapi-0.1.4.whl


نصب پکیج tar.gz aiopokeapi-0.1.4:

    pip install aiopokeapi-0.1.4.tar.gz