Pluau: Python bindings for the Lua(u) programming language
Project description
pluau
Pluau provides high level Python bindings to Luau using PyO3/Maturin.
Asides from Buffer support, all Luau features should be broadly supported by pluau.
Examples
Creating a Lua VM and running a script
import pluau
lua = pluau.Lua()
lua.set_memory_limit(1 * 1024 * 1024) # Optional: Set memory limit of the created Lua VM to 1MB
func = lua.load_chunk("return 2 + 2", name="example") # You can optionally set env as well to give the chunk its own custom global environment table (_G)
result = func()
print(result) # [4]
Tables
tab = lua.create_table()
tab.push(123)
tab.set("key1", 456)
# Prints 1 123 followed by key1 456
for k, v in tab:
print("key", k, v)
print(len(tab)) # 1 (Lua/Luau only considers array part for length operator)
# Set a metatable
my_metatable = lua.create_table()
tab.set_metatable(my_metatable)
# Set the readonly property on the table (Luau-specific security feature) Luau s
tab.readonly = True
# The below will error now since the table is readonly
tab.set("key2", 789) # errors with "runtime error: attempt to modify a readonly table"
tab.readonly = False # make it writable again
tab.set("key2", 789) # works now
Setting execution time limits
Luau offers interrupts which is a callback function that is called periodically during execution of Luau code. This can be used to implement execution time limits.
import pluau
import time
start_time = time.time()
def interrupt(_: pluau.Lua):
if time.time() - start_time > 1.0: # 1 second limit
return pluau.VmState.Yield
return pluau.VmState.Continue
lua = pluau.Lua()
lua.set_interrupt(interrupt)
func = lua.load_chunk("while true do end", name="infinite_loop")
# When using interrupts, the function should be made into a thread and then resumed. Otherwise, the yield will lead to a runtime error.
thread = lua.create_thread(func)
result = thread.resume() # Resume the thread with no arguments
print(result, thread.status) # Prints [] ThreadState.Resumable after 1 second
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
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 pluau-0.1.2.tar.gz.
File metadata
- Download URL: pluau-0.1.2.tar.gz
- Upload date:
- Size: 30.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f6a764b0a4d69ebd996499933bcc554f3eab1e95db45f117c1ec4d6ea62d0e2
|
|
| MD5 |
8794f770d3baa155c59c02e487aefde6
|
|
| BLAKE2b-256 |
428dac1e96f3f4aae0278b7520a14b82d095dfe5aa53c0ea4fa487aef08c9690
|
File details
Details for the file pluau-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a1b20b1a5935a99244b06ebef25b72159764dd4456822f2d59928a8bf147dfc
|
|
| MD5 |
69c721a8148c8c587473361c1c72cb18
|
|
| BLAKE2b-256 |
ad4bcf7fa7bde46ad0643256c94abe77ac30afd9d8d817e9de22540fd3ac9b97
|
File details
Details for the file pluau-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef6a3b74b89d6d1bc76364fd2630b4e0f569879d77932337d813f65889faf3ce
|
|
| MD5 |
1ec2a976ae28694fb7c019a686d9b094
|
|
| BLAKE2b-256 |
86898621edd13e9fb9da92880db1714e5007cc060f8bd9e91f61667a09ea4a82
|
File details
Details for the file pluau-0.1.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
361c147ce3b1c327ad241aa46699a561b179bfc5ca10c0943a81bf608aea10da
|
|
| MD5 |
c3bad85da866857d813209cc43124368
|
|
| BLAKE2b-256 |
a1f6bd3e775240a652b0945050a6289291f6c50f3a4736c75464e2b769a84f98
|
File details
Details for the file pluau-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c281ec8d33913cedf48288e1ec3bf7b773bd67214f35043ab518d1c446dd773
|
|
| MD5 |
b204aa42319f66de2613468ae0f18588
|
|
| BLAKE2b-256 |
dd3dc9207c49d8752709d0b393ef5b688f369ed3512cc3734fbc6f30700f846d
|
File details
Details for the file pluau-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7670a1b394381006bdc3e80f62deee5009fab698b5551942d1aefe63e0dbba1
|
|
| MD5 |
cf96877299a083132d7032a93dc4df52
|
|
| BLAKE2b-256 |
1b91705cb7e7462d54bfa651e39585b4c642c88eecc02e781d7dfa11ba8226c2
|
File details
Details for the file pluau-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0029f2c506e00f84654316f4b2d3fb3c2973f91649d6e3697b4a03f3a71a99e8
|
|
| MD5 |
36e94188525bb4873ffceead5e37352b
|
|
| BLAKE2b-256 |
42bf4b682494d3dcdfca8917e4de96e29b2915580fcce5e7f79f7d2976f21686
|
File details
Details for the file pluau-0.1.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4722fe1692c45f7c32b1247ad247a4dde5bdcf9579a7bf85ebdb2c09dd1822ea
|
|
| MD5 |
ef5b9cb5ce1edb4610f144fe70962a31
|
|
| BLAKE2b-256 |
f33210a68aebb04007be4d7991dd29cac189541f7a398c3672ec545dd52d014b
|
File details
Details for the file pluau-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0666823c9bf28d73ca6051f0987425fa5a765eafa89ac80eece9361e169de49d
|
|
| MD5 |
a5c2e2d35460cbc30589d19552de4cf8
|
|
| BLAKE2b-256 |
670ec2e6b1cfd3b19f63adb7eee30a2712e3af0f222fbb32f9ba870479297d46
|
File details
Details for the file pluau-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d111db7f247ce071e65b64f4bf6f98e1cbfa5e0df6dbaf956a592b90159b7d0c
|
|
| MD5 |
8e3237d44ef69fda233f51bcfc5d55b1
|
|
| BLAKE2b-256 |
f1da908129093016f063ef4a3bcfae7e69f105b19b826c97df540ad7b1a150ba
|
File details
Details for the file pluau-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d87414d0f2bd44662d9453e280bd46799b74028b166b3e4993faaa030c1ed0b1
|
|
| MD5 |
6118cf63c5ac2cdd0204eb683f4a92fa
|
|
| BLAKE2b-256 |
194daea48058686be62880f17507e48213a98cbc863a9874132359b300c775be
|
File details
Details for the file pluau-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
178d7b4642d811b524181581e2409c72413b2987d480cccb1797c185f37e490f
|
|
| MD5 |
4915bcf7b1c2d62552385e821026ed0d
|
|
| BLAKE2b-256 |
b86959e8ffb064355e57aaba99fd61f408a1f090e3540bf399b10ac373b67079
|
File details
Details for the file pluau-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
417e3a25094656f31b9649e598361aca0a152fa4f74c84d57173f3b89dc5c5d7
|
|
| MD5 |
45591c1df0b955d53e86bb7b4fe5a96a
|
|
| BLAKE2b-256 |
f3e217a3f88eace8dbb70faf5dc66ce19c5963b1e18b3496512c44cc6df362cb
|
File details
Details for the file pluau-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5c1c32a6f806cccb68000142964fc383cbcda74e7942a96d17edd9ee46108d7
|
|
| MD5 |
360c8e1564117a606f29e83d354d31ff
|
|
| BLAKE2b-256 |
89a4993c6d211272fdc6f12f30aacd4dca38ee9a4d57a8d76450066816a19b5f
|
File details
Details for the file pluau-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
367489b138596390ca2554d4d284e5e5be59d22033fe2e627a548fb9cb0050be
|
|
| MD5 |
3818e49ef7064c29fe1306eabb682e34
|
|
| BLAKE2b-256 |
1e9a7d3673b8347759286284e89cd0b2b0a162b13405515d192086bfeef4d677
|
File details
Details for the file pluau-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf136eeb8341314a1ac8d0adbe89c5c0bbef9ff9485124a17a29e4330a541a5c
|
|
| MD5 |
5b5d2af819e1538bd9e4246f7a70e6bd
|
|
| BLAKE2b-256 |
1930f976af08c4a780206880067ba176b95855de2a2590576275ce9afddc28de
|
File details
Details for the file pluau-0.1.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 823.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00d0659737be34ef8f58ca4bf5342ade61b066c29af13177a94d4312fbad3112
|
|
| MD5 |
1d6687d175b01154922a4ae21cc8e16f
|
|
| BLAKE2b-256 |
62409e543357a7f2c8b83e3a2855a294cf0ffac29d90346b78cfa1ec64386103
|
File details
Details for the file pluau-0.1.2-cp313-cp313-win32.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313-win32.whl
- Upload date:
- Size: 731.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3b06359d1a46469cea18fea739cc78cad5abe61437e69aa1971ccafba120053
|
|
| MD5 |
ebe24442c17b049f552f0b3e5b45f0d9
|
|
| BLAKE2b-256 |
af8ae44e923cdfb4f1f289d02dcb4a4000b1d9130f9716390891580210f7b772
|
File details
Details for the file pluau-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
912935bf3b154e5510df8247998eb4157fcfa288f3cbbe9a87233845bdaae708
|
|
| MD5 |
92d0b864b457346a6920a00d6ee125d0
|
|
| BLAKE2b-256 |
22c925b405d027364bace118320f7ed1db444b6b4b632bb94e29f133e4f52162
|
File details
Details for the file pluau-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c96c9f408dbf845473ce0e8faa433c910932a85f06e2f65320729f0a84ebd81
|
|
| MD5 |
3588fd9e69e3c3e4d321a1b4760c4c97
|
|
| BLAKE2b-256 |
3dd6a52e79fcec9cd1c07e8ca5953cb6688de0905625b73e0b8398b85cd7e9f6
|
File details
Details for the file pluau-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
227256e651aeeeb3ec3d6f9c63eca014801ce5ffa008d60249e8f742d488c6e5
|
|
| MD5 |
42839380a19dc589d80ceeeb01b48753
|
|
| BLAKE2b-256 |
221afa96e5576eb71f06c7b648a29db35274bd2dbd1c595cf94918c69e134107
|
File details
Details for the file pluau-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6167af0ecb335673f10248bc8c63cb0baf65bb9c6f908280a8cca8a45f01571a
|
|
| MD5 |
078896e157dfbdd1bd61cfc03a56b2dc
|
|
| BLAKE2b-256 |
8f5a1f4bd3d73e07f4420bc483ccd8957ac9bab2ffaec47f7f31fcd237fcdb82
|
File details
Details for the file pluau-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 937.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16ec739dd493909692961a403c603a6ec15edf397dd57437cc6aa681628ae097
|
|
| MD5 |
250ae2ea3b7faefccd69051f636769e3
|
|
| BLAKE2b-256 |
9ee4d9cc73fa9d0a796ba8bc128f5b4046669da153d7e2d9ac2b61bc1ec8c9c8
|
File details
Details for the file pluau-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d6c06bd8ead0060a0b1ca26e250aaa8e7052ee2ca6a7ea8493f3e86dc4cd97c
|
|
| MD5 |
1257474697e5ff13e33efb403e1f8931
|
|
| BLAKE2b-256 |
ee05bbbe71fb42363323f68850a45138c72574fe9feaf5e5b6e8678aeb5a015d
|
File details
Details for the file pluau-0.1.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pluau-0.1.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 824.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b1c07ca224a2df6be83759458a33dbb4d83385ba156c9e96b4ec057fb0a7ad0
|
|
| MD5 |
5e2ae0d5c96aaf49ac61e16c4018bf35
|
|
| BLAKE2b-256 |
dbe8100e8344cc481efc8f03e0e00935602b9d7d7b0c778239dd8bbfaeab3ef9
|
File details
Details for the file pluau-0.1.2-cp312-cp312-win32.whl.
File metadata
- Download URL: pluau-0.1.2-cp312-cp312-win32.whl
- Upload date:
- Size: 731.7 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e0b65694da5676662c1fcd21c09c7f322e5db7754ccf45facac2c7349a069c2
|
|
| MD5 |
93e82dc2d7f3760574cbb0e56ab69899
|
|
| BLAKE2b-256 |
84cb4b24199ded675c8c26bc9f661ac12f2c3f713b8ef91845c1f2b84ac2cad8
|
File details
Details for the file pluau-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27ba09ef85c13be3ca5d9997649007cdf40e5267b4bd9374a75a06a62d4172a2
|
|
| MD5 |
eca1d06c6ac52c8d2f55cd5d1587ccea
|
|
| BLAKE2b-256 |
37898d22694c4497fe2769f735f7e9f0ee719e60d01dd10cf4b8e7ca183a5bd9
|
File details
Details for the file pluau-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0090b562b0a28e4b27c375fd9ced14f8e53feaa627c8ebf34267a7ac2362ca1c
|
|
| MD5 |
3a78a77f58032f3ac309c3152528d8e9
|
|
| BLAKE2b-256 |
36ea5fba99728fd3c5f5cd77b13fc4c74a933317aa79a153a4ede1f90c59cf5a
|
File details
Details for the file pluau-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14aa32a4264989ac75f15aa291e91b59a60738a4d1c02cfb9c7bb1a5b8dcf4ef
|
|
| MD5 |
f338d91ed55b96d9f84a7fb810d237f5
|
|
| BLAKE2b-256 |
53c07656ca8a3352913bf5b2188371f7a85c013091dddd08ed300856d28f763b
|
File details
Details for the file pluau-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61612ec6a64b46f4e4d9f382825152318585a8d6073202da5a54b50cb13dd671
|
|
| MD5 |
e3cc4c967f0a0862bbe70e9eaa1321a4
|
|
| BLAKE2b-256 |
86d915cf6c215bcb91faa33bcb009ea1462d30554ec6a6ac27a789c8c809c58a
|
File details
Details for the file pluau-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pluau-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 937.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b25a2ca0a1fdbb5a86b7fc0bd02248915c42f1121cb1567f9a1591b18736104b
|
|
| MD5 |
aa9f599d11ef33201d23e2367bf9fe35
|
|
| BLAKE2b-256 |
f01ce21a1f6f3eb8bb978dea2280b58347b1d4ad596ed2ca1bd87a93c648100e
|
File details
Details for the file pluau-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94579db2ee5aae8fb571cf96261b501e0ad11867a69b5fc0282597dfc2c41dc0
|
|
| MD5 |
67bf31e7141afe75a78049dcccc8c50f
|
|
| BLAKE2b-256 |
a8c5874b51f338ddc53674da43a70ff62dcea0329b291fbacdd034aac087adc4
|
File details
Details for the file pluau-0.1.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pluau-0.1.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 820.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
277f6260cff38493785753e2a82458fdaf3b25e0f749264a216d3b4b998aa31d
|
|
| MD5 |
8196b34953a53e9f8c11347c04c87858
|
|
| BLAKE2b-256 |
78034f8f060a27362c2e78b98863814e2465d6cc5576b9dea51bd4e473142ebb
|
File details
Details for the file pluau-0.1.2-cp311-cp311-win32.whl.
File metadata
- Download URL: pluau-0.1.2-cp311-cp311-win32.whl
- Upload date:
- Size: 731.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e39e59056b776f983ce526c4a76090632f985619fcf9c784af431bb34211d22
|
|
| MD5 |
db218be54ea6e4073c6c85cbaf07a764
|
|
| BLAKE2b-256 |
877ce85c79ea4fa7d836faea1e33f5e11c45b915b84b976c0ed7d595352dc6b6
|
File details
Details for the file pluau-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b039232161d7227baa7ab21d838974b452e2538a67154153f92dded6d4231a38
|
|
| MD5 |
1e8559d1e9eb589b6616d6b6bf170907
|
|
| BLAKE2b-256 |
b2578648aa79d8d496d74bb69d951f6a33799ada66198b29a9341df04113739d
|
File details
Details for the file pluau-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6463ed4e4971ef0b3409a72fc215a77ac189286bc2dd7212e49a0dc278fe58e
|
|
| MD5 |
91266b56bab8f5887a889981428e9172
|
|
| BLAKE2b-256 |
e744185b04f8318f27ad7bef16398f64deffd4d1f962d65daa7d0174d954af57
|
File details
Details for the file pluau-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63ddebd5c9b920794fd5cff55f05b59cdfbed423d3a74eb3abb2dce1861d25c7
|
|
| MD5 |
b400fa3c1790ed2bd29aaa55de3ac3c0
|
|
| BLAKE2b-256 |
2c6c7a2d1d9dd09a85381669ec4bc3e7512deced9af97cfd9cd2aa797d08fe36
|
File details
Details for the file pluau-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dcc13fbf274e166aba869de1dc452612b4bdeffc3be2917f7460f3435593b0d
|
|
| MD5 |
03033ede5fbd10f9e119f780195eaf2c
|
|
| BLAKE2b-256 |
1e8271501e79b28219bdd5a8b3d0dc3e0863b5b965aea63140ab79c275a42e0f
|
File details
Details for the file pluau-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pluau-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 945.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24b3dc1cbd15676c23b16810dab710e4978bf133543c9ce5f7044aecfd3f6096
|
|
| MD5 |
1639e052f5299fb4b4f7ebe1c328be16
|
|
| BLAKE2b-256 |
018b9ad31de575b87ab84a381f60a156191d68f80dcc7faf5aa37eb9b941269c
|
File details
Details for the file pluau-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f168b1639389397aeaccfe53ded8b265ee8a3c89a7cdcf193eb509cecba5ebad
|
|
| MD5 |
08cdac904ad9e80eb4d2b0fe98f68413
|
|
| BLAKE2b-256 |
1aff278fd360170fc8307e506e9492265b0423ab5a90a4feca18e52c1be6c163
|
File details
Details for the file pluau-0.1.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pluau-0.1.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 819.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d17db2208552d065d1f4443ba00ed20997258b179d4663dd6a4a739141e81b7
|
|
| MD5 |
b174437f63b9b50d24407414240c1303
|
|
| BLAKE2b-256 |
9eec84581a7becced10e2d661b3cad1bbd785dbf30c94bc144da50a87619eada
|
File details
Details for the file pluau-0.1.2-cp310-cp310-win32.whl.
File metadata
- Download URL: pluau-0.1.2-cp310-cp310-win32.whl
- Upload date:
- Size: 733.1 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac0692a1a1e6c9ebe09aa2cdf226debe1f904486a1338ac1724fa4f79129710d
|
|
| MD5 |
253f04a6ab8a2e6fb9b1daed1b1f7924
|
|
| BLAKE2b-256 |
53bf6d3031c25c92001b7b6b8563e20e992033d54009da6a226ba07f66dd8dfb
|
File details
Details for the file pluau-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99b5ae232a3216b18add2347ba6a7327e82411329e644780d774a6c6657981e4
|
|
| MD5 |
ad9ecf2a5e25cc963217974dcbf8d0b5
|
|
| BLAKE2b-256 |
f95310eeb4a787ed84177d40bb0d4fe16d2a7a149aef30093b78c786fc77f83d
|
File details
Details for the file pluau-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f6996fd6613a37b0a50bc0302d036ab9d4a1735602378ce15b1a18e6b52017f
|
|
| MD5 |
4def684ff548cbcf8984ab01e7bc4dd7
|
|
| BLAKE2b-256 |
f8b055eeb26c7d0123c84f7ade97eaa7bea275bd829874f6c979c27f6ba1354c
|
File details
Details for the file pluau-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fba7ef61051b187684e696f741ad88556c846a32859a2dd215ada39cd8086e4
|
|
| MD5 |
9fa6edc53234f389bd390e1c7135325c
|
|
| BLAKE2b-256 |
172bc6d2000beb33a81cf3e4a7521a7e27cbecfa9defda099758849994bd4262
|
File details
Details for the file pluau-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0d6e08e8820f06cf856c2eeef99d25aeb76386421f961aa348bba770ba7b27b
|
|
| MD5 |
43cf32a28c5b49102f5d926d69f1ac48
|
|
| BLAKE2b-256 |
58af96c61efa8b1a6d829442d34b0920d64be8444b6543070a6a074baaf699cd
|
File details
Details for the file pluau-0.1.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pluau-0.1.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 820.8 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd03e839ad2adb3ebe29bafd7455d13220737825e18b77cf2613724778f1d673
|
|
| MD5 |
47f9d6dbfd29408e9f6d12a3a4afdb54
|
|
| BLAKE2b-256 |
612385d240ef71037e4cbac72361c6f9b12326342e5ec10eb0066c5f0d7cbab7
|
File details
Details for the file pluau-0.1.2-cp39-cp39-win32.whl.
File metadata
- Download URL: pluau-0.1.2-cp39-cp39-win32.whl
- Upload date:
- Size: 733.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94422f67f91e83694339db080cdd147dceda1ca79af12de10630900e7314c676
|
|
| MD5 |
fdad096703b787aea78b3441215dd58a
|
|
| BLAKE2b-256 |
61d8a70beddcd9748d52046214920cc9e3fe6717bc628cc4a9d65cb117e83275
|
File details
Details for the file pluau-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0486af93c517632e3a726658e2c59cd4926774c30e7547cd660186c0a7b02b88
|
|
| MD5 |
40ac32e32ab8cee298bd30ed9e2a019e
|
|
| BLAKE2b-256 |
87d2aebc7f374b617c6d1c9467cf18d29ef93db551132accfec1e6d5e02a47ac
|
File details
Details for the file pluau-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
310beada278c00e820527fe214f1b0fa6807038368dbe575abcf392d26bbf60a
|
|
| MD5 |
018000901154dc9ae94d716b13cd8b45
|
|
| BLAKE2b-256 |
b01530ebf9658e6ba0d3832f97f73e6bb0572cf66e8396ae0fea0ca5923ae1d7
|
File details
Details for the file pluau-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd171cbb087825cd80b29867c229797f0f0ec2ef887bc6ea47ebe0edcddf087c
|
|
| MD5 |
95c8e5821e34a7635e38a87f183c7dea
|
|
| BLAKE2b-256 |
8e6c38709783ae3e9df1684b4a63943ecba9a38a5f1ecd2e4e5385973ae6e8af
|
File details
Details for the file pluau-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1acc38967332b5f1bb102cbecd3aed7454288ef9953100e13746c9baf06b2f11
|
|
| MD5 |
c6a4206480f169bcec55b67bd049301a
|
|
| BLAKE2b-256 |
3bdef02f18e5736cac162123cb6c614a6509f57d83f897d9f4ef7070ae2c0a37
|
File details
Details for the file pluau-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 7.5 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d9519888cc1d7e4dce68c521ce5cc8ae0c960f660a0328057be08ab214af299
|
|
| MD5 |
dfd45eff023df2fdce445c5f4381fbd3
|
|
| BLAKE2b-256 |
7d1be5db0a79f413a26f5ab57fa67a0246865157326f57db3246c90096609c5a
|
File details
Details for the file pluau-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 7.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
173f825b49b764bc032287ed7852d5837c72a5f5d9c5a31819c03e19277adf45
|
|
| MD5 |
d7ebcdc8ea1d91c31a531e92467780f9
|
|
| BLAKE2b-256 |
82bc467f0df121b876de863a324c4d985d344b593179d37a62835586fe298e57
|
File details
Details for the file pluau-0.1.2-cp38-cp38-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pluau-0.1.2-cp38-cp38-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e7466af1e91ec76da34a01c27bd18a538f1150ca72b4401b6f1154e2bea7958
|
|
| MD5 |
5d8143b48be1230b99f0c5aeab6201ef
|
|
| BLAKE2b-256 |
a2484ac880a45210a46123c32e7fb987e661ac8c0d85757f9d0d7a0d40f38fdb
|
File details
Details for the file pluau-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pluau-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ece97350b93dcbc05cb07e615bc95d2b0398c188fccec721e0175877784700e0
|
|
| MD5 |
4c96fbf90f8603c7d0cdea8aa2c0ccd3
|
|
| BLAKE2b-256 |
f2e8edf1f137e645629a20151c8d07c854ba19832f0eaf4d013bbd30af1096d5
|