pie-language-javascript 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 javascript language component of pie: one wasm, found by `pie.server.Server`
2
+ when this package is installed (`pip install "pie-server[javascript]"`)."""
3
+
4
+ from importlib.resources import files
5
+
6
+ LANGUAGE = "javascript"
7
+
8
+
9
+ def read() -> bytes:
10
+ """The component's bytes."""
11
+ return (files(__package__) / "javascript.wasm").read_bytes()
Binary file
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.5
2
+ Name: pie-language-javascript
3
+ Version: 0.5.2
4
+ Summary: The javascript language component of pie: install it beside pie-server, and javascript 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-javascript
14
+
15
+ The javascript 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[javascript]"
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_javascript/__init__.py,sha256=DT7N-PinCyPIeBB7FJgmJsHpOQswlMCKB6hbq4IeK0Q,345
2
+ pie_language_javascript/javascript.wasm,sha256=bxTjwPkxOiTOIFGwq2b1dwVok8APbEH2D8ygTNj-uAM,16791944
3
+ pie_language_javascript-0.5.2.dist-info/METADATA,sha256=kPk3MSEyX0FTpfizr1UzegxOW5AvXpazAyxSrdNXyY4,817
4
+ pie_language_javascript-0.5.2.dist-info/WHEEL,sha256=W3fkpkm7-wf9vBI5Z-7s0eWkeM-spu78I8Neb98DeEg,87
5
+ pie_language_javascript-0.5.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.4
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any