-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a73c4c7
commit 6ec96bf
Showing
1 changed file
with
3 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# deno_python | ||
|
||
[![Tags](https://img.shields.io/github/release/denosaurs/deno_python)](https://github.com/denosaurs/deno_python/releases) | ||
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/python/mod.ts) | ||
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/python@0.1.3/mod.ts) | ||
[![checks](https://github.com/denosaurs/deno_python/actions/workflows/checks.yml/badge.svg)](https://github.com/denosaurs/deno_python/actions/workflows/checks.yml) | ||
[![License](https://img.shields.io/github/license/denosaurs/deno_python)](https://github.com/denosaurs/deno_python/blob/master/LICENSE) | ||
|
||
Python interpreter bindings for Deno. | ||
|
||
```ts | ||
import { python } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { python } from "https://deno.land/x/[email protected].3/mod.ts"; | ||
|
||
const np = python.import("numpy"); | ||
const plt = python.import("matplotlib.pyplot"); | ||
|
@@ -23,7 +23,7 @@ plt.show(); | |
## Documentation | ||
|
||
Check out the docs | ||
[here](https://doc.deno.land/https://deno.land/x/[email protected].2/mod.ts). | ||
[here](https://doc.deno.land/https://deno.land/x/[email protected].3/mod.ts). | ||
|
||
## Python Installation | ||
|
||
|
@@ -54,10 +54,6 @@ If the module fails to find Python, you can add the path to the Python in the | |
|
||
## Other | ||
|
||
### Related | ||
|
||
- [python](https://www.python.org/) | ||
|
||
### Contribution | ||
|
||
Pull request, issues and feedback are very welcome. Code style is formatted with | ||
|