- HTML
- CSS
- JavaScript
- Bootstrap
- 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/nealwaga/Library-System.git- Install all requirements with
cd Library-System
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