我在 debian 服务器上运行的一个小 python 脚本有一个小问题。
首先它应该做什么:
- 从服务器获取列表 -> 工作
- 转换为真实字符串列表 -> 工作
- 写入文件 -> 什么都不做...
已经尝试在 python 接口 (>>>) 中使用相同的代码,它会以应有的方式编写所有内容。
文件已经创建并获得了 chmod 777 。
即使不是偶然检查,该 scipt 的另一个实例正在运行,它锁定文件但什么都没有......
任何人都知道为什么它在启动时但在界面中不会写入文件?
现在这是脚本本身:
#!/usr/bin/env python
import urllib
import sys
import time
import re
exitNodes = []
readableNodes = []
class BlockTor():
def getListFromWeb(myself):
url = "https://www.dan.me.uk/torlist/"
#url = "file:///E:/test.txt"
try:
for line in urllib.request.urlopen(url):
exitNodes.append(str(line, encoding='utf8'))
for node in exitNodes:
readableNodes.append(re.sub('\\n', '', node))
#print(exitNodes)
#sys.exit()
except:
try:
f = open("/var/log/torblocker.log", "a")
#f = open("E:\\logfile.log", "a")
f.write("[" + time.strftime("%a, %d %b %Y %H:%M") + "] Error while loading new tornodes")
f.close()
except:
print("Can't write log")
pass
sys.exit()
pass
def buildList(myself):
f = open("/etc/apache2/torlist/tor-ip.conf", "w")
#f = open ("E:\\test-ips.conf", "w")
f.write('<RequireAll>\n')
f.write(' Require all granted\n')
for line in readableNodes:
f.write(' Require not ip ' + line + '\n')
f.write('</RequireAll>')
f.close()
try:
f = open("/var/log/torblocker.log", "a")
#f = open("E:\\logfile.log", "a")
f.write("[" + time.strftime("%a, %d %b %Y %H:%M") + "] Sucessfully updated tor blacklist")
f.close()
except:
pass
def torhandler(myself):
BlockTor.getListFromWeb(myself)
BlockTor.buildList(myself)
if __name__ == "__main__":
asdf = BlockTor()
BlockTor.torhandler(asdf)
编辑:
忘了提 - 如果你想测试它要小心:这个服务器每 30 分钟只允许一个请求