Unofficial Python library that implements the Wargaming.net API and Lesta Games API functionality
Project description
WgLestaAPI
Unofficial Python library that facilitates working with API Wargaming.net and API Lesta Games functionality via Python.
By downloading this library you fully agree with all official documents Lesta Games and Wargaming.net about Lesta Games and Wargaming.net products. The author of the library (Alexander Podstrechny) is not responsible for your actions performed with the help of this program code.
Installing the library
Run the command below at the command line
pip install WgLestaAPI
The main advantages
- The presence of synchronous and asynchronous methods of working with the API;
- The ability to use any available methods of the official API through this single library;
- The ability to run a single
*.py
program in several different regions; - Built-in constants to designate all games and regions for API Wargaming.net and API Lesta Games;
- One App class with all the necessary library methods.
Quickstart
1. Get an application_id
- Choice your API provider: API Wargaming.net or API Lesta Games;
- Log in to the official API provider service;
- Create a new application by clicking on the button Add application or use the existing;
- Copy ID field from webpage;
2. Write a synchron variant of the "Hello world" example
from WgLestaAPI.Application import App
from WgLestaAPI.Constants import REGION, GAMENAMES
import json
wgApp = App("YOUR_APPLICATION_ID", REGION.EU)
resp = wgApp.execute("account.info", GAMENAMES.SHORTNAMES.WOT, account_id=563982544)
print(json.dumps(resp, indent=2))
In the terminal you will see:
{
"status": "ok",
"meta": {
"count": 1
},
"data": {
"563982544": {
"client_language": "",
"last_battle_time": 1569011404,
"account_id": 563982544,
"created_at": 1564320823,
"updated_at": 1715246332,
"private": null,
"global_rating": 1828,
"clan_id": null,
"statistics": {
// ...
},
"nickname": "tankalxat34",
"logout_at": 1597741881
}
}
}
3. Write an async variant of the "Hello world" example
from WgLestaAPI.Application import App
from WgLestaAPI.Constants import REGION, GAMENAMES
import json
import asyncio
wgApp = App("YOUR_APPLICATION_ID", REGION.EU)
async def getMyAccount(myId: int):
return await wgApp.asyncExecute("account.info", GAMENAMES.SHORTNAMES.WOT, account_id=myId)
resp = asyncio.run(getMyAccount(myId=563982544))
print(json.dumps(resp, indent=2))
In the terminal you will see:
{
"status": "ok",
"meta": {
"count": 1
},
"data": {
"563982544": {
"client_language": "",
"last_battle_time": 1569011404,
"account_id": 563982544,
"created_at": 1564320823,
"updated_at": 1715246332,
"private": null,
"global_rating": 1828,
"clan_id": null,
"statistics": {
// ...
},
"nickname": "tankalxat34",
"logout_at": 1597741881
}
}
}
4. Get URL to login, logout and prolongate access_token
actions into your application
You can use the library to generate API links for user authorization in your application. This will allow your application to get an access_token, which can be passed as a parameter inside a request to any available API method
from WgLestaAPI.Application import App
from WgLestaAPI.Constants import REGION, GAMENAMES
wgApp = App("YOUR_APPLICATION_ID", REGION.EU)
print(wgApp.login(redirect_uri="https://example.com/")) # url to your hosted web-application
print(wgApp.logout())
print(wgApp.prolongate())
In the terminal you will see:
https://api.worldoftanks.eu/wot/auth/login/?application_id=YOUR_APPLICATION_ID&redirect_uri=https://example.com/
https://api.worldoftanks.eu/wot/auth/logout/?application_id=YOUR_APPLICATION_ID
https://api.worldoftanks.eu/wot/auth/prolongate/?application_id=YOUR_APPLICATION_ID
Library functionality
The library implements the basic functions of API Lesta Games and API Wargaming.net. All requests are made through your application, which you previously created on Lesta Games or on Wargaming.net. Some features are listed below:
- Getting information about the player, his equipment and medals.
- Obtaining information about the clan.
- Getting information about vehicles.
- And other methods.
Copyright Notice
- 2024 © Alexander Podstrechnyy.
- 2024 © Wargaming.net. All rights reserved.
- 2024 © Lesta Games. All rights reserved.
This program code is not a product of Lesta Games and was developed according to Lesta Games DPP rules.
This program code is not a product of Wargaming.net and is developed according to WG DPP rules.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wglestaapi-1.0.1.tar.gz
.
File metadata
- Download URL: wglestaapi-1.0.1.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Windows/11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ee5b39a5d3640c84559632c5c50d97a69809568ada76655c63b9193367466c0 |
|
MD5 | 41e6441ef0fe7120627baa3a75444875 |
|
BLAKE2b-256 | eb9b75c595cd82e857b4a8e067e48279adebb2f4c8f53d0887fc8fe4c4dcacc2 |
File details
Details for the file wglestaapi-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: wglestaapi-1.0.1-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Windows/11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8084a342f982047ce10de41036d5e1399a7ba21e8958decc50f854f79bf8af0 |
|
MD5 | 888c69c63e90773898e9e21c594e8dbc |
|
BLAKE2b-256 | 1b907f129ec3ab55b8f1df4a00c1bf446dfb27f83fd5fc04f2d2773d88dfb11a |