Aurora is an MVC structured web framework for creating RESTFUL CRUD applications quickly and simply ... ( Read More )

Perquisites

Aurora is written in Python, hence make sure Python is installed on your machine.

$ python3 --version

( Read More )

Installation

You can install Aurora framework using the following command:

$ python3 -m pip install aurora-mvc

( Read More )

Usage

There are a few steps to get started with Aurora.
First, create the project (root app) directory:

$ [sudo] mkdir my_app

( Read More )


Why Aurora?

Aurora is a RESTFUL web framework written in python.

Aurora uses MVC architecture and is written in OOP paradigm, and has a native support for famous SQL databases.

With Aurora you can create well structured and maintainable CRUD web apps easily and quickly.

( Read More )

open-source

Aurora framework is free and open-source with MIT Licence. Use it with confidence for any personal or commercial purpose you want.

The MIT License is a permissive free software license originating at the Massachusetts Institute of Technology in the late 1980s.

( Read More )

MVC

MVC is a software design pattern, which separates an application into three components: Model, View and Controller. It also describes the interactions between them.

Each component can be divided into smaller counterparts. In this case, they may be referred as Models, Views and Controllers.

( Read More )

REST

Representational state transfer (REST) is a software architectural style, created to guide the design and development of the architecture for the World Wide Web.

Aurora uses RESTFUL CRUD Methods for handling user requests.

( Read More )