├── .gitignore ├── LICENSE ├── README.md ├── calculator ├── ScreenShot │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── dist │ └── main.exe └── src │ ├── main.py │ └── view.py ├── file_encryption ├── Python作业-8.docx ├── dist │ └── main.exe └── src │ ├── core.py │ ├── main.py │ ├── requirements.txt │ └── view.py └── student ├── ScreenShot ├── login.png ├── main.png ├── main1.png └── register.png ├── dist ├── config.ini ├── login.exe └── welcome.gif └── src ├── config.ini ├── database.py ├── gui.py ├── login.py ├── student.sql ├── view.py └── welcome.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/README.md -------------------------------------------------------------------------------- /calculator/ScreenShot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/calculator/ScreenShot/1.png -------------------------------------------------------------------------------- /calculator/ScreenShot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/calculator/ScreenShot/2.png -------------------------------------------------------------------------------- /calculator/ScreenShot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/calculator/ScreenShot/3.png -------------------------------------------------------------------------------- /calculator/ScreenShot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/calculator/ScreenShot/4.png -------------------------------------------------------------------------------- /calculator/ScreenShot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/calculator/ScreenShot/5.png -------------------------------------------------------------------------------- /calculator/dist/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/calculator/dist/main.exe -------------------------------------------------------------------------------- /calculator/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/calculator/src/main.py -------------------------------------------------------------------------------- /calculator/src/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/calculator/src/view.py -------------------------------------------------------------------------------- /file_encryption/Python作业-8.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/file_encryption/Python作业-8.docx -------------------------------------------------------------------------------- /file_encryption/dist/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/file_encryption/dist/main.exe -------------------------------------------------------------------------------- /file_encryption/src/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/file_encryption/src/core.py -------------------------------------------------------------------------------- /file_encryption/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/file_encryption/src/main.py -------------------------------------------------------------------------------- /file_encryption/src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/file_encryption/src/requirements.txt -------------------------------------------------------------------------------- /file_encryption/src/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/file_encryption/src/view.py -------------------------------------------------------------------------------- /student/ScreenShot/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/ScreenShot/login.png -------------------------------------------------------------------------------- /student/ScreenShot/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/ScreenShot/main.png -------------------------------------------------------------------------------- /student/ScreenShot/main1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/ScreenShot/main1.png -------------------------------------------------------------------------------- /student/ScreenShot/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/ScreenShot/register.png -------------------------------------------------------------------------------- /student/dist/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/dist/config.ini -------------------------------------------------------------------------------- /student/dist/login.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/dist/login.exe -------------------------------------------------------------------------------- /student/dist/welcome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/dist/welcome.gif -------------------------------------------------------------------------------- /student/src/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/src/config.ini -------------------------------------------------------------------------------- /student/src/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/src/database.py -------------------------------------------------------------------------------- /student/src/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/src/gui.py -------------------------------------------------------------------------------- /student/src/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/src/login.py -------------------------------------------------------------------------------- /student/src/student.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/src/student.sql -------------------------------------------------------------------------------- /student/src/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/src/view.py -------------------------------------------------------------------------------- /student/src/welcome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weingxing/python-assigment/HEAD/student/src/welcome.gif --------------------------------------------------------------------------------