pie-language-python 0.5.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"""The python language component of pie: one wasm, found by `pie.server.Server`
|
|
2
|
+
when this package is installed (`pip install "pie-server[python]"`)."""
|
|
3
|
+
|
|
4
|
+
from importlib.resources import files
|
|
5
|
+
|
|
6
|
+
LANGUAGE = "python"
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def read() -> bytes:
|
|
10
|
+
"""The component's bytes."""
|
|
11
|
+
return (files(__package__) / "python.wasm").read_bytes()
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: pie-language-python
|
|
3
|
+
Version: 0.5.2
|
|
4
|
+
Summary: The python language component of pie: install it beside pie-server, and python inferlets run.
|
|
5
|
+
Author-email: In Gim <in.gim@icloud.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
9
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# pie-language-python
|
|
14
|
+
|
|
15
|
+
The python language component of pie, as a wheel: one wasm that
|
|
16
|
+
`pie.server.Server` installs when this package is importable.
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install "pie-server[python]"
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
The wasm is what `pie language install` puts under `$PIE_HOME/languages`;
|
|
23
|
+
`scripts/build-languages.sh` builds it here.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
pie_language_python/__init__.py,sha256=--friabDvoZpFhmYG0a5-aFC4l5hOyTnNmyq41jvCgo,329
|
|
2
|
+
pie_language_python/python.wasm,sha256=EAE55tRLQZ5JkMXwnc5H_28FRv7T-fyHxANW776u8dk,37434088
|
|
3
|
+
pie_language_python-0.5.2.dist-info/METADATA,sha256=vUYyxNoeHdoBfS-dbhyc_fC4oObGORqnVrwHXXY4Qn4,793
|
|
4
|
+
pie_language_python-0.5.2.dist-info/WHEEL,sha256=W3fkpkm7-wf9vBI5Z-7s0eWkeM-spu78I8Neb98DeEg,87
|
|
5
|
+
pie_language_python-0.5.2.dist-info/RECORD,,
|