
Python
文章平均质量分 94
zhang8907xiaoyue
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python之接口开发
#注册接口import flaskfrom flask import request #想获取到请求参数的话,就得用这个server = flask.Flask(__name__) #把这个python文件当做一个web服务def md5_passwd(str,salt='123456'): #satl是盐值,默认是123456 str=str+salt impo...转载 2018-08-10 07:39:21 · 517 阅读 · 0 评论 -
python 图灵机器人测试
# -*- coding: utf8 -*- import osimport jsonimport urllib2 class Chat(object): key = "申请的key" # turing123网站 apiurl = "http://www.tuling123.com/openapi/api?" def ...转载 2018-08-10 07:40:18 · 500 阅读 · 0 评论 -
JAVA上传文件至PYTHON后台
一、JAVA/** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub try { String result=ocr(); System.out.pri...原创 2018-08-11 17:32:03 · 2235 阅读 · 0 评论 -
Python上传附件 flask.request.files()
The following are 50 code examples for showing how to use flask.request.files(). They are extracted from open source Python projects. You can vote up the examples you like or vote down the exmaples yo...转载 2018-08-11 17:34:32 · 32099 阅读 · 1 评论