Metadata-Version: 2.1
Name: postDB
Version: 0.0.4a0
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
Description: # 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)**
        
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
Provides-Extra: dev
