implement settings file

This commit is contained in:
r4sas
2017-03-02 13:09:52 +03:00
parent 320d2824dc
commit 6a6427a134
5 changed files with 32 additions and 10 deletions

13
pbincli/settings.py Normal file
View 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 = {}