Metadata-Version: 2.1
Name: gwx-core
Version: 0.0.6
Summary: Core libraries and modules for flask projects.
Home-page: https://bitbucket.org/groworxdigitalengineering/gwx-core/src/master/
Author: Jerric Calosor
Author-email: jerric.calosor@groworx.com.au
License: UNKNOWN
Description: ## GWX Core
        
        Is a collection of reusable tools and libraries that can be used within your flask projects.
        
        ---
        
        ### Dependencies
        - Python 3.7^
        - Flask Restplus 0.13^
        
        
        ### Installation
        Install the package using pip, by executing:
        ```python
        pip install -U gwx-core
        ```
        
        ### Quick start
        
        
        Import the **Response Module**, this will handle the formatting of your responses for your `flask_restplus` routes. 
        ```python
        from gwx_core.utils import response
        
        class User(Resource):
            def get(self):
                return response.success('Success', {'key': 'value'}, {'SAMPLE-HEADER': 'header value'})
        ```
        
        ### Usage Documentation
        To be added on beta release.
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
