码迷,mamicode.com
首页 > 其他好文 > 详细

requests模块使用

时间:2020-07-28 10:18:26      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:==   pre   response   coding   python   utf-8   int   code   __name__   

#!/usr/bin/python
import requests

if __name__ == "__main__":
    url = ‘https://sogou.com‘
    response = requests.get(url=url)
    page_text = response.text
    print(page_text)
    with open(‘./sogou.html‘,‘w‘,encoding=‘utf-8‘) as fp:
        fp.write(page_text)
    print(‘爬取数据结束‘)

requests模块使用

标签:==   pre   response   coding   python   utf-8   int   code   __name__   

原文地址:https://www.cnblogs.com/gerenboke/p/13388973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!