The version 4.8.0 update introduces several powerful enhancements to improve your bot development experience:
New Account Class: Direct access to account-level operations through the globally accessible Account variable.
Enhanced Resource Management: New accountRes class for managing account-level resources.
Improved Server Stability: Enhanced server maintenance and durability.
Command Aliases: Support for command aliases in the upcoming UI update.
Bot Recovery System: Ability to recover deleted bots within 90 days.
New Account Class
The 4.8.0 update introduces the powerful Account class, giving developers direct access to account-level operations. This class allows for comprehensive management of bots, commands, statistics, and more from a centralized interface.
Accessing the Account Class
The Account class is globally accessible in your bot code through the Account variable, similar to how you access the Bot and User classes:
# The Account variable is directly available in your bot code
result = Account.get_bots_list()
if result["ok"]:
for bot_info in result["result"]:
Bot.sendMessage(f"Bot: {bot_info['name']}")
No initialization is needed as the variable is automatically created with the correct authentication and database connections.
Account Data Management Methods
saveData
Stores data at the account level, accessible across all bots.
Account.saveData(name, data)
Parameters:
name (Required): Name identifier for the data.
data (Required): The data to store (limited to 10MB).
Example:
result = Account.saveData("global_settings", {"theme": "dark", "notifications": True})
Bot.sendMessage(f"Save result: {result['result']}")
bot_name (Optional): Name for the bot (retrieved from Telegram if not provided).
bot_username (Optional): Username for the bot (retrieved from Telegram if not provided).
Example:
result = Account.create_bot("123456789:ABCDEF-ghijklmnopqrstuvwxyz")
if result["ok"]:
Bot.sendMessage(f"Created bot with ID: {result['botid']}")
else:
Bot.sendMessage(f"Error: {result['result']}")
Example Output:
{
"ok": true,
"result": "Bot created successfully",
"botid": "7654321"
}
delete_bot
Deletes a bot (temporarily or permanently).
Account.delete_bot(botid, permanent=False)
Parameters:
botid (Required): ID of the bot to delete.
permanent (Optional): Whether to permanently delete or keep for recovery.
Example:
result = Account.delete_bot("1234567")
Bot.sendMessage(f"Delete result: {result['result']}")
Retrieves a list of deleted bots that can be recovered.
Account.get_deleted_bots()
Example:
bots = Account.get_deleted_bots()
if bots["ok"] and bots["result"]:
for bot_info in bots["result"]:
Bot.sendMessage(f"Bot {bot_info['name']} - Days remaining: {bot_info['days_remaining']}")
result = Account.clone_bot("1234567", "987654321:ABCDEF-ghijklmnopqrstuvwxyz")
if result["ok"]:
Bot.sendMessage(f"Created clone with ID: {result['botid']}")
bots = Account.get_bots_list()
if bots["ok"] and bots["result"]:
for bot_info in bots["result"]:
Bot.sendMessage(f"Bot {bot_info['name']} - Status: {bot_info['status']}")
botid (Required): ID of the bot to get commands for.
Example:
commands = Account.get_command_list("1234567")
if commands["ok"] and commands["result"]:
for cmd in commands["result"]:
Bot.sendMessage(f"Command: {cmd['command']}, Has code: {cmd['has_code']}")
Retrieves a list of blocked users for a specific bot.
Account.getBlockedUsers(botid)
Parameters:
botid (Required): ID of the bot to get blocked users for.
Example:
users = Account.getBlockedUsers("1234567")
if users["ok"] and users["result"]:
for user in users["result"]:
Bot.sendMessage(f"Blocked user: {user['user_id']}, Date: {user['blocked_date']}")
# Returns a file-like object that can be directly passed to Bot.sendDocument()
# For CSV format, the file contains columns: user_id, blocked_date
# For JSON format, the file contains an array of objects with user_id and blocked_date fields
Statistics and Reporting Methods
get_bot_stats
Retrieves comprehensive statistics for a specific bot.
Account.get_bot_stats(botid)
Parameters:
botid (Required): ID of the bot to get statistics for.
# Returns a file-like object that can be directly passed to Bot.sendDocument()
# The file contains a JSON object with the following structure:
# {
# "bot": {
# "botid": "1234567",
# "bot_name": "Support Bot",
# "bot_username": "support_bot",
# "creation_date": "2023-05-01 14:30:22",
# "_export_date": "2023-05-20 10:15:43"
# },
# "commands": [
# {"command": "/start", "code": "Bot.sendMessage('Welcome!')"},
# {"command": "/help", "code": "Bot.sendMessage('Help info')"}
# ],
# "global_data": [
# {"name": "settings", "data": {"language": "en"}}
# ],
# "export_info": {
# "date": "2023-05-20 10:15:43",
# "exporter": "[email protected]",
# "version": "1.0"
# }
# }
import_bot
Imports a bot from an export file.
Account.import_bot(import_data, new_token=None)
Parameters:
import_data (Required): The JSON data from an exported bot.
new_token (Optional): Token for the new bot.
Example:
# Assuming import_data contains valid bot export data
result = Account.import_bot(import_data, "123456789:ABCDEF-ghijklmnopqrstuvwxyz")
if result["ok"]:
Bot.sendMessage(f"Imported bot with ID: {result['botid']}")
Revokes the current API key and generates a new one.
Account.revoke_api()
Example:
result = Account.revoke_api()
if result["ok"]:
Bot.sendMessage(f"New API key: {result['api_key']}")
Example Output:
{
"ok": true,
"result": "API key revoked successfully and new key generated",
"api_key": "abcdef1234567890abcdef1234567890"
}
Enhanced Resource Management
New accountRes Class
The 4.8.0 update introduces a new accountRes class for managing account-level resources, complementing the existing resource management system.
res = libs.Resources.accountRes(name)
Parameters:
name (Required): The name of the resource to manage.
Resource Management Methods
All methods from the BaseRes class are available:
value(): Gets the current value of the resource.
add(value): Adds to the resource value.
cut(value): Subtracts from the resource value.
set(value): Sets the resource to a specific value.
reset(): Resets the resource value to zero.
Example:
# Create an account-level resource
account_points = libs.Resources.accountRes("subscription_points")
# Add points
new_value = account_points.add(100)
Bot.sendMessage(f"Added points. New value: {new_value}")
# Check current value
current = account_points.value()
Bot.sendMessage(f"Current points: {current}")
# Use points
account_points.cut(50)
Bot.sendMessage(f"Used 50 points. Remaining: {account_points.value()}")
Example Output:
# For add():
100.0 # Returns the new value after addition
# For value():
100.0 # Returns the current value
# For cut():
50.0 # Returns the new value after subtraction
# For set():
200.0 # Returns the value that was set
# For reset():
0.0 # Always returns zero
Server Improvements
The 4.8.0 update includes significant server-side improvements:
Enhanced Stability: Improved error handling and recovery mechanisms to prevent service disruptions.
Optimized Performance: Reduced response times and better resource allocation for smoother operation under high load.
Improved Webhook Handling: Faster and more reliable webhook processing for better bot responsiveness.
Advanced Monitoring: Better monitoring systems to detect and address issues before they affect users.
These improvements ensure that your bots remain operational and responsive, even during peak usage times or when handling complex commands.
Command Aliases
The upcoming UI update will introduce support for command aliases, allowing multiple command triggers to execute the same code. This powerful feature will enable:
Multi-language Support: Create different command names for different languages.
Command Variations: Support both full and abbreviated versions of commands.
Intuitive Interactions: Allow users to trigger commands with natural language variations.
The alias system will be fully integrated into the command management system and accessible through both the UI and API.
Bot Recovery System
The new bot recovery system allows users to recover accidentally deleted bots within 90 days, with features including:
Temporary Deletion: Bots are moved to a recovery collection rather than being permanently deleted.
90-Day Recovery Window: Generous timeframe to recover deleted bots.
Statistics Tracking: Monitor how many bots you've deleted and how many can be recovered.
Expiration Management: Clear visibility into when deleted bots will expire.
Example:
# Get list of deleted bots
deleted_bots = Account.get_deleted_bots()
for bot_info in deleted_bots["result"]:
Bot.sendMessage(f"Bot: {bot_info['name']}, Days remaining: {bot_info['days_remaining']}")
# Recover a bot
Account.recover_bot("1234567")
# Get stats about deleted bots
stats = Account.get_deleted_bots_stats()
Bot.sendMessage(f"Total deleted: {stats['result']['total']}, Recoverable: {stats['result']['recoverable']}")