使用 python for windows 生成 qrcode 生成器
我正在寻找 python 窗口版本的 qrcode 生成器。谁能帮我找出来。
我什么也没得到。
请帮我。
谢谢, 马努
I am looking for qrcode generator for python window version. Can anyone help me to find out.
I didn't get anywhere.
Please help me.
Thanks,
manu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
要么你必须
pip install pyqrencode
)如果您没有 pip,我建议您首先安装 setuptools 然后使用
easy_install
来安装 pip (当然,你可以通过执行easy_install pyqrencode
来走捷径either you have to
pip install pyqrencode
)If you don't have pip, I suggest you start by installing setuptools and then use
easy_install
to install pip (of course, you can cut corners by just doing aneasy_install pyqrencode
尝试使用 pyqrnative,它是现有 Javascript 库的 Python 端口,用于生成 QR 码。
http://code.google.com/p/pyqrnative/
Try
pyqrnative
it's a Python port of an existing Javascript library to generate QR Codes.http://code.google.com/p/pyqrnative/
http://pypi.python.org/pypi/qrcode
http://pypi.python.org/pypi/qrcode
自称黑客的 pyqrcode 似乎既可以解码也可以编码。编码是用 C++ 编写的,解码是用 Java 编写的。 Python 将它们粘合在一起。
The self-proclaimed hackish pyqrcode seems to do both decode and encode. The encode is in C++ and the Decode is in Java. Python glues them together.
pyqrnative 对我来说工作得很好。我希望我能找到一些英文文档。想知道数据内容大小和第一个“typeNumber”参数之间的关系。
pyqrnative is working pretty well for me. I wish I could find some documentation in English for it. Would like to know the relationship between data content size and the first "typeNumber" argument.