Python how to generate qrcode

纵饮孤独 提交于 2019-12-19 12:20:43

问题


I'd like to generate a qr-code which will contain all informations concerning a user with django.

can you help me please....even with a link or a code...or with a github project ;)

thanks


回答1:


Have a look at qrcode library. It should be able to do everything you need.

Here's a code snippet to get started:

import qrcode

qr_image = qrcode.make('cullzie')
qr_image.save('user_data_qr.png')


来源:https://stackoverflow.com/questions/55269996/python-how-to-generate-qrcode

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!