Tables from lua, in python
Project description
Python-Tables
Implementing tables from Lua into Python 3.12
Usage
pip install python-tables
from tables import Table
tbl = Table()
print(tbl) # <>
tbl.append(1)
tbl["foo"] = "bar"
print(tbl) # <1, foo: 'bar'>
print(repr(tbl)) # Table([1]; {"foo": "bar"})
tbl += [2,3,4]
print(tbl) # <1, 2, 3, 4, foo: 'bar'>
print(tbl == Table(1,2,3,4,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-1.1.1.tar.gz
(17.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python-tables-1.1.1.tar.gz.
File metadata
- Download URL: python-tables-1.1.1.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
869e770af363a92987cb13c97b3fa3d879a8385deaafff4dd34e54101f8f27fb
|
|
| MD5 |
3195219908ae25f20a61cf48a73cafa1
|
|
| BLAKE2b-256 |
4ba29c09ea9b9d749d66126c4a8cbe2ef466c44cd89eb4d9d0c9504d6c409e06
|
File details
Details for the file python_tables-1.1.1-py3-none-any.whl.
File metadata
- Download URL: python_tables-1.1.1-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ee04f40b3639c715e644e22cfa0c368e3cc2f213f1ae099c4fd889236963b88
|
|
| MD5 |
dc19c7308ad41deeaea0d4dae848f728
|
|
| BLAKE2b-256 |
0d253be72bf8738969a381817de1cca68d699437609b0ca7feb431409498bcfa
|