官术网_书友最值得收藏!

How to do it...

Let's try downloading a simple image file with the requests module. Open Python 2:

  1. As usual, import the requests library first:
>>> import requests  
  1. Create an HTTP response object by passing a URL to the get method:
>>> response = requests.get("https://rejahrehim.com/images/me/rejah.png")  
  1. Now send the HTTP request to the server and save it to a file:
>>> with open("me.png",'wb') as file:
...           file.write(response.content)

If it's a large file, the response.content will be a large string and won't be able to save all the data in a single string. Here, we use the iter_content method to load the data in chunks.

  1. Here, we can create an HTTP response object as a stream:
response = requests.get("https://rejahrehim.com/images/me/rejah.png", stream = True)
    
  1. Then, send the request and save the file with the following command:
>>> with open("me.png",'wb') as file:
...        for chunk in response.iter_content(chunk_size=1024):
...        if chunk:
...             file.write(chunk) 

This will work in Python 3. Also, make sure you install the required libraries in the Python 3 environment.

主站蜘蛛池模板: 翁源县| 板桥市| 博兴县| 大埔区| 佛坪县| 临漳县| 富阳市| 昌平区| 科技| 大余县| 汽车| 西昌市| 恩施市| 洮南市| 江华| 孝感市| 乡城县| 宁河县| 象山县| 维西| 丹东市| 旺苍县| 滦南县| 稷山县| 康平县| 鸡东县| 微山县| 文山县| 卢龙县| 淳化县| 穆棱市| 株洲县| 龙游县| 乡宁县| 巴林左旗| 新郑市| 广灵县| 英吉沙县| 馆陶县| 韶关市| 宝山区|