Metadata-Version: 2.1
Name: aurora-mvc
Version: 0.8.11
Summary: Aurora is an MVC web framework for creating RESTFUL CRUD applications quickly and simply
Home-page: https://github.com/heminsatya/aurora
Author: Hemin Satya
Author-email: heminsatya@gmail.com
License: MIT
Project-URL: source, https://github.com/heminsatya/aurora
Project-URL: Documentation, https://github.com/heminsatya/aurora/tree/main/docs
Project-URL: Changelog, https://github.com/heminsatya/aurora/tree/main/changes
Project-URL: Issues, https://github.com/heminsatya/aurora/issues
Keywords: aurora,mvc,web,framework
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# 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](https://www.python.org/), and partially have used [Flask](https://flask.palletsprojects.com/).


# Installation

You can install Aurora by running:

```
$ pip install aurora-mvc
```


# Usage

## Get Started

To get started with Aurora simply do the following steps:

1. 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.

2. Install a python virtual environment in the same path that the project directory exists:

```
$ python -m venv venv
```

3. Activate the virtual environment:

**Linux / Mac:**

```
$ . venv/bin/activate
```

**Windows:**

```
$ venv\scripts\activate
```

4. 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.

5. 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.

6. To start the root app run the following command:

```
(venv) python app.py
```


## Next Steps

Documentation: [Aurora Docs](https://github.com/heminsatya/aurora/tree/main/docs)

Changelog: [Aurora Changes](https://github.com/heminsatya/aurora/tree/main/changes)

Issues: [Aurora Bug Tracker](https://github.com/heminsatya/aurora/issues)

Source: [Aurora GitHub Repo](https://github.com/heminsatya/aurora)

PyPI: [Aurora PyPI Page](https://pypi.org/project/aurora-mvc/)


# Dependencies

## Packages:
 
- [Flask](https://pypi.org/project/Flask/)
- [WTForms](https://pypi.org/project/WTForms/) -- For WTForms & CSRF tokens.

## Database APIs:
- [sqlite3](https://docs.python.org/3/library/sqlite3.html) -- If you are using SQLite Database. *Included in the standard python library*
- [psycopg2](https://pypi.org/project/psycopg2/) -- If you are using Postgres Database.
- [mysql.connector](https://pypi.org/project/mysql-connector-python/) -- 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](https://github.com/heminsatya))
([Twitter](https://twitter.com/heminsatya))

Thank you all.
