作者:zcr2016 | 来源:互联网 | 2023-10-16 20:25
说说那个试用版的打包软件,既然是试用版肯定要加个试用期限,但是里面的pb模型并没有放识别率最好的那个,而是放了一个识别率中等的模型,大概90%,反编译了,觉得挺牛,还把通过pyinstaller打包前的Python代码公布出来。试用版!试用版!试用版!看清楚
我的前一个账号:
再说说限制试用时间的问题
我的代码里是这么写的
def get_web_time(host='42.192.80.101:8089'):
try:
conn = http.client.HTTPConnection(host)
conn.request('GET', '/')
res = conn.getresponse()
ts = res.getheader('date')
ltime = time.strptime(ts[5: 25], '%d %b %Y %H:%M:%S')
return list(ltime)
except ConnectionError:
return 'network_error'
def captcha_outer():
web_time = get_web_time()
if web_time == 'network_error':
return Response(json.dumps({'code': 'network error'}, ensure_ascii=False), mimetype='application/json')
year = web_time[0]
month = web_time[1]
day = web_time[2]
if year == 2020:
pass
elif year &#61;&#61; 2021 and month &#61;&#61; 1 and day <&#61; 11:
pass
else:
return Response(json.dumps({&#39;code&#39;: &#39;Probation Expired&#xff0c;此处省略号码数字&#39;}, ensure_ascii&#61;False), mimetype&#61;&#39;application/json&#39;)
请大家看下我写的试用期是到2021年1月11日&#xff0c;还要啥自行车&#xff1f;10多天通过识别率为90%的模型可以爬取很多数据了已经。
本文地址:https://blog.csdn.net/Open_CV_NLP_New/article/details/111876980