Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.2 KB

File metadata and controls

40 lines (28 loc) · 1.2 KB

Flask Project

Overview

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.

Features

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

Installation

To get started with this Flask project, follow these steps:

  1. Clone the repository:

    git clone https://github.com/AndryAlexis/PythonFlesk.git
  2. Create a virtual environment:

    python3 -m venv venv
    source venv/bin/activate  # On Windows use `venv\Scripts\activate`
  3. Install the dependencies:

    pip install -r requirements.txt

Running the Application

To run the application, use the following command:

python run.py