Skip to main content

Tools to control JS from Python (jy for Js pY or Js python proxY)

Project description

jy

Tools to control JS from Python.

(jy stands for "Js pY" or "Js python proxY".)

To install: pip install jy

Documentation

Example

Say you have the test01.js (whose contents are displayed in the next subsection).

from jy import add_js_funcs
js = add_js_funcs("./test01.js")

js has two methods called bar and foo

assert sorted([x for x in dir(js) if not x.startswith('_')]) == [
    'add_one', 'bar', 'foo', 'obj', 'prop', 'with_arrow_func', 'with_let'
]

They mirror the signatures of the underlying JS functions

from inspect import signature
assert str(signature(js.foo)) == "(a, b='hello', c=3)"
assert str(signature(js.bar)) == "(green, eggs='food', and=True, ham=4)"

Calling this function returns a string (the code to call the underlying JS function)

assert js.foo(1, 'hi', 5) == 'foo(1, "hi", 5)'

Notice that you can use positional or keyword arguments Also, notice that though "prop" is the name of js's attribute, the function call string does indeed use the original full reference: func.assigned.to.nested.prop

assert js.prop('up') == (
    'func.assigned.to.nested.prop("up")'
)

Notice that the python (signature) defaults are applied before translating to JS

assert js.bar(42) == 'bar(42, "food", true, 4)'
alt_js = add_js_funcs(test01_js_code, apply_defaults=False)

You can opt not to do this by specifying apply_defaults=False This will result in only injecting those inputs you specify in the js call string, which will have the effect of letting JS apply its defaults, what ever they are

alt_js = add_js_funcs(test01_js_code, apply_defaults=False)
assert alt_js.bar(42) == 'bar(42)'

Appendix

The test01.js file's contents

// "test01.js" file
// Straight function definition
function foo(a, b="hello", c= 3) {
    return a + b.length * c
}

// Straight function definition
function bar(green, eggs = 'food', and= true, ham= 4) {
    if (and) return eggs.length * ham
}

// global callable variable
add_one = function (x) {
    return x + 1
}

// does the presence of a let break the parser?
let with_let = function (x) {
    return x + 2
}

// with arrow func
// (also testing if const breaks the parse)
const with_arrow_func = (y, z= 1) => y * z

// function assigned to a nested property
func.assigned.to.nested.prop = function (x) {
    return x + 3
}

// function nested in some other function, assigned to a variable
var obj = (function (exports) {
    function bar(name) {
        return name + "__"
    }
})

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jy-0.1.13.tar.gz (17.7 kB view details)

Uploaded Source

Built Distribution

jy-0.1.13-py3-none-any.whl (19.6 kB view details)

Uploaded Python 3

File details

Details for the file jy-0.1.13.tar.gz.

File metadata

  • Download URL: jy-0.1.13.tar.gz
  • Upload date:
  • Size: 17.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for jy-0.1.13.tar.gz
Algorithm Hash digest
SHA256 e2df7186d56e26f735a5b6c561f6cd1405b6a3dd43bbef31226580123e59277c
MD5 cc555430ecf53f40e8b32ef9d3e5f41f
BLAKE2b-256 cf1c7789284d30d03af71daae3dd2b774b1e7586898ffcc163544bfd9303eae6

See more details on using hashes here.

File details

Details for the file jy-0.1.13-py3-none-any.whl.

File metadata

  • Download URL: jy-0.1.13-py3-none-any.whl
  • Upload date:
  • Size: 19.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for jy-0.1.13-py3-none-any.whl
Algorithm Hash digest
SHA256 09565dbd6a52197d9f734108a0b37845f2b4cb612c2902d4c53970df15317837
MD5 00e8e56e6b1e80523254362aacbd69bc
BLAKE2b-256 4fa1ba136f77e69a92c386127bf1ab0547eb82d829108e0c3a466c4d01a55623

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page