发布一个webservice接口,调用接口的时间信息
时间: 2023-07-20 18:31:40 浏览: 110
Web Service 接口的发布与调用
好的,以下是一个简单的webservice接口,可以返回当前时间信息:
```python
from flask import Flask
from datetime import datetime
app = Flask(__name__)
@app.route('/time')
def get_time():
now = datetime.now()
current_time = now.strftime("%H:%M:%S")
return {"time": current_time}
if __name__ == '__main__':
app.run()
```
调用接口的地址为:`http://localhost:5000/time`,返回的时间信息格式为:
```json
{
"time": "15:30:00"
}
```
你可以通过调用该接口获取当前的时间信息。
阅读全文