Skip to content

Files

Latest commit

8d0236b · Apr 21, 2022

History

History
22 lines (12 loc) · 505 Bytes

README.md

File metadata and controls

22 lines (12 loc) · 505 Bytes

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();