Skip to content

Commit

Permalink
😭
Browse files Browse the repository at this point in the history
  • Loading branch information
R3CI committed Dec 17, 2024
1 parent b6cbda6 commit d707475
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DBG = False
VERSION = 2.11
VERSION = 2.12

import sys, os, traceback; sys.dont_write_bytecode = True; os.environ['PYTHONDONTWRITEBYTECODE'] = '1'
import json
Expand Down Expand Up @@ -32,7 +32,23 @@
import zipfile

except:
os.system('pip install -r requirements.txt')
libs = [
'uuid',
'ab5',
'datetime',
'colorama',
'requests',
'tls-client',
'beautifulsoup4',
'typing-extensions',
'typing'
]

for lib in libs:
os.system(f'pip install {lib}')

time.sleep(1)

import requests
import tls_client
from colorama import Back as B, Style as S
Expand Down

0 comments on commit d707475

Please sign in to comment.