官术网_书友最值得收藏!

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:

主站蜘蛛池模板: 米林县| 蓬安县| 环江| 田东县| 舒兰市| 汨罗市| 石楼县| 陇西县| 芜湖市| 加查县| 沂源县| 香河县| 莱州市| 阳信县| 观塘区| 建德市| 司法| 朝阳区| 德昌县| 姚安县| 犍为县| 上林县| 通道| 中西区| 旺苍县| 科技| 清丰县| 中宁县| 秦皇岛市| 丘北县| 嘉祥县| 榕江县| 怀安县| 扎鲁特旗| 阜阳市| 大石桥市| 克拉玛依市| 凤凰县| 略阳县| 收藏| 彭山县|