1

我在 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 分钟只允许一个请求

4

2 回答 2

9

要连接字符串,请使用+运算符。&按位与- 用两个字符串调用它会导致TypeError

>>> "[" & ""
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for &: 'str' and 'str'

你的毯子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") & "] Sucessfully updated tor blacklist")
    f.close() # ^                                     ^
except:
    pass

with open("/var/log/torblocker.log", "a") as torf:
    torf.write("[" + time.strftime("%a, %d %b %Y %H:%M") + "] " +
               "Sucessfully updated tor blacklist")

如果您想在无法写入文件时忽略异常,请用try .. except IOError:.

于 2013-02-12T18:26:11.467 回答
2
f.write("[" & time.strftime("%a, %d %b %Y %H:%M") & "] Error while loading new tornodes")

是一个TypeError。要连接字符串,请使用+,而不是&。在这里,您可以TypeError在裸露的except陈述中找到。这说明了为什么单纯except的陈述通常不是一个好主意。一般来说,只处理您期望的错误并知道如何正确处理。

您还可以使用字符串格式:

f.write('[{0}] Error while loading new tornodes'.format(time.strftime("%a, %d %b %Y %H:%M")))
于 2013-02-12T18:25:41.003 回答