josemiguel02 /
my-api-rest-flask
This basic project is a Rest API developed with the Python Flask framework.
31/100 healthLoading repository data…
EmilianoPadilla / repository
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.
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.
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.
ecommerce/
│
├── main.py
├── requirements.txt
├── .gitignore
├── .dockerignore
├── .env
├── Dockerfile
├── docker-compose.yml
├── README.md
│
├── tests/
│ ├── __init__.py
│ ├── test_auth.py
│ ├── test_users.py
│ ├── test_orders.py
│ ├── test_orderitems.py
│ ├── test_products.py
│ └── test_categories.py
│
└── src/
│
├── auth/
│ ├── hashing.py
│ ├── jwt_handler.py
│ └── dependencies.py
│
├── database/
│ └── database.py
│
├── models/
│ ├── base.py
│ ├── users.py
│ ├── orders.py
│ ├── orderitems.py
│ ├── products.py
│ └── categories.py
│
├── schemas/
│ ├── users.py
│ ├── orders.py
│ ├── orderitems.py
│ ├── products.py
│ └── categories.py
│
└── routers/
├── users.py
├── orders.py
├── orderitems.py
├── products.py
├── categories.py
└── auth.py
.env file)DATABASE_URL=your_database_url
SECRET_KEY=your_secret_key
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
Set the same environment variables inside the Render Dashboard under:
Dashboard → Your Service → Environment
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 healthgit clone https://github.com/EmilianoPadilla/ecommerce.git
python -m venv venv
source venv/bin/activate
venv\Scripts\activate
pip install -r requirements.txt
uvicorn src.main:app --reload
This API is deployed on Render:
FastAPI Swagger documentation:
POST /login
GET /users
POST /users
GET /users/{user_id}
PUT /users/{user_id}
PATCH /users/{user_id}
DELETE /users/{user_id}
GET /orders
POST /orders
GET /orders/{order_id}
PUT /orders/{order_id}
PATCH /orders/{order_id}
DELETE /orders/{order_id}
GET /orderitems
POST /orderitems
GET /orderitems/{orderitem_id}
PUT /orderitems/{orderitem_id}
PATCH /orderitems/{orderitem_id}
DELETE /orderitems/{orderitem_id}
GET /products
POST /products
GET /products/{product_id}
PUT /products/{product_id}
PATCH /products/{product_id}
DELETE /products/{product_id}
GET /categories
POST /categories
GET /categories/{category_id}
PUT /categories/{category_id}
PATCH /categories/{category_id}
DELETE /categories/{category_id}
POST /users
{
"username": "string",
"email": "string",
"password": "string"
}
This project was built as part of a backend learning roadmap focused on FastAPI, authentication, testing, Docker, and deployment.
SotoMatiasE /
This is my first API Rest without additional frameworks. Just using Python, Django and MySQL.
27/100 healthAngad2005 /
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.
38/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