Skip to main content

No project description provided

Project description

async_pokepy

An, in the works, asynchronous wrapper for the PokeAPI.co API.

Documentation

Available available @ readthedocs.

Installing

At the moment you can only install it from git with:
pip install git+github.com/PendragonLore/async_pokepy.git

Example

import asyncio

import async_pokepy


async def main(query):
    client = await async_pokepy.Client.connect()

    pokemon = await client.get_pokemon(query)

    fmt = " ".join(map(str, pokemon.abilities))
    print("{0} has the abilities {1}".format(pokemon, fmt))

    await client.close()


loop = asyncio.get_event_loop()
loop.run_until_complete(main("Snorlax"))

This will output: "snorlax has the abilities gluttony thick-fat immunity"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

async_pokepy-0.0.5a0.tar.gz (8.4 kB view hashes)

Uploaded Source

Built Distributions

async_pokepy-0.0.5a0-py3.7.egg (31.2 kB view hashes)

Uploaded Source

async_pokepy-0.0.5a0-py3-none-any.whl (15.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page