from metathreads import config
from metathreads import MetaThreads
from metathreads import config
config.PROXY = {"http":"127.0.0.1","https":"127.0.0.1"}
config.TIMEOUT = 10
threads = MetaThreads()
threads.login("username","password")
print(threads.get_user('zuck'))
# request timeout - in seconds
config.TIMEOUT = 5
# Example {"http":"proxy_here","https":"proxy_here"} Accepts python dictionary.
config.PROXY = None