Aurora is an MVC web framework for creating RESTFUL CRUD applications quickly and simply
Project description
Welcome to Aurora
Aurora is an MVC web framework for creating CRUD applications quickly and simply.
It based on REST architecture. In another word it is a RESTFUL web framework.
Aurora mostly is written in Python, and partially have used Flask.
Installation
You can install Aurora by running:
$ pip install aurora-mvc
Usage
Get Started
To get started with Aurora simply do the following steps:
- Create the root app (project) directory:
$ mkdir my_app
Here my_app is a variable name. Change it to anything of your choice at any time you want.
- Install a python virtual environment in the same path that the project directory exists:
$ python -m venv venv
- Activate the virtual environment:
Linux / Mac:
$ . venv/bin/activate
Windows:
$ venv\scripts\activate
- Navigate to the project directory:
(venv) cd my_app
Notice that the project directory must be empty, otherwise you will get an error on the next step.
- Initialize the root app with Aurora via python shell:
(venv) python
>>> from aurora import init_app
>>> init_app.start()
Congratulations! You successfully initialized the root app. Now you are ready to get started with Aurora.
- To start the root app run the following command:
(venv) python app.py
Next Steps
Documentation: Aurora Docs
Changelog: Aurora Changes
Issues: Aurora Bug Tracker
Source: Aurora GitHub Repo
PyPI: Aurora PyPI Page
Dependencies
Packages:
Database APIs:
- sqlite3 -- If you are using SQLite Database. Included in the standard python library
- psycopg2 -- If you are using Postgres Database.
- mysql.connector -- If you are using MySQL Database.
About The Author
Hello World!
I'm Hemin Satya, a freelance programmer. This is the first open-source project I have ever done. Aurora framework is currently on a beta version, and I'm trying my best to make it something magnificent. I hope you like it.
If you saw any bugs or mistakes, please let me know. I'll do my best to solve them or at least reduce them asap.
Please let me know your precious comments, observations, and suggestions. (GitHub) (Twitter)
Thank you all.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for aurora_mvc-0.8.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f57a924ee9059ffb231686e3d96a35b7225e1abb86a48eb49d183ff8be399c2f |
|
MD5 | 1bc0ce77bc173782b212a2d903a6ba37 |
|
BLAKE2b-256 | 7f098bb075d834ece4a2b97a6581a79dd2eff114181afc33c74eb7147045b4a9 |