Skip to content

Some other python library shares the same objective ? #160

Answered by wiwichips
GabCores asked this question in Q&A
Discussion options

You must be logged in to vote

Hey @GabCores,

JsPyBridge (or "javascript" on pypi) is a similar project to PythonMonkey but has several differences in its implementation and API:

Most notably, under the hood JsPyBridge runs a separate nodejs process which communicates with the user's Python process. This comes with a severe performance penalty as data is copied whenever passed. PythonMonkey passes data by reference whenever possible meaning the cost of transferring information between Python and JavaScript is almost zero. Since references are copied, modifying data passed from Python into JavaScript (or vice versa) will not change the original reference in JsPyBridge but will as expected in JavaScript.

Here is a snippe…

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
3 replies
@almahdi404
Comment options

@wiwichips
Comment options

@almahdi404
Comment options

Answer selected by Xmader
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants
Converted from issue

This discussion was converted from issue #159 on August 03, 2023 21:33.