12 lines
244 B
Python
12 lines
244 B
Python
def init():
|
|
global server, proxies, useproxy
|
|
|
|
# Edit that variables
|
|
server = "https://paste.i2pd.xyz/"
|
|
proxies = {'socks5': 'socks5://127.0.0.1:9050'}
|
|
|
|
# True/False
|
|
useproxy = False
|
|
|
|
# There is nothing more to do :D
|