Files
PBinCLI/pbincli/settings.py

16 lines
371 B
Python
Raw Normal View History

2017-03-02 13:09:52 +03:00
def init():
global server, proxies, useproxy
2017-03-02 14:23:05 +03:00
""" Edit that variables """
server = "http://paste.r4sas.i2p/"
2017-03-02 13:09:52 +03:00
proxies = {'http': 'http://127.0.0.1:4444'}
2017-03-02 14:23:05 +03:00
""" True/False """
useproxy = True
2017-03-02 13:09:52 +03:00
""" There is nothing more to do :D """
"""if you set useproxy to false, we clean proxies variable"""
if useproxy == False:
proxies = {}