Metadata-Version: 2.1
Name: Flask-RESTful-DBBase
Version: 0.1.5
Summary: A package that extends Flask-RESTful resources to make creating resources for database use easier and faster.
Home-page: https://sidorof.github.io/flask-restful-dbbase/
Author: Donald Smiley
Author-email: dsmiley@sidorof.com
License: MIT
Description: ## Introduction
        
        This package extends Flask-RESTful by implementing datacentric Resources using [DBBase](https://sidorof.github.io/dbbase/) for enabling the use of SQLAlchemy.
        
        DBBase enables the same coding of database models to be used within Flask or without, such as from message queues.
        
        Creating a website can result in a fair amount of boilerplate code as the same characteristics for table models are recreated at each layer. Then, the boilerplate code must be tested as well, resulting in boilerplate testcode.
        
        Using this package, the database models are introspected and applied to the API, resulting in less code over all.
        
        This package should be thought of as a tool rather than a framework. It can coexist with other Flask packages. A framework can get awkward on edge cases as a seemingly straight-forward idea turns out to be very difficult due to trying to fit it into the framework design.
        
        Inherent in the design is an understanding that the simplest cases can be done simply, but that there are additional ways to open up the functionality to accommodate more complex issues.
        
        And, if the issue encountered does not fit this package's approach, the original resource classes can be used with no loss of functionality.
        
Platform: UNKNOWN
Classifier: Framework :: Flask
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
