写一段python程序启动2个接口
时间: 2024-01-30 21:02:37 浏览: 112
python Flask 写一个简易的 web 端程序
好的,下面是一个简单的 Python 程序,可以启动两个接口:
```python
from flask import Flask
app = Flask(__name__)
@app.route('/api/v1/hello')
def hello():
return 'Hello World! This is the first API.'
@app.route('/api/v1/greeting')
def greeting():
return 'Greetings! This is the second API.'
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)
```
这段程序使用 Flask 框架创建了两个接口,分别是 `/api/v1/hello` 和 `/api/v1/greeting`。当访问这两个接口时,程序会返回不同的字符串。最后,程序会在本地启动一个 Web 服务器,监听在 `0.0.0.0:5000` 地址上。你可以通过访问 `http://localhost:5000/api/v1/hello` 和 `http://localhost:5000/api/v1/greeting` 来测试这两个接口。
阅读全文