deno_python icon indicating copy to clipboard operation
deno_python copied to clipboard

🐍 Python interpreter bindings for Deno and Bun.

Results 12 deno_python issues
Sort by recently updated
recently updated
newest added

Is possible to import deno module in python code ?

Trying to run this for the first time. Code ```js import { pip } from "https://deno.land/x/python/ext/pip.ts"; const np = await pip.import("numpy"); const plt = await pip.import("matplotlib", "matplotlib.pyplot"); const xpoints =...

bug

The `bunpy` npm package is still on the v0.3.3 release; it would be good if it updates continued to be published to npm as releases are made (particularly as bunpy...

```ts import { python } from "https://deno.land/x/[email protected]/mod.ts"; const gi = python.import("gi"); gi.require_version("Gtk", "4.0"); const Gtk = python.import("gi.repository.Gtk"); class MainWindow extends Gtk.ApplicationWindow { constructor() { super(); this.a = 4; // error...

bug

https://docs.deno.com/runtime/manual/tools/jupyter#rich-content-output

enhancement

Let's add an entry to the python wiki about this! https://wiki.python.org/moin/IntegratingPythonWithOtherLanguages

documentation

https://docs.python.org/3/c-api/buffer.html

enhancement

``` /Users/elias/.pyenv/versions/3.11.2/lib/python3.11/multiprocessing/resource_tracker.py:224: UserWarning: resource_tracker: There appear to be 1 leaked semaphore objects to clean up at shutdown ``` Every time my script shuts down i get a warning about a...

bug

In contrast to most JavaScript code, Python libraries often work synchronously and may even expect one's callback function to resolve synchronously, even if that doesn't make sense in JavaScript environment....

question

``` import { pip } from 'https://deno.land/x/[email protected]/ext/pip.ts'; await pip.import('numpy'); ``` Second and consecutive runs of this code give me the following warnings: ``` WARNING: Target directory /Users/admin/Library/Caches/deno/plug/pip/numpy already exists. Specify...

enhancement