A Basic wrapper for the Brawl Stars API
Project description
BrawlPy
A basic wrapper for the Brawl Stars API.
Features
- Easy to use with OOP design
- Get a player's profile and battle log by just a tag
- Get a club and all its member
- Get the top 200 clubs , players, or a specific brawler in the world or a region
- Get Information about a map, event, brawler!!!
Installation
To install the library run the following command:
pip install brawlpy
To install the development version run the following command:
pip install git+https://github.com/PyStarr/BrawlPy
Example
A Simple Example to get a player by their tag
import brawlpy
import asyncio
client = brawlpy.Client('your_api_key_here') # Enter your api key here
async def main():
player = await client.get_player("JP20RUR2")
print(player)
print(player.name,player.tag, player.trophies)
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
Another simple Example to get a club by its tag
import brawlpy
import asyncio
client = brawlpy.Client('your_api_key_here') # Enter your api key here
async def brawlPy():
club = await client.get_club("PVQ0RP90")
print(club)
print(club.name,club.tag, club.trophies)
print(club.description)
loop = asyncio.get_event_loop()
loop.run_until_complete(brawlPy())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
brawlpy-1.2.5.tar.gz
(10.5 kB
view details)
File details
Details for the file brawlpy-1.2.5.tar.gz.
File metadata
- Download URL: brawlpy-1.2.5.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc88314834d127d26ae46f2d1c894be0e5ae8f1d988029e28841accb45c2d114
|
|
| MD5 |
d0e8bcad35360b3c5837b19c9a6c59b0
|
|
| BLAKE2b-256 |
1c34e8c666e40302b81a006d48f1bd51e2e39736ab1d02242ec94d64e670614c
|