I'm using the webapp2 user store and I need to query User accounts. Where is that store located?
webapp2_extras.auth
something like
myusers = Users.query().filter(Users.somefield == somevalue).fetch()
from webapp2_extras.appengine.auth.models import User
myusers = User.query().fetch()
Will fetch all users.