JollyMax Parser
JollyMax Parser is a Python utility for fetching user data from the JollyMax platform, specifically designed for PUBG Mobile users.
The JollyMaxParser
class allows you to retrieve user information by providing a user ID. It handles the process of obtaining an access token and querying user data from the JollyMax API.
aiohttp
: Asynchronous HTTP client/server framework.
from jollymax import JollyMaxParser
# Create a JollyMaxParser instance with a PUBGM ID
async with JollyMaxParser(user_id) as pubg_user:
print(f"ID: {pubg_user.id}, Nick: {pubg_user.nick_name}")
The JollyMax Parser API provides a simple endpoint to retrieve user data based on a user's PUBG Mobile ID.
/get?pubg_id=1230
: Fetches user data for a given PUBG Mobile ID.
FastAPI
: Modern, fast (high-performance) web framework for building APIs with Python.
You can try the JollyMax Parser API with the following URL:
Usage:
https://pubgjollymax-1-o0843426.deta.app/get?pubg_id=5942485795
Response:
{
"id": 5942485795,
"nickName": "hoosnick"
}
This project is licensed under the Apache License 2.0.