Metadata-Version: 2.1
Name: PyScoreSaber
Version: 0.1.0
Summary: Score Saber API client
Home-page: https://github.com/Kiyomi-Parents/PyScoreSaber
Author: LuCkEr-
Author-email: lucker@lucker.xyz
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Kiyomi-Parents/PyScoreSaber/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Requires-Dist: python-dateutil
Requires-Dist: OutCache
Requires-Dist: Faker

[![PyPI version](https://badge.fury.io/py/PyScoreSaber.svg)](https://pypi.org/project/PyScoreSaber)
# PyScoreSaber
Score Saber API client

### Usage:
    import asyncio
    from pyscoresaber import ScoreSaber
    
    
    async def main():
        async with ScoreSaber() as scoresaber:
            player = await scoresaber.get_player_full("76561198029447509")
            print(player)
    
    
    asyncio.run(main())

