amzqr是一个非常方便的文字信息生成二维码的python库,美中不足是原作者代码不支持中文。根据github上提交的pr,记录一下支持中文的修改方法。
1. 修改amzqr.py
#if not isinstance(words, str) or any(i not in supported_chars for i in words):
#不对中文字符进行检测
if not isinstance(words, str):
amzqr是一个非常方便的文字信息生成二维码的python库,美中不足是原作者代码不支持中文。根据github上提交的pr,记录一下支持中文的修改方法。
#if not isinstance(words, str) or any(i not in supported_chars for i in words):
#不对中文字符进行检测
if not isinstance(words, str):