py2js
TypeScript icon, indicating that this package has built-in type declarations

0.0.14 • Public • Published

py2js

Py2js wraps python-bridge allowing any python library to be used as if it were a JS library instead.

For example once you've installed numpy through pip you can run the following.

 const py = py2js();
  const np = py("numpy");
  const npArray = np.array([1, 2, 3]);
  const flipped = np.flip(npArray);
  const preList = flipped.tolist();
  expect(await preList.__get()).toEqual([3, 2, 1]);

  const list = np.array([npArray, flipped]).tolist();
  expect(await list.__get()).toEqual([
    [1, 2, 3],
    [3, 2, 1],
  ]);
  py.end();

/py2js/

    Package Sidebar

    Install

    npm i py2js

    Weekly Downloads

    6

    Version

    0.0.14

    License

    MIT

    Unpacked Size

    153 kB

    Total Files

    6

    Last publish

    Collaborators

    • robertinglin