Top "Peewee" questions

peewee is a small ORM written in Python, providing a lightweight querying interface over SQL.

Peewee model to JSON

I'm creating an API using peewee as the ORM and I need the ability to convert a peewee model object …

python json peewee
Accessing remote MySQL database with peewee

I'm trying to connect to a MySQL database on Amazon's RDS using peewee and I can't get it to work. …

python amazon-rds peewee
Python Peewee execute_sql() example

I am using the Peewee module as the ORM for my project. I read the entire documentation, there is no …

python sql database peewee
Python and Postgresql: OperationalError: fe_sendauth: no password supplied

I know there are a lot of similar questions on StackOverflow, but I have read and re-read them, and I …

python postgresql peewee
Insert or update a peewee record in python

Is there a simple one-line way using peewee in Python of either inserting a record if the primary key does …

python peewee
Why is peewee including the 'id' column into the mysql select query?

I am trying to learn how to use peewee with mysql. I have an existing database on a mysql server …

python mysql select create-table peewee
check if query exists using peewee

I am using the Peewee library in Python and I want to check if a query exists. I do not …

python peewee
How to get columns/fields with peewee query?

For a model class User(db.Model, BaseUser): name = CharField() phone = CharField() age = IntegerField() points = IntegerField() and a list of …

python orm peewee
Peewee syntax for selecting on null field

I have researched this everywhere and can't seem to find an answer. I hope I haven't duplicated this (as it's …

python mysql null isnull peewee
Reconnecting MySQL on timeout

I have a Python program which runs on background for weeks, and does database queries every once in a while. …

python mysql orm mysql-python peewee