Skip to content

Commit 28419b0

Browse files
author
Ryan Munro
committed
Link to type script documentation
1 parent 8fc9d39 commit 28419b0

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Most robust and simple Python bridge. [Features](#features), and [comparisons](#comparisons) to other Python bridges below, supports Windows.
44

5+
# API
6+
7+
[View documentation for TypeScript examples.](README.ts.md)
8+
59
```
610
npm install python-bridge
711
```
@@ -23,8 +27,6 @@ python`sorted(${list})`.then(x => assert.deepEqual(x, list.sort()));
2327
python.end();
2428
```
2529

26-
# API
27-
2830
## var python = pythonBridge(options)
2931

3032
Spawns a Python interpreter, exposing a bridge to the running processing. Configurable via `options`.

README.ts.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Most robust and simple Python bridge. [Features](#features), and [comparisons](#comparisons) to other Python bridges below, supports Windows.
44

5+
# API for TypeScript
6+
7+
[View documentation with TypeScript examples.](README.ts.md)
8+
59
```
610
npm install python-bridge
711
```
@@ -27,8 +31,6 @@ async function main() {
2731
main().catch(console.error);
2832
```
2933

30-
# API
31-
3234
## var python = pythonBridge(options)
3335

3436
Spawns a Python interpreter, exposing a bridge to the running processing. Configurable via `options`.

0 commit comments

Comments
 (0)