Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
LuCkEr- committed Aug 23, 2021
2 parents e4ea187 + 83ebc37 commit f228c65
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@
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())
```python
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())
```

0 comments on commit f228c65

Please sign in to comment.