Metadata-Version: 2.1
Name: async_pokepy
Version: 0.0.7a0
Summary: A simple asynchronous wrapper for the PokeAPI.co API.
Home-page: https://github.com/PendragonLore/async_pokepy
License: MIT
Description: # async_pokepy
        [![PyPI pyversions](https://img.shields.io/pypi/pyversions/async_pokepy.svg)](https://pypi.python.org/pypi/async-pokepy/)
        [![PyPI status](https://img.shields.io/pypi/status/async_pokepy.svg)](https://pypi.python.org/pypi/async_pokepy/)
        [![PyPI license](https://img.shields.io/pypi/l/async_pokepy.svg)](https://github.com/PendragonLore/async_pokepy/blob/master/LICENSE)
        [![Documentation Status](https://readthedocs.org/projects/async-pokepy/badge/?version=latest)](https://async-pokepy.readthedocs.io/en/latest/?badge=latest)
        [![Pipelines Status](https://gitlab.com/PendragonLore/async_pokepy/badges/master/pipeline.svg)](https://gitlab.com/PendragonLore/async_pokepy/pipelines)
        
        
        An, in the works, asynchronous wrapper for the [PokeAPI.co API](https://pokeapi.co).
        
        You can check out the (failing) pipelines @ [gitlab](https://gitlab.com/PendragonLore/async_pokepy).
        
        ## Documentation
        The docs are available @ [readthedocs](https://async-pokepy.readthedocs.io/en/latest/).
        
        ## Installing
        The wrapper is available on PyPi, you can install it with:
        
        ``pip install async_pokepy``
        
        ## Example
        ```python
        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"
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.5.3
Description-Content-Type: text/markdown
Provides-Extra: docs
