logo头像

Always believe youself.

python 生成属于自己网站的二维码

本文于1946天之前发表,文中内容可能已经过时。

安装Python库 qrcode

  • pip install qrcode

  • qrcode 依赖 Image 库 pip install Image

    上代码

    1
    2
    3
    4
    import qrcode
    img = qrcode.make('https://liuhaiyang.github.io/')
    with open('ocean.png', 'wb') as f:
    img.save(f)