乔托鲁阿
一个python脚本将json转换为lua表
#用法:git clone
cd jsontolua
python ./setup.py 安装
快速示例
#命令行
python ./convert_json.py json_file lua_file
#代码
#convert string
jsontolua . str_to_lua_table ( '{"a":"1","b":2,"c":[1,2,3]}' )
#return lua code
'''
{
a = '1',
c = {
1,2,3
},
b = 2
}
'''
#convert file
jsontolua . file_to_lua_file ( './1.json' , './1.lua' )
2022-03-14 22:41:48
2KB
Python
1