Duplicate of "how does one get a count of rows in a datastore model in google appengine?"
I'm having big trouble.
I want to know how many users I have... I did:
users = UserStore.all()
user_count=users.count()
quite simple... But now I have more than 1000 users and this method continues to return 1000.
Is there any other way of knowing how many users I have? (obviously, I want a dynamic way of doing so, I don't want to check the Dashboard)
Please help me! I'm very lost and panicked