import requests
import json
import pymysql
code = input("请输入id:")
#print(code)
code1 = (repr(code))
#print(code1)
#通过调接口生成加密后code
url = "http://XXX/generateId"
params = {
"List": code
}
headers = {'content-type': "application/json", "Label": "S"}
r = requests.post(url, data=json.dumps(params), headers=headers)
#print(r.text)
#获取上个步骤的加密code
connection = pymysql.connect(host="base", user="A", password="V", db="C", port=3306, charset='utf8')
cur = connection.cursor()
sql = "select crypt from C t where t.code = %s" %(code1)
#print(sql)
try:
cur.execute(sql)
result = cur.fetchall()
except:
print('Error:unable to fetch data')
#print(result)
cryptcode = result[0]
#print(cryptcode)
results = "https://XXX&Id=%s"%(code)+"&Idcrypt=%s"%(cryptcode)
print("ID二维码生成链接:%s \n"%(results))
connection.close()
input('press enter to exit!')
python脚本 ——二维码链接获取
wshlp1234562024-02-04 14:12
相关推荐
二川bro5 小时前
量子计算入门:Python量子编程基础夏天的味道٥6 小时前
@JsonIgnore对Date类型不生效tsumikistep6 小时前
【前后端】接口文档与导入小白学大数据6 小时前
Python爬虫伪装策略:如何模拟浏览器正常访问JSP站点SEO_juper7 小时前
别再纠结LLMs.txt了!它背后的真相与最佳使用场景,一文讲透。g***B7387 小时前
JavaScript在Node.js中的模块系统烤麻辣烫8 小时前
黑马程序员大事件后端概览(表现效果升级版)思密吗喽8 小时前
宠物商城系统csbysj20208 小时前
Lua 函数头发还在的女程序员8 小时前
三天搞定招聘系统!附完整源码