TAG=1
def main():
global TAG
try:
Proxy(('',6001)).serve_forever()#代理服务器监听的地址
TAG=0
except Exception as e :
TAG=1
print e
traceback.print_exc()
if __name__ == '__main__':
while True:
if TAG:
main()
time.sleep(0.5)
TAG=1
def main():
global TAG
try:
Proxy(('',6001)).serve_forever()#代理服务器监听的地址
TAG=0
except Exception as e :
TAG=1
print e
traceback.print_exc()
if __name__ == '__main__':
while True:
if TAG:
main()
time.sleep(0.5)
转载于:https://my.oschina.net/u/2367514/blog/668486