连框架都算不上,就一个简单的目录结构,编程语言使用的是 python, 服务器用了 tornado, api 返回格式是 json
Github 地址: https://github.com/xiaojieluo/api_template
求 star...
git clone https://github.com/xiaojieluo/api_template.git
pip install -r requirements.txt
python main.py
默认端口是 8888 浏览器直接打开 localhost:8888/
1
tigerstudent 2017-03-24 09:02:55 +08:00
我的天
|
4
Kilerd 2017-03-24 09:57:21 +08:00
不明其所述
|
5
mkstring 2017-03-24 10:42:09 +08:00
好厉害哦!
|
6
KIDJourney 2017-03-24 10:49:15 +08:00
#!/usr/bin/env python
# coding=utf-8 from api.handler.APIHandler import APIHandler class index(APIHandler): def get(self, username): data = { "name":username } self.write_json(data) 你在逗我?这算什么模板。 |
7
xiaojieluo OP @renyijiu 写快了漏掉了...
|
8
xiaojieluo OP @KIDJourney 这只是组织了一下目录结构啊,小玩意
|