├── .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/28971eb5232d2f42de12fb396abacda12b4d3c65/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .autogit -------------------------------------------------------------------------------- /.idea/Library-System-Python-PyQt5.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 32 | 33 | 38 | 39 | 40 | 48 | 49 | 50 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 |