美文网首页python
python3.7 使用request模块

python3.7 使用request模块

作者: 迷糊银儿 | 来源:发表于2019-11-18 18:52 被阅读0次

    题外话讲下 2.7如何升级到3.7

    1. 因为mac本地已经安装了 2.7所以直接用命令,即可升级成功
    brew install python3
    

    2.如果本地没有安装homebrew,则需另一种方法升级(网上很多教程)

    使用requests模块

    1.安装requests模块
    安装python3成功后即可直接使用pip3命令

    pip3 install requests
    

    另一种安装方式,在pycharm中



    image.png

    2.引入requests(该模块安装失败的话回标红)

    import requests
    

    3.使用requests模块

    import requests
    
    url='http://www.baidu.com'
    data=requests.get(url)
    print (data)
    print (data.text)
    code=data.encoding
    print (code)
    page_status=data.status_code
    print(page_status)
    
    运行结果

    解释器路径

    1. mac python安装默认路径为:/Library/Frameworks/Python.framework/Versions/3.7/bin
      2.可在~/.bash_profile中设定解释器路径
    alias python="/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7"
    

    修改完后记得 source ~/.bash_profile

    1. pycharm设置解释器路径
    • 点击file--preferences for new projects-- image.png
      image.png image.png

    相关文章

      网友评论

        本文标题:python3.7 使用request模块

        本文链接:https://www.haomeiwen.com/subject/eswbictx.html