0

我正在尝试使用 Pastebin 为我托管两个文本文件,以允许我的脚本的任何副本通过 Internet 自行更新。我的代码正在运行,但生成的 .py 文件在每行之间添加了一个空行。这是我的脚本...

import os, inspect, urllib2

runningVersion = "1.00.0v"
versionUrl = "http://pastebin.com/raw.php?i=3JqJtUiX"
codeUrl = "http://pastebin.com/raw.php?i=GWqAQ0Xj"
scriptFilePath = (os.path.abspath(inspect.getfile(inspect.currentframe()))).replace("\\", "/")

def checkUpdate(silent=1):
    # silently attempt to update the script file by default, post messages if silent==0
    # never update if "No_Update.txt" exists in the same folder
    if os.path.exists(os.path.dirname(scriptFilePath)+"/No_Update.txt"):
        return
    try:
        versionData = urllib2.urlopen(versionUrl)
    except urllib2.URLError:
        if silent==0:
            print "Connection failed"
        return
    currentVersion = versionData.read()
    if runningVersion!=currentVersion:
        if silent==0:
            print "There has been an update.\nWould you like to download it?"
        try:
            codeData = urllib2.urlopen(codeUrl)
        except urllib2.URLError:
            if silent==0:
                print "Connection failed"
            return
        currentCode = codeData.read()
        with open(scriptFilePath.replace(".py","_UPDATED.py"), mode="w") as scriptFile:
            scriptFile.write(currentCode)
        if silent==0:
            print "Your program has been updated.\nChanges will take effect after you restart"
    elif silent==0:
        print "Your program is up to date"

checkUpdate()

我剥离了 GUI(wxpython)并将脚本设置为更新另一个文件而不是实际运行的文件。“No_Update”位是为了方便工作。

我注意到用记事本打开生成的文件不会显示跳过的行,用写字板打开会造成混乱,用空闲打开会显示跳过的行。基于此,即使“原始”Pastebin 文件似乎没有任何格式,这似乎是一个格式问题。

编辑:我可以删除所有空白行或保持原样没有任何问题,(我已经注意到)但这会大大降低可读性。

4

1 回答 1

1

尝试在您的open():

with open(scriptFilePath.replace(".py","_UPDATED.py"), mode="wb") as scriptFile:

我注意到你在 pastebin 上的文件是 DOS 格式的,所以里面有\r\n。当您调用 时scriptFile.write(),它会转换\r\n\r\r\n,这非常令人困惑。

"b"在 中指定open()将导致脚本文件跳过该翻译并写入文件为 DOS 格式。

或者,您可以确保 pastebin 文件仅包含\n在其中,并mode="w"在您的脚本中使用。

于 2013-09-26T03:46:03.487 回答