4 Commits

Author SHA1 Message Date
7c2e636621 Merge branch 'master' into dev 2024-03-27 21:23:46 +01:00
dffa29705f - 2022-12-15 12:40:15 +01:00
6ee5c227c6 Added notice that this is a dev branch 2022-12-15 12:39:56 +01:00
57d4d1ce5c Working on selenium migration 2022-12-15 12:00:01 +01:00
4 changed files with 13 additions and 1 deletions

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"python.analysis.typeCheckingMode": "basic"
}

View File

@@ -4,6 +4,8 @@
Simple yet helpful bot to check BWT Aqua's card balance Simple yet helpful bot to check BWT Aqua's card balance
> ⚠️ Please note that this branch is made for testing only so it can sometimes work strange or do not work at all.
## Requirements ## Requirements
* Python 3.8+ * Python 3.8+

7
modules/app.py Normal file
View File

@@ -0,0 +1,7 @@
#-*- coding: utf-8 -*-
from pyrogram.client import Client
from functions import jsonLoad
config = jsonLoad("config.json")
app = Client(config["bot_name"], api_id=config["api_id"], api_hash=config["api_hash"], bot_token=config["bot_token"])

View File

@@ -7,4 +7,4 @@ selenium~=4.19.0
tgcrypto==1.2.5 tgcrypto==1.2.5
uvloop==0.19.0 uvloop==0.19.0
--extra-index-url https://git.end-play.xyz/api/packages/profitroll/pypi/simple --extra-index-url https://git.end-play.xyz/api/packages/profitroll/pypi/simple
libbot[speed,pyrogram]==3.0.0 libbot[speed,pyrogram]==3.0.0