├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── textbox ├── docx.py ├── hwp.py ├── pptx.py └── xlsx.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charsyam/textbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charsyam/textbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charsyam/textbox/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | olefile==0.44 2 | -------------------------------------------------------------------------------- /textbox/docx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charsyam/textbox/HEAD/textbox/docx.py -------------------------------------------------------------------------------- /textbox/hwp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charsyam/textbox/HEAD/textbox/hwp.py -------------------------------------------------------------------------------- /textbox/pptx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charsyam/textbox/HEAD/textbox/pptx.py -------------------------------------------------------------------------------- /textbox/xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charsyam/textbox/HEAD/textbox/xlsx.py --------------------------------------------------------------------------------