pymport
pymport copied to clipboard
Use Python libraries from Node.js
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 7.7.1 to 7.9.0. Release notes Sourced from @typescript-eslint/eslint-plugin's releases. v7.9.0 7.9.0 (2024-05-13) 🚀 Features rule-tester: check for missing placeholder data in the message (#9039) 🩹 Fixes do...
This code is leaking memory: ```js for (let i = 0; i < 1000; i++) { const a = PyObject.list([1]); a.get('__getitem__'); } ```
standard ubuntu 22.04 node v20.12.0 npm 10.5.0 `npm install pymport` leads to: ``` npm ERR! code 7 npm ERR! path /data/dev/dev/snoot/snoot_pcd/node_modules/pymport npm ERR! command failed npm ERR! command sh -c...
I encountered the error below when running `npx pympip3 install pandas`, and I ensure I had installed python and pandas before. ``` You don't appear to have the pymport built-in...
When using the Node.js inspector to step over the final iteration of a loop iterating over a Python iterable, when Python throws the final exception, V8 crashes. Seems to happen...
The following way to use multiple values below work: ```javascript df.item(['Age', 'Fare']).median().type 'Series' ``` Is possible to support something without relying in manual calling the .item() ? This **works**: ```javascript...
`node-gyp` does not work with Python 3.12 https://github.com/nodejs/node-gyp/issues/2869
How do I spin up a second interpreter to get past the async blocking issue? I do not need to share info between each interpreter. Also can python stdout and...
Every time the `pymport` module is loaded and then unloaded, it leaks about 15Kb to 20Kb of memory. The only way this can happen more than once is if the...
Consider the following scenario: ```js const q = pyCallable.callAsync(pyArg); const b = somePyObject.attribute; await q; ``` The first operation launches a Python operation in a background thread (using an existing...