试图将FTP网站的文本读成python中的字符串[关闭]

问题描述 投票:-2回答:1

这是我可以在Chrome中打开并查看文字的网站:

ftp://ftp.cmegroup.com/pub/settle/stlags

知道如何在python中将其读入字符串吗?

python string ftp
1个回答
1
投票

不知道这是否有帮助,但这将获得一个网站的HTML:

import urllib.request
url = "ftp://ftp.cmegroup.com/pub/settle/stlags"
html = urllib.request.urlopen(url)
htmlB=html.read()
htmlS = htmlB.decode()

print(htmlS)
© www.soinside.com 2019 - 2024. All rights reserved.