Metadata-Version: 2.1
Name: python-tables
Version: 0.0.1
Summary: Tables from lua, in python
Author-email: Cootshk <author@example.com>
Project-URL: Homepage, https://github.com/Cootshk/luatable
Project-URL: Bug Tracker, https://github.com/Cootshk/luatable/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE.md

# LuaTable
Implementing tables from Lua into Python 3.12

## Usage

```py
from luatable import Table

tbl = Table()
print(tbl) # <>
tbl.append(1)
tbl["foo"] = "bar"
print(tbl) # <1, foo: 'bar'>
print(tbl == Table(1,foo="bar")) # True

print(repr(tbl)) # Table([1]; {"foo": "bar"})
