Metadata-Version: 1.2
Name: Bast
Version: 0.0.1.0.3
Summary: Simple yet Elegant Web Framework with MVC Patterns
Home-page: https://github.com/moluwole/Bast
Author: Majiyagbe Oluwole
Author-email: oluwole564@gmail.com
Maintainer: Majiyagbe Oluwole | Azeez Abiodun Solomon
License: MIT
Description: BAST Framework
        ==============
        .. image:: https://raw.githubusercontent.com/MOluwole/Bast/master/bast/image/bast.png
            :width: 10px
            :height: 10px
        
        A lightweight but easy to use framework
        
            A Simple but Elegant MVC Framework
        
        
        Sample Code
        ~~~~~~~~~~~~
        .. code:: python
        
            from bast import Route
            from example.controller.test_controller import Mine
        
            route = Route()
            route.get(url='/', controller_name=Mine, method_name='index')
            route.get(url='/error', controller_name=Mine, method_name='error')
        
        
        .. code:: python
        
            from route.link import route
            from bast import Bast
        
            if __name__ == '__main__':
                app = Bast(route)
                app.run(debug=True)
        
        Contributors
        ~~~~~~~~~~~~~~~~~~
        .. code:: bash
        
            $ Majiyagbe Oluwole
            $ Azeez Abiodun Solomon
        
        License
        ~~~~~~~~~
        This Framework is Licensed under MIT License
        
        Credit
        ~~~~~~~
        `Tornado Web Framework <https://tornadoweb.org>`
        
        `Jinja Templating <https://jinja.pocoo.org/docs/2.10>`
        
        `Orator Eloquent ORM <https://orator-orm.com>`
        
        `StackOverflow <https://stackoverflow.com>`
Keywords: web framework tornado ORM MVC
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
