基本上,我有一个带有 for/try 循环的脚本,我希望它在每次完成循环的一部分时记录并显示一个时间。例如“在美国东部标准时间上午 10:40:30使用代理粘贴”。
这是代码。它将粘贴发送到不受欢迎的粘贴网站。
#!/usr/bin/env python
import random
import requests
import string
import time
def create_paste(proxy):
title = 'title of the paste'
paste = 'content of the paste'
requests.post('http://urlToPasteWebsite.co', timeout=25, data={'pastebox': paste, 'private': 0,
'syntax': 'text', 'title': title,
'paste': 'Paste'},
proxies={'http': proxy})
if __name__ == '__main__':
amount = int(raw_input('How many paste(s) do you wish to make?: '))
proxies = [proxy.strip() for proxy in open('proxies.txt', 'r')]
random.shuffle(proxies)
for _ in range(amount):
proxy = random.choice(proxies)
try:
create_paste(proxy)
print('Pasted with %s.' % proxy)
except:
print('Something went wrong with %s.' % proxy)