NOTE - this project is no longer maintained. If you are a pyroyale user, and wish to take over maintaintainership of this project, please contact me.
Unofficial python client for the official Clash Royale API
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Python 2.7 and 3.4+
If the python package is hosted on Github, you can install directly from Github
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip
with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
)
Then import the package:
import pyroyale
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install
to install the package for all users)
Then import the package:
import pyroyale
Please follow the installation procedure and then run the following:
from __future__ import print_function
import time
import pyroyale
from pyroyale.rest import ApiException
from pprint import pprint
configuration = pyroyale.Configuration()
# Configure API key authorization: JWT
configuration.api_key['authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['authorization'] = 'Bearer'
# Defining host is optional and default to https://api.clashroyale.com/v1
configuration.host = "https://api.clashroyale.com/v1"
# Create an instance of the API class
api_instance = pyroyale.CardsApi(pyroyale.ApiClient(configuration))
try:
# Get list of available cards
api_response = api_instance.get_cards()
pprint(api_response)
except ApiException as e:
print("Exception when calling CardsApi->get_cards: %s\n" % e)
All URIs are relative to https://api.clashroyale.com/v1
Class | Method | HTTP request | Description |
---|---|---|---|
CardsApi | get_cards | GET /cards | Get list of available cards |
ClansApi | get_clan | GET /clans/{clanTag} | Get clan information |
ClansApi | get_clan_members | GET /clans/{clanTag}/members | List clan members |
ClansApi | get_clan_war_log | GET /clans/{clanTag}/warlog | Retrieve clan's clan war log |
ClansApi | get_current_war | GET /clans/{clanTag}/currentwar | Information about clan's current clan war |
ClansApi | search_clans | GET /clans | Search clans |
LocationsApi | get_clan_ranking | GET /locations/{locationId}/rankings/clans | Get clan rankings for a specific location |
LocationsApi | get_clan_wars_ranking | GET /locations/{locationId}/rankings/clanwars | Get clan war rankings for a specific location |
LocationsApi | get_location | GET /locations/{locationId} | Get location information |
LocationsApi | get_locations | GET /locations | List locations |
LocationsApi | get_player_ranking | GET /locations/{locationId}/rankings/players | Get player rankings for a specific location |
PlayersApi | get_player | GET /players/{playerTag} | Get player information |
PlayersApi | get_player_battles | GET /players/{playerTag}/battlelog | Get log of recent battles for a player |
PlayersApi | get_player_upcoming_chests | GET /players/{playerTag}/upcomingchests | Get information about player's upcoming chests |
TournamentsApi | get_global_tournaments | GET /globaltournaments | List global tournaments |
TournamentsApi | get_tournament | GET /tournaments/{tournamentTag} | Get tournament information |
TournamentsApi | search_tournaments | GET /tournaments | Search tournaments |
- Arena
- BattleLogEntry
- BattleLogTeam
- Card
- CardIconUrls
- CardList
- Chest
- ChestList
- Clan
- ClanBase
- ClanMember
- ClanMemberList
- ClanRanked
- ClanRankingList
- ClanSearchResult
- ClanSearchResultClan
- ClanWarRanked
- ClanWarsRankingList
- Error
- GameMode
- Location
- LocationList
- PlayerAchievement
- PlayerBadge
- PlayerBase
- PlayerDetail
- PlayerLeagueStatistics
- PlayerRanked
- PlayerRankingList
- SearchPaging
- SearchPagingCursors
- SeasonStatistics
- Tournament
- TournamentDetail
- TournamentPlayer
- TournamentSearchResult
- War
- WarClan
- WarCurrent
- WarLog
- WarParticipant
- WarStanding
- WarStandingClan
- Type: API key
- API key parameter name: authorization
- Location: HTTP header
- Aaron Traas [email protected]
This project uses SonarQube for static analysis. The results of analysis are at SonarCloud. The code quality and test coverage are a work in progress.