Tables from lua, in python
Project description
LuaTable
Implementing tables from Lua into Python 3.12
Usage
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"})
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
python-tables-0.0.1.tar.gz
(15.4 kB
view hashes)
Built Distribution
Close
Hashes for python_tables-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bc5df075d8e56ea83bfae68a5ac1fbda9de89188e38d244eac688e91b63d58a |
|
MD5 | 3ca0aee5fbdbfd9241c38407462121ac |
|
BLAKE2b-256 | 1a260d64a9fec193c3315acc7869bbcc406e47b84fad120bcb94e036f5d1a86e |