PrivateBin CLI on python 3
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
346 B

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 = {}