Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codewithmike01/mini-ecommerce-back-end-junior
https://github.com/codewithmike01/mini-ecommerce-back-end-junior
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/codewithmike01/mini-ecommerce-back-end-junior
- Owner: codewithmike01
- Created: 2022-10-23T11:54:02.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-12T21:51:29.000Z (almost 2 years ago)
- Last Synced: 2024-10-04T05:41:46.793Z (about 1 month ago)
- Language: Python
- Homepage: mini-ecommerce-back-end.vercel.app
- Size: 49.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mini E-commerce Flask API
This is a mini ecommerce website, to perform CRUD operations on products. The Flask app that will be used for this project consists of a simple API with three endpoints:
- `GET '/products'`: This gets all products.
- `POST '/products'`: This post a new product .
- `DELETE '/products'`: This sends an array with ids of products to be deleted## Front-end repo
```bash
git clone https://github.com/Ginohmk/Sandiweb-Accessment-Front-end-junior.git
```## Prerequisites
- Python version between 3.7 and 3.9. Check the current version using:
```bash
# Mac/Linux/Windows
python --version
```You can download a specific release version from here.
- Python package manager - PIP 19.x or higher. PIP is already installed in Python 3 >=3.4 downloaded from python.org . However, you can upgrade to a specific version, say 20.2.3, using the command:
```bash
# Mac/Linux/Windows Check the current version
pip --version
# Mac/Linux
pip install --upgrade pip==20.2.3
# Windows
python -m pip install --upgrade pip==20.2.3
```- Terminal
- Mac/Linux users can use the default terminal.```bash
pip install -r requirements.txt
```## Initial setup
1. Locally clone your forked version to begin working on the project.
```bash
git clone https://github.com/Ginohmk/Sandiweb-Accessment-Back-end-junior.git
cd Sandiweb-Accessment-Back-end-junior/
```1. These are the files relevant for the current project:
```bash
.
├── src
├── database
├── models.py
├── migration
├── app.py
├── test_app.py
├── README.md
├── requirements.txt```
## End Ponits
- `POST '/products'`
- Request
```json
{
"sku": "hmmm656",
"name": "shelom Homes",
"measure": 60,
"price": 800,
"category_id": 3
}
```- Response
```json
{
"product_length": 3,
"products": [
{
"category_id": 3,
"id": 11,
"measure": "60",
"name": "shelom Homes",
"sku": "MKMKMK2"
},
{
"category_id": 3,
"id": 13,
"measure": "60",
"name": "shelom Homes",
"sku": "hjh"
},
{
"category_id": 3,
"id": 14,
"measure": "60",
"name": "shelom Homes",
"sku": "hmmm656"
}
],
"success": true
}
```- `DELETE '/products'` : Passing the ids to be delted in a list
- Request
```json
{
"list": [11, 13]
}
```- Response
```json
{
"product": [
{
"category_id": 3,
"id": 14,
"measure": "60",
"name": "shelom Homes",
"sku": "hmmm656"
}
],
"product_length": 1,
"success": true
}
```