如何用python开发移动App后台?需要掌握哪些技术
2016-08-07 · 百度知道合伙人官方认证企业
用python开发移动App后台需要掌握的技术。
1、服务器技术,主要掌握python的主要服务架构设计:
python+flask实现服务器,servicestest.py代码:
from flask import Flask, jsonify
app = Flask(__name__)
tasks = [
{
'id':1,
'title':u'Buy groceries',
'description':u'Milk, Cheese, Pizza, Fruit, Tylenol',
'done': False
},
{
'id':2,
'title':u'Learn Python',
'description':u'Need to find a good Python tutorial on the web',
'done': False
}
]
@app.route('/todo/api/v1.0/tasks', methods=['GET'])
def get_tasks():
return jsonify({'tasks': tasks})
if __name__ == '__main__':
app.run(debug=True)
2、命令行下:python servicestest.py
之后浏览器:http://127.0.0.1:8000/todo/api/v1.0/tasks就可以看到运行的结果
运行结果: