gpt4 book ai didi

python - 从 GitHub 存储库获取版本号

转载 作者:行者123 更新时间:2023-12-01 08:29:06 27 4
gpt4 key购买 nike

我无法从 GitHub 帐户存储库中的文本文件获取应用程序的当前版本号。

def version_check(self):
# Fetch version number from GitHub repo

get_version = urlopen('https://raw.githubusercontent.com/myaccount/myproject/master/VERSION')
#get_version.read().decode("utf-8") (No terminal output)
print(get_version.read())
print(get_version.headers['content-type'])

#if get_version.read() == version_number:
# return True
#else:
# return False

我得到这个终端输出:

    b'1.6\n'
text/plain; charset=utf-8

如何格式化输出?我相信它们是字节文字,但我很难找到解决方案。

最佳答案

这是一个“bytes”类型的值。需要调用decode函数将其转为字符串。

myBytesVal = myBytesVal.decode('utf-8')

关于python - 从 GitHub 存储库获取版本号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54012993/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com