python requests

Posted JourneyT

tags:

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

            #pip3 install requests

            """
            import threading
            import requests
            import uuid

            url_list = [
                ‘https://www3.autoimg.cn/newsdfs/g28/M05/F9/98/120x90_0_autohomecar__ChsEnluQmUmARAhAAAFES6mpmTM281.jpg‘,
                ‘https://www2.autoimg.cn/newsdfs/g28/M09/FC/06/120x90_0_autohomecar__ChcCR1uQlD6AT4P3AAGRMJX7834274.jpg‘,
                ‘https://www2.autoimg.cn/newsdfs/g3/M00/C6/A9/120x90_0_autohomecar__ChsEkVuPsdqAQz3zAAEYvWuAspI061.jpg‘,
            ]

            def task(url):
                """"""

                """
                1. DNS解析,根据域名解析出IP
                2. 创建socket客户端    sk = socket.socket()
                3. 向服务端发起连接请求 sk.connect()
                4. 发送数据(我要图片) sk.send(...)
                5. 接收数据            sk.recv(8096)

                接收到数据后写入文件。
                """
                ret = requests.get(url)
                file_name = str(uuid.uuid4()) + ‘.jpg‘
                with open(file_name, mode=‘wb‘) as f:
                    f.write(ret.content)

            for url in url_list:

                t = threading.Thread(target=task,args=(url,))
                t.start()

 

以上是关于python requests的主要内容,如果未能解决你的问题,请参考以下文章

你如何在 python 中处理 graphql 查询和片段?

[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段

C#-WebForm-★内置对象简介★Request-获取请求对象Response相应请求对象Session全局变量(私有)Cookie全局变量(私有)Application全局公共变量Vi(代码片段

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

推进学说代码片段

常用python日期日志获取内容循环的代码片段