Metadata-Version: 2.1
Name: luadata
Version: 0.0.6
Summary: Serialize and unserialize Python list & dictionary between Lua table.
Home-page: https://github.com/leafvmaple/luadata
Author: Leafvmaple
Author-email: leafvmaple@gmail.com
License: BSD License
Description: # luadata
        
        This is a Python package that can serialize `Python` list &amp; dictionary to `Lua` table, or unserialize `Lua` table to `Python` list & dictionary.
        
        ## Install
        
        Binary installers for the latest released version are available at the `Pypi`.
        ```
        python -m pip install --upgrade luadata
        ```
        
        ## Use
        
        You can use `serialize` to output your Python data into a Lua file on path.
        ```
        luadata.serialize(data, path, encoding='utf-8')
        ```
        Or use `unserialize` to input your Python data from a Lua file on path.
        ```
        data = luadata.unserialize(path, encoding='utf-8')
        ```
        
        ## License
        
        [BSD](https://github.com/leafvmaple/luadata/blob/master/LICENSE)
Keywords: lua,data,luadata,table
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
