https://github.com/sanjayengineer121/grocery-management
https://github.com/sanjayengineer121/grocery-management
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/sanjayengineer121/grocery-management
- Owner: sanjayengineer121
- License: gpl-3.0
- Created: 2023-12-26T19:13:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-10T05:43:23.000Z (over 2 years ago)
- Last Synced: 2024-01-10T06:52:05.800Z (over 2 years ago)
- Language: CSS
- Size: 2.46 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Grocery management
#----------------------------------------------------------------------------How to Run this code
- Step 1
Click the github link to download code
https://github.com/sanjayengineer121/Grocery-management
if You are using linux then
copy this line
git clone https://github.com/sanjayengineer121/Grocery-management
- step 2
unzip that zip file and go to that pholder

- step 3
run command promt from that pholder or Go to same directry from CMD prompt where program located

- step 4
paste below command in windows cmd
pip install -r requirements.txt
it download allrequired module for run this code
- make sure Python 3
Python 3 already should installed on your system

- ste 5
Type below command
## python inventry.py

- step 6
##Go to projectt url
http://127.0.0.1:5000/
## dashboad ui have
-- total product list
-- total quantity
-- last added product
## add product ui

## product list

- note
this project can add more functionality and rich ui as well
# REST API HTTP Methods and Their Usage
REST APIs enable the development of various web applications, supporting all CRUD (Create, Retrieve, Update, Delete) operations. Adhering to REST guidelines involves using specific HTTP methods for different server calls. The following information helps determine the suitable HTTP method for API actions.
## Table of Contents
- [HTTP GET](#1-http-get)
- [HTTP POST](#2-http-post)
- [HTTP PUT](#3-http-put)
- [HTTP DELETE](#4-http-delete)