This project is a web application built using the Flask framework. Flask is a lightweight WSGI web application framework in Python. It is designed with simplicity and flexibility in mind, making it a popular choice for developers looking to create web applications quickly and efficiently.
- Lightweight and Modular: Flask allows you to create a web application with minimal setup.
- Built-in Development Server: Flask comes with a built-in server for development and testing.
- Jinja2 Templating: Use Jinja2 for rendering dynamic HTML pages.
- RESTful Request Dispatching: Easily create RESTful APIs with Flask's routing capabilities.
To get started with this Flask project, follow these steps:
-
Clone the repository:
git clone https://github.com/AndryAlexis/PythonFlesk.git
-
Create a virtual environment:
python3 -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the dependencies:
pip install -r requirements.txt
To run the application, use the following command:
python run.py