├── .DS_Store ├── .gitignore ├── .idea ├── Library-System-Python-PyQt5.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── CLients_report.xlsx ├── DB_Structure.py ├── Orm_test.py ├── README.md ├── __pycache__ ├── icons_rc.cpython-36.pyc └── icons_rc.cpython-38.pyc ├── books_report.xlsx ├── icons.qrc ├── icons ├── .DS_Store ├── Apps-Library-icon.png ├── books.png ├── dashboard.png ├── history.png ├── person.png ├── reports.png ├── settings.png └── today.png ├── icons_rc.py ├── index.py ├── main.ui ├── outlint.txt ├── people.db └── test.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .autogit -------------------------------------------------------------------------------- /.idea/Library-System-Python-PyQt5.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/.idea/Library-System-Python-PyQt5.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /CLients_report.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/CLients_report.xlsx -------------------------------------------------------------------------------- /DB_Structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/DB_Structure.py -------------------------------------------------------------------------------- /Orm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/Orm_test.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PyQt5-Library-Management-System 2 | -------------------------------------------------------------------------------- /__pycache__/icons_rc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/__pycache__/icons_rc.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/icons_rc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/__pycache__/icons_rc.cpython-38.pyc -------------------------------------------------------------------------------- /books_report.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/books_report.xlsx -------------------------------------------------------------------------------- /icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons.qrc -------------------------------------------------------------------------------- /icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons/.DS_Store -------------------------------------------------------------------------------- /icons/Apps-Library-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons/Apps-Library-icon.png -------------------------------------------------------------------------------- /icons/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons/books.png -------------------------------------------------------------------------------- /icons/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons/dashboard.png -------------------------------------------------------------------------------- /icons/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons/history.png -------------------------------------------------------------------------------- /icons/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons/person.png -------------------------------------------------------------------------------- /icons/reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons/reports.png -------------------------------------------------------------------------------- /icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons/settings.png -------------------------------------------------------------------------------- /icons/today.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons/today.png -------------------------------------------------------------------------------- /icons_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/icons_rc.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/index.py -------------------------------------------------------------------------------- /main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/main.ui -------------------------------------------------------------------------------- /outlint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/outlint.txt -------------------------------------------------------------------------------- /people.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/people.db -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pythondeveloper6/Library-System-Python-PyQt5/HEAD/test.py --------------------------------------------------------------------------------