├── .gitignore ├── LICENSE ├── README.md ├── example.sh ├── example_building.xls └── xls2lua.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.meta 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzexi/xls2lua/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzexi/xls2lua/HEAD/README.md -------------------------------------------------------------------------------- /example.sh: -------------------------------------------------------------------------------- 1 | python ./xls2lua.py example_building.xls ./ 2 | -------------------------------------------------------------------------------- /example_building.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzexi/xls2lua/HEAD/example_building.xls -------------------------------------------------------------------------------- /xls2lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzexi/xls2lua/HEAD/xls2lua.py --------------------------------------------------------------------------------