A Python library dedicated to exemplify and facilitate the start of Flask projects for APIs π«. Download flask-structure and streamline the "start" of your projects with ease π.
Repository with the idea of ββthe Library: Flask-Api-Structure
- UB Task API: Click Here
- Team Poke API: Click Here

- Controllers: Contains controllers that manage the application logic, connecting routes to specific operations.
- Drivers: Stores the drivers and libraries necessary to connect and operate with other services or hardware.
- Errors: Defines specific error types and custom exceptions that can be triggered during code execution.
- Main: The main entry point of the application. Within this folder, "Routes" manages API routes, and "Server" is responsible for starting and managing the web server.
- Models: Contains data models, usually classes representing tables in the database.
- Static: Stores static files such as CSS, JS, images, etc., needed to render front-end web pages.
- Templates: Maintains HTML templates and documentation related to the structure or usage of the API.
- Validators: Includes scripts or modules to validate input data or API requests.
- Views: Defines different types of HTTP responses and views associated with presentation logic.
- Info: Welcomes users and provides relevant information about the API and contacts.
- Docs: A place to learn about the API and how to use it interactively and dynamically.
- Favicon.ico: Icon to be displayed in the website window.
- Flask: Framework used for web application development, providing a flexible and efficient structure for creating APIs and user interfaces.
- Python: Primary programming language chosen for its versatility, simplicity, and large developer community.
- Cerberus: Python data validation library, used to ensure the integrity and consistency of data manipulated by the application.
- Other Libraries: The rest of the libraries can be found in requirements.txt, including various tools and utilities that complement and enhance the application's functionality.
An API (Application Programming Interface) is a set of rules and definitions that allows communication between different software. It enables applications and services to exchange information and functionality efficiently and standardized.
- Service Integration: APIs facilitate integration between different services and platforms, allowing applications to share data and functionality.
- Mobile Application Development: APIs are essential for mobile app development, providing access to resources such as location, camera, notifications, among others.
- Access to External Data: Used to obtain data from external sources, such as social networks, databases, third-party services, providing up-to-date information.
- Integration with Web Platforms: APIs are crucial for integrating web applications, enabling efficient communication between the front-end and back-end.
- Microservices Development: In microservices architectures, APIs are essential for communication between the various distributed components of an application.
- Task Automation: APIs allow the automation of routine tasks, optimizing processes and improving operational efficiency.
- Plugin and Extension Development: Used to create plugins and extensions in various platforms, expanding the functionalities of existing software.
- Resource Economy: Facilitate development by allowing the reuse of already implemented functionalities, saving time and resources.
- Virtual Environment (Optional) For organization and ease of running the project, I suggest creating a virtual environment. To do this, use the following command:
python -m venv .venv
.venv\Scripts\activate
- Download the library:
pip install flask-structure
- Run the command to create the project structure
flask-structure create
- Install dependencies:
pip install -r requirements.txt
- Run the application:
python run.py
- Use the structure your way ;)
- Main Route ("/"): Returns a template that renders Swagger documentation.
(http://127.0.0.1:3000)

- API Information Route ("/info"): Returns a JSON with information about the API.
(http://127.0.0.1:3000/info)
{
"status": True,
"message": "Welcome to the Structure Flask API!",
"version": "1.0v",
"endpoints": {
"docs": "/",
"info": "/info",
},
"documentation": "/",
"contact": {
"email_personal": "[email protected]",
"email_academic": "[email protected]",
"github": "piedro404",
"linkedin": "pedrohenrique404"
}
}
This project is licensed under the MIT License - see the LICENSE file for details.
Thanks to everyone, I wish you great studies. If you want, contact me at [email protected].