Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Flask REST API API Protection User Resource

Ricardo Sierra
Ricardo Sierra
14,920 Points

How do we check if a User already exists in Flask Restful Api

If we wanted to use this API in a mobile app, how would we check if the user already exists and them sign them in?

1 Answer

I think Kenneth Love handles that in the video. The create_user class method first checks to see if the user exists (based on email or username) before trying to actually add the new user to the database.

But, more or less, you first want to use the information provided by the user to check the database for an existing user object/resource (with whatever you are using, in this case an SQLite database and the Peewee ORM), and only create one if it doesn't exist.