Metadata-Version: 2.1
Name: postDB
Version: 0.1.1
Summary: A WIP asynchronous database module for PostgreSQL databases.
Home-page: https://github.com/SylteA/postDB
Author: Sylte
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/SylteA/postDB/issues
Project-URL: Codebase, https://github.com/SylteA/postDB
Platform: UNKNOWN
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
Requires-Dist: asyncpg
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'

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

### Need help?
> Discord Server: **[Join Here](https://discord.gg/38jctKaf9C)**

### 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)**


