Metadata-Version: 2.1
Name: luatables
Version: 1.0
Summary: Lua tables in Python
Home-page: https://github.com/SkyTheCodeMaster/python-lua-tables
Author: Sky The Code Master
Author-email: sky@skystuff.games
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/SkyTheCodeMaster/python-lua-tables/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE

# luatables
Lua tables in Python

# Example usage:
```py
from luatable import Table

tbl = Table()
tbl["x"] = 5
tbl.y = 45

print(tbl) #> {'x': 5, 'y': 45}
print(tbl.x) #> 5

tbl.z = {}
tbl.z.hi = "Hi!"

print(tbl) #> {'x': 5, 'y': 45, 'z': {'hi': 'Hi!'}}
print(tbl.z.hi) #> "Hi!"

print(tbl["z"]["hi"]) #> "Hi!"
```
These function identically to Lua tables, except that metatables are not supported.


