- Cloud Native Python
- Manish Sethi
- 131字
- 2021-07-02 19:11:58
GET /api/v1/users
The GET/api/v1/users method shows the list of all users.
Let's create an /api/v1/users route by adding the following code snippet to app.py:
@app.route('/api/v1/users', methods=['GET']) def get_users(): return list_users()
Now that we have added the route, we need to define the list_users() function, which will connect with the database to get you the complete list of users. Add the following code to app.py:
def list_users():
conn = sqlite3.connect('mydb.db')
print ("Opened database successfully");
api_list=[]
cursor = conn.execute("SELECT username, full_name,
email, password, id from users")
for row in cursor:
a_dict = {}
a_dict['username'] = row[0]
a_dict['name'] = row[1]
a_dict['email'] = row[2]
a_dict['password'] = row[3]
a_dict['id'] = row[4]
api_list.append(a_dict)
conn.close()
return jsonify({'user_list': api_list})
Now that we have added the route and the handle for it, let's test check the http://localhost:5000/api/v1/users URL as follows:

推薦閱讀
- LaTeX Cookbook
- DevOps with Kubernetes
- What's New in TensorFlow 2.0
- 計算機圖形學編程(使用OpenGL和C++)(第2版)
- 深入理解Django:框架內幕與實現原理
- Learning Bayesian Models with R
- 匯編語言程序設計(第3版)
- C++ 從入門到項目實踐(超值版)
- Microsoft System Center Orchestrator 2012 R2 Essentials
- Bootstrap 4:Responsive Web Design
- Learn React with TypeScript 3
- 程序是怎樣跑起來的(第3版)
- Procedural Content Generation for C++ Game Development
- Spring Boot+MVC實戰指南
- Application Development with Parse using iOS SDK