Metadata-Version: 2.1
Name: r6sapi
Version: 1.4.1
Summary: Interface for Ubisoft API
Home-page: https://github.com/billy-yoyo/RainbowSixSiege-Python-API
Author: billyoyo
Author-email: billyoyo@hotmail.co.uk
License: MIT
Description: # r6sapi
        
        r6sapi is an easy-to-use asynchronous API for rainbow six siege, written in python. To use it you'll need to use your ubisoft email and password
        
        ### Installation
        
        To install this module, simply run
        
            pip install r6sapi
        
        ### Documentation
        
        http://rainbowsixsiege-python-api.readthedocs.io/en/latest/
        
        ### Quick Example
        
        ```py
        import asyncio
        import r6sapi as api
        
        async def run():
            auth = api.Auth("email", "password")
            
            player = await auth.get_player("billy_yoyo", api.Platforms.UPLAY)
            operator = await player.get_operator("sledge")
            print(operator.kills)
        
            await auth.close()
            
        asyncio.get_event_loop().run_until_complete(run())
        ```
        
        ### TODO
        
          -  nothing for now, open an issue if you'd like any new feature added.
        
        ### License
        
        
        MIT
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
