Metadata-Version: 2.1
Name: async-pokepy
Version: 0.0.5a0
Summary: UNKNOWN
Home-page: https://github.com/PendragonLore/async_pokepy
License: MIT
Description: # async_pokepy
        An, in the works, asynchronous wrapper for the [PokeAPI.co API](https://pokeapi.co).
        
        ## Documentation
        Available available @ [readthedocs](https://async-pokepy.readthedocs.io/en/latest/).
        
        ## Installing
        At the moment you can only install it from git with:<br>
        ``pip install git+github.com/PendragonLore/async_pokepy.git``
        
        ## 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
