├── .gitignore ├── README.md ├── badge.jpg ├── case_gen_GUI.py ├── case_mgmt.py ├── requirements.txt └── skeleton.docx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whee30/Case-Management-script/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whee30/Case-Management-script/HEAD/README.md -------------------------------------------------------------------------------- /badge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whee30/Case-Management-script/HEAD/badge.jpg -------------------------------------------------------------------------------- /case_gen_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whee30/Case-Management-script/HEAD/case_gen_GUI.py -------------------------------------------------------------------------------- /case_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whee30/Case-Management-script/HEAD/case_mgmt.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tkinter.ttk 2 | docxtpl -------------------------------------------------------------------------------- /skeleton.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Whee30/Case-Management-script/HEAD/skeleton.docx --------------------------------------------------------------------------------