├── .gitignore ├── Example2.xlsx ├── Exmaple1.xlsx ├── LICENSE ├── README.md ├── example1.png ├── example2.png ├── requirements.txt ├── result.png └── translate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/ExcelToStrings_ObjC/HEAD/.gitignore -------------------------------------------------------------------------------- /Example2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/ExcelToStrings_ObjC/HEAD/Example2.xlsx -------------------------------------------------------------------------------- /Exmaple1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/ExcelToStrings_ObjC/HEAD/Exmaple1.xlsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/ExcelToStrings_ObjC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/ExcelToStrings_ObjC/HEAD/README.md -------------------------------------------------------------------------------- /example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/ExcelToStrings_ObjC/HEAD/example1.png -------------------------------------------------------------------------------- /example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/ExcelToStrings_ObjC/HEAD/example2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | et-xmlfile==1.0.1 2 | openpyxl==2.4.9 3 | 4 | -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/ExcelToStrings_ObjC/HEAD/result.png -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raxcat/ExcelToStrings_ObjC/HEAD/translate.py --------------------------------------------------------------------------------