Select
Selecting row(s).
1. Selecting All / all()
all()MyModel.db.all()2. Selecting One Row by Id/Primary Key / get()
get()MyModel.db.get(5)3. Selecting All That Match / get_by()
get_by()MyModel.db.get_by(email='[email protected]')Last updated