python 从URL读取,写入文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 从URL读取,写入文件相关的知识,希望对你有一定的参考价值。

"""
Code to write data read from a URL to a file

Based on an answer on SO:
http://stackoverflow.com/questions/22676/how-do-i-download-a-file-over-http-using-python/22721
"""

import urllib2

mp3file = urllib2.urlopen("http://www.example.com/songs/mp3.mp3")
with open('test.mp3', 'wb') as output:
    while True:
        data = mp3file.read(4096)
        if data:
            output.write(data)
        else:
            break

以上是关于python 从URL读取,写入文件的主要内容,如果未能解决你的问题,请参考以下文章

在 Python 中读取/写入 txt 文件

浅析python中cookie写入和读取

在使用 python 写入时从日志文件中读取

Python:如何从压缩的 json .gz 文件中读取并写入 json 文件

Python从数据库读取数据写入json格式文件

通过python中xlrd读取excel表格(xlwt写入excel),xlsxwriter写入excel表格并绘制图形