A WIP asynchronous database module for PostgreSQL databases.


Keywords
not-a-orm, postgres, postgresql, python
License
MIT
Install
pip install postDB==0.2.3

Documentation

postDB

A WIP asynchronous database module for PostgreSQL databases.

Example Usage:

from postDB import Model, Column, types


class User(Model):
    id = Column(types.Integer(big=True), primary_key=True)
    username = Column(types.String)
    email = Column(types.String, unique=True)


if __name__ == '__main__':
    print(User.create_table_sql())
Find more examples HERE!