├── .gitignore ├── LICENSE ├── README.md ├── proton.py ├── raw ├── en │ ├── check.png │ ├── sample.xlsx │ ├── sample2.xlsx │ ├── sheet.png │ ├── title1.png │ └── title2.png └── zh │ ├── check.png │ ├── combine.png │ ├── sample.xlsx │ ├── sample2.xlsx │ ├── sheet.png │ ├── title1.png │ └── title2.png └── sample ├── README.md ├── __export.bat ├── __export.py ├── hero.xlsx ├── mount.xlsx ├── text.xlsx └── tools ├── CSharpGeneratorForProton ├── CSharpGeneratorForProton.exe ├── Newtonsoft.Json.dll ├── README.md └── protobuf-net.dll └── py37 ├── README.md ├── py37.exe └── sxl ├── __init__.py └── sxl.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/README.md -------------------------------------------------------------------------------- /proton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/proton.py -------------------------------------------------------------------------------- /raw/en/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/en/check.png -------------------------------------------------------------------------------- /raw/en/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/en/sample.xlsx -------------------------------------------------------------------------------- /raw/en/sample2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/en/sample2.xlsx -------------------------------------------------------------------------------- /raw/en/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/en/sheet.png -------------------------------------------------------------------------------- /raw/en/title1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/en/title1.png -------------------------------------------------------------------------------- /raw/en/title2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/en/title2.png -------------------------------------------------------------------------------- /raw/zh/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/zh/check.png -------------------------------------------------------------------------------- /raw/zh/combine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/zh/combine.png -------------------------------------------------------------------------------- /raw/zh/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/zh/sample.xlsx -------------------------------------------------------------------------------- /raw/zh/sample2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/zh/sample2.xlsx -------------------------------------------------------------------------------- /raw/zh/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/zh/sheet.png -------------------------------------------------------------------------------- /raw/zh/title1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/zh/title1.png -------------------------------------------------------------------------------- /raw/zh/title2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/raw/zh/title2.png -------------------------------------------------------------------------------- /sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/README.md -------------------------------------------------------------------------------- /sample/__export.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/__export.bat -------------------------------------------------------------------------------- /sample/__export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/__export.py -------------------------------------------------------------------------------- /sample/hero.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/hero.xlsx -------------------------------------------------------------------------------- /sample/mount.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/mount.xlsx -------------------------------------------------------------------------------- /sample/text.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/text.xlsx -------------------------------------------------------------------------------- /sample/tools/CSharpGeneratorForProton/CSharpGeneratorForProton.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/tools/CSharpGeneratorForProton/CSharpGeneratorForProton.exe -------------------------------------------------------------------------------- /sample/tools/CSharpGeneratorForProton/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/tools/CSharpGeneratorForProton/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /sample/tools/CSharpGeneratorForProton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/tools/CSharpGeneratorForProton/README.md -------------------------------------------------------------------------------- /sample/tools/CSharpGeneratorForProton/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/tools/CSharpGeneratorForProton/protobuf-net.dll -------------------------------------------------------------------------------- /sample/tools/py37/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/tools/py37/README.md -------------------------------------------------------------------------------- /sample/tools/py37/py37.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/tools/py37/py37.exe -------------------------------------------------------------------------------- /sample/tools/py37/sxl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/tools/py37/sxl/__init__.py -------------------------------------------------------------------------------- /sample/tools/py37/sxl/sxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghuan/proton/HEAD/sample/tools/py37/sxl/sxl.py --------------------------------------------------------------------------------