Metadata-Version: 2.1
Name: apexlegendspy
Version: 0.0.2
Summary: Apex-legends api async wrapper
Home-page: https://github.com/surister/apexpy
Author: surister
Author-email: surister98@gmail.com
License: MIT
Description: # Introduction
        
        [![Codacy Badge](https://api.codacy.com/project/badge/Grade/fcd973fcdfea4d529da32beaccd55420)](https://www.codacy.com/app/surister/apexpy?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=surister/apexpy&amp;utm_campaign=Badge_Grade)
        ![LICENSE](https://img.shields.io/github/license/surister/apexpy.svg)
        ![DOCS](https://readthedocs.org/projects/apexlegendspy/badge/?version=latest)
        ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/apexlegendspy.svg)
        
        Apexpy it's an asynchronous api wrapper for Apex-legend written for python 3.6+
        
        ## Showcase
        
            import asyncio
            from apexpy import ApexApi
        
        
            async def main():
        
                player = ApexApi(key='SecretApiKey')
                await player.search('DiegosaursTTV', 'pc')
        
                for legend in player.legends:
                    print(f'{legend.name} -> {legend.stats}')
        
                print(player.stats)
        
            asyncio.run(main())
        
        ## Output
        
            Wraith -> [{'Kills': 4329.0, 'rank': 658}, {'KillsPerMatch': 8.78, 'rank': 117}, {'DamagePerMatch': 1696.19, 'rank': 128}, {'Damage': 836222.0, 'rank': 926}, {'MatchesPlayed': 493.0, 'rank': 866}]
            Mirage -> [{'Kills': 10324.0, 'rank': 1}, {'Damage': 2062356.0, 'rank': 1}, {'Headshots': 6869.0, 'rank': 4}, {'CarePackageKills': 89.0, 'rank': 2}]
            Lifeline -> [{'Kills': 14.0, 'rank': None}]
            Bloodhound -> [{'Kills': 139.0, 'rank': 32243}]
            Caustic -> [{'Kills': 41.0, 'rank': 7054}]
            Gibraltar -> [{'Kills': 102.0, 'rank': 1915}]
            Bangalore -> [{'Kills': 384.0, 'rank': 27236}, {'Damage': 78092.0, 'rank': 23243}]
            Pathfinder -> [{'Kills': 37.0, 'rank': 27638}, {'Specific2': 17665.0, 'rank': 12108}]
            [{'Level': 392.0, 'rank': None}, {'Kills': 15370.0, 'rank': 1}, {'KillsPerMatch': 31.18, 'rank': None}, {'DamagePerMatch': 6037.87, 'rank': None}, {'Damage': 2976670.0, 'rank': 1}, {'MatchesPlayed': 493.0, 'rank': None}, {'CarePackageKills': 89.0, 'rank': None}]
          
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
