implement settings file
This commit is contained in:
13
pbincli/settings.py
Normal file
13
pbincli/settings.py
Normal file
@@ -0,0 +1,13 @@
|
||||
def init():
|
||||
global server, proxies, useproxy
|
||||
|
||||
"""Edit that variables"""
|
||||
server = "https://privatebin.net/"
|
||||
proxies = {'http': 'http://127.0.0.1:4444'}
|
||||
useproxy = False
|
||||
|
||||
""" There is nothing more to do :D """
|
||||
|
||||
"""if you set useproxy to false, we clean proxies variable"""
|
||||
if useproxy == False:
|
||||
proxies = {}
|
||||
Reference in New Issue
Block a user