Installing

Install latest version from PyPI.

For PostgreSQL aiopg backend:

pip install peewee-async[postgresql]

For PostgreSQL psycopg3 backend:

pip install peewee-async[psycopg]

For MySQL:

pip install peewee-async[mysql]

Installing and developing

Clone source code from GitHub:

git clone https://github.com/05bit/peewee-async.git
cd peewee-async

Install dependencies using pip:

pip install -e .[develop]

Or using poetry:

poetry install -E develop

Running tests

  • Clone source code from GitHub as shown above

  • Run docker environment with PostgreSQL database for testing

docker-compose up -d

Then run tests:

pytest -s -v

Report bugs and discuss

You are welcome to add discussion topics or bug reports to tracker on GitHub!