Skip to main content

A WIP asynchronous database module for PostgreSQL databases.

Project description

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!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

postDB-0.3.0.tar.gz (8.9 kB view hashes)

Uploaded Source

Built Distribution

postDB-0.3.0-py3-none-any.whl (10.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page