├── .gitignore ├── LICENSE ├── README.md ├── backend.py ├── bookstore.db ├── dist ├── bookstore-manager.exe └── bookstore.db └── frontend.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Bookstore-Manager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Bookstore-Manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Bookstore-Manager/HEAD/README.md -------------------------------------------------------------------------------- /backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Bookstore-Manager/HEAD/backend.py -------------------------------------------------------------------------------- /bookstore.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Bookstore-Manager/HEAD/bookstore.db -------------------------------------------------------------------------------- /dist/bookstore-manager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Bookstore-Manager/HEAD/dist/bookstore-manager.exe -------------------------------------------------------------------------------- /dist/bookstore.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Bookstore-Manager/HEAD/dist/bookstore.db -------------------------------------------------------------------------------- /frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msindev/Bookstore-Manager/HEAD/frontend.py --------------------------------------------------------------------------------