A professional and secure SDK to check Garena account binding information
Project description
Garena Bind Info SDK 🚀
gbind-info is a powerful and secure Python library designed to help developers easily retrieve binding information (current email, pending email, and request countdown) for Garena accounts.
Features ✨ Secure Requests: Automatically rotates User-Agents to prevent request blocking and detection. Human-Readable Time: Converts raw countdown seconds into an easy-to-read Day Hour Min Sec format. Session Management: Utilizes requests.Session for faster performance and persistent connections. Developer Friendly: Clean API design that can be integrated into Flask, Django, or standalone scripts in seconds.
installation 🛠️ Install the library via pip: pip install gbind_info
Quick Start 💻 Here is a simple example of how to use the library in your project:
python
from gbind_info import InfoClient
Initialize the client
client = InfoClient()
Provide the Garena Access Token
ACCESS_TOKEN = "YOUR_GARENA_ACCESS_TOKEN"
Fetch binding data
result = client.get_bind_info(ACCESS_TOKEN)
if result["status"] == "success": print(f"Summary: {result['summary']}") print(f"Current Email: {result['data']['current_email']}") print(f"Human Countdown: {result['data']['countdown_human']}") else: print(f"Error: {result['message']}")
API Response Structure 📊 The library returns a structured dictionary for every request:
json
{
"status": "success",
"data": {
"current_email": "user***@gmail.com",
"pending_email": "new***@gmail.com",
"countdown_human": "6 Day 23 Hour 59 Min 50 Sec",
"raw": { "original_api_response_here": "..." }
},
"summary": "Pending email confirmation: new***@gmail.com - Confirms in: 6 Day 23 Hour ..."
}
Technical Workflow
Security & Disclaimer 🛡️
This library is intended for educational and research purposes only. Accessing account information without explicit permission may violate Garena's Terms of Service. The developer is not responsible for any misuse, account bans, or legal issues resulting from the use of this software. Use it responsibly.
License 📄
Distributed under the MIT License. See LICENSE for more information.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gbind_info-1.0.2.tar.gz.
File metadata
- Download URL: gbind_info-1.0.2.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e7024b9b23b18d6972ce216c6cbb200f848e55765d4cbec1ec42b037c9863f4
|
|
| MD5 |
00f321836b5b12fc74fe3ef4aec65128
|
|
| BLAKE2b-256 |
efd5a29023371238ba231e040ae852bc6ece5dd30be2e8b34d17248dc1a19836
|
File details
Details for the file gbind_info-1.0.2-py3-none-any.whl.
File metadata
- Download URL: gbind_info-1.0.2-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31666fa3f2950de6c5296b04229984a97733b2412e581ba4612bb7621d11ecb7
|
|
| MD5 |
69582a2f4b2f676f6b9a8ee19ea89e97
|
|
| BLAKE2b-256 |
25039665ba6289b08e963e644666baf323b270a404520e8c87a5bc4ff0610d3b
|