denosaurs / python.mod.land

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pip Deno

Import any python module into deno as long as you have it installed locally

License

Usage

import np from "https://python-mod-land.deno.dev/pkg/numpy";
import plt from "https://python-mod-land.deno.dev/pkg/matplotlib.pyplot";

const xpoints = np.array([1, 8]);
const ypoints = np.array([3, 10]);

plt.plot(xpoints, ypoints);
plt.show();

About

License:MIT License


Languages

Language:TypeScript 100.0%