zoukankan      html  css  js  c++  java
  • python保存图片

    #coding=utf-8
    
    import requests
    
    url ="https://images.pexels.com/photos/1181767/pexels-photo-1181767.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
    
    headers = {
        "user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36",
        "referer":"https://www.pexels.com/zh-cn/photo/4k-1484728/"
    }
    
    response = requests.get(url,headers=headers)
    print(response.status_code)
    
    with open("a.jpg","wb") as f:
        f.write(response.content)
        f.close()

    ython2随机写入二进制文件:

    with open('/python2/random.bin','w') as f:
    f.write(os.urandom(10))
    但使用Python3会报错:

    TypeError:must be str, not bytes
    原因为:Python3给open函数添加了名为encoding的新参数,而这个新参数的默认值却是‘utf-8’。这样在文件句柄上进行read和write操作时,系统就要求开发者必须传入包含Unicode字符的实例,而不接受包含二进制数据的bytes实例。

    解决方法:

    使用二进制写入模式(‘wb’)来开启待操作文件,而不能像原来那样,采用字符写入模式(‘w’)。

    同时适配Python3和Python2的方法:

    with open('python3/rndom.bin','wb') as f:
    f.write(os.urandom(10))
    文件读取数据的时候也有类似的问题。解决这种问题的办法也相似:用'rb'模式(二进制模式)打开文件,而不要使用'r'模式。

  • 相关阅读:
    Bye sent_keys
    快速获取Jenkins上build
    快速搞定selenium grid分布式
    python 图形界面开发
    [分享] 自动化测试与持续集成方案-- UI 检查
    hua ge ju hao
    暴力 C++
    简单排序(java)
    记codeforces两题
    hdu 1874, dijkstra
  • 原文地址:https://www.cnblogs.com/php-linux/p/12434030.html
Copyright © 2011-2022 走看看