Metadata-Version: 2.1
Name: postDB
Version: 0.3.0
Summary: A WIP asynchronous database module for PostgreSQL databases.
Home-page: https://github.com/SylteA/postDB
Author: Sylte
Project-URL: Bug Tracker, https://github.com/SylteA/postDB/issues
Project-URL: Codebase, https://github.com/SylteA/postDB
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# postDB
<img src="postDB.png" alt="" width="175px" align="right">
A WIP asynchronous database module for PostgreSQL databases.

### Example Usage:
```python
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!](./examples)**
