File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1212import subprocess
1313import datetime
1414import sys
15+ import requests
1516import os
17+ from requests_toolbelt .adapters .fingerprint import FingerprintAdapter
1618
1719try :
1820 from Crypto .Cipher import AES
1921 from Crypto .Hash import SHA256
20- from Crypto .Util .Padding import pad , unpad
21- from requests_toolbelt .adapters .fingerprint import FingerprintAdapter
22- import requests
22+ from Crypto .Util .Padding import pad , unpad
2323except ModuleNotFoundError :
2424 print ("Exception when importing modules" )
2525 print ("installing necessary modules...." )
2626 os .system ("pip install pycryptodome" )
27- os .system ("pip install requests_toolbelt" )
28- os .system ("pip install requests" )
2927 print ("Modules installed!" )
3028 time .sleep (1.5 )
3129 exit (0 )
3230
33- from requests_toolbelt . adapters . fingerprint import FingerprintAdapter
31+
3432
3533
3634class api :
You can’t perform that action at this time.
0 commit comments