- HTML
- CSS
- JavaScript
- Bootstarp
- Flask(python framework)
- SQLAlchemy(postgreSQL)
- Flask forms
- ChartJS
- Create, Upadate , Read and Delete Books and Members
- Import books from Frappe API
- Issue a book to a member
- Return a book from a member
- Manage Transactions
- Search book or author
- See reports of top 10 popular books and most paying customers
- Run the command to cole the repository
git clone https://github.com/sumaiya119/flask-library-mangement.git
- Install all requirements with
cd flask-library-management
pip install -r requirements.txt
- Set your secret key in /library/__init__.py file
- for creating a local DB
python
>>from library import db
>>db.create_all()
- run commad to start the server
flask run