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

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:

主站蜘蛛池模板: 巢湖市| 长岛县| 竹山县| 山东省| 大新县| 永平县| 黄骅市| 大余县| 弋阳县| 青神县| 渝中区| 惠来县| 广州市| 隆子县| 新乡县| 潮安县| 长乐市| 利辛县| 甘孜| 临漳县| 西林县| 桐庐县| 新乐市| 岗巴县| 永兴县| 河西区| 彩票| 津市市| 宁武县| 肇源县| 兴仁县| 连云港市| 永靖县| 枞阳县| 威信县| 北安市| 韶关市| 乌海市| 潼南县| 玉田县| 赣州市|