josemiguel02 /
my-api-rest-flask
This basic project is a Rest API developed with the Python Flask framework.
31/100 healthLoading repository data…
Angad2005 / repository
This is my first project using Flask to build a simple RESTful API. It's a lightweight sandbox for prototyping and testing basic API endpoints and learning the fundamentals of backend development in Python.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A lightweight sandbox project for learning how to build simple RESTful APIs using Flask.
It’s your playground to explore backend development fundamentals in Python 🚀
This project was built as a hands-on learning exercise to understand how APIs work under the hood.
The goal was to create a minimal yet functional backend capable of handling basic HTTP requests and returning JSON responses.
Follow these steps to get your local environment up and running 👇
Make sure you have the following installed:
Clone the repository
git clone https://github.com/your-username/your-repository-name.git
Navigate to the project directory
cd your-repository-name
Create and activate a virtual environment
On macOS/Linux:
python3 -m venv venv
source venv/bin/activate
On Windows:
python -m venv venv
.\venv\Scripts\activate
Install dependencies
pip install -r requirements.txt
💡 To create
requirements.txt, run:
pip freeze > requirements.txtafter installing Flask.
Start the Flask development server:
flask run
The API will be live at 👉 http://127.0.0.1:5000
You can test endpoints using tools like curl or Postman.
/api/helloReturns a simple welcome message.
curl http://127.0.0.1:5000/api/hello
{
"message": "Hello! This is my first Flask API."
}
/api/echoEchoes back the JSON data sent in the request body.
curl -X POST -H "Content-Type: application/json" -d '{"name": "User", "data": "Some sample data"}' http://127.0.0.1:5000/api/echo
{
"received_data": {
"name": "User",
"data": "Some sample data"
},
"status": "success"
}
Distributed under the MIT License.
See the LICENSE file for more information.
Selected from shared topics, language and repository description—not editorial ratings.
josemiguel02 /
This basic project is a Rest API developed with the Python Flask framework.
31/100 healthKimbohlovette /
Coffe Shop is new digitally enabled coffee shop where students can order drinks, socialize, and study. This application is a full stack flask/Angular/Ionic web application that demonstrates my understanding of writing flask api's, consumming the api's in the frontend. It also demonstrates strong understanding of JWT, Authentication and Access Control and the use of third party authentication (Auth0) and how to set up User Authorization using Auth0.
32/100 healthSotoMatiasE /
This is my first API Rest without additional frameworks. Just using Python, Django and MySQL.
27/100 healthEmilianoPadilla /
This is my backend API project for an e-commerce system built with FastAPI and PostgreSQL. It supports user authentication, product management, categories, and order processing, while storing information within a PostgreSQL database.
53/100 healthcrisgrim /
This is a repository with my first API with Python and Django Rest Framework.
27/100 healthlautaroscara /
This is my first simple API RESTful with Python and Flask framework.
27/100 health