我有一个链接,每次我运行.pst文件时,都会给我一个“另存为”对话框。 我想尝试将文件保存为“ sample.txt”文件而不打开,因为文件大小为500 MB。
有什么办法可以解决这个问题??
import urllib
jsonl = urllib.request.urlopen("test.com/csv?date=2019-07-17")
我已经尝试了上面的代码,但是它给了我
<http.client.HTTPResponse at 0x9ac4k10>
答案 0 :(得分:1)
您需要从urlopen返回的对象中读取数据。
尝试
force_color = 1
答案 1 :(得分:1)
好,因此与网站互动时遇到很多麻烦。我决定只使用网络浏览器库。
import webbrowser
chrome_path="C:xxx\\Google\\Chrome\\Application\\chrome.exe"
webbrowser.register('chrome', None,webbrowser.BackgroundBrowser(chrome_path))
url = 'http://testsite/csv?date=2019-07-18'
将Chrome设置为自动下载文件会在我的下载文件夹中自动填充其他文件:)