Simple JavaScript interpreter for Python
Project description
DukPy is a simple javascript interpreter for Python built on top of duktape engine without any external dependency. It comes with a builtin CoffeeScript compiler for convenience and usage example.
Dukpy has been tested on Python 2.7 and Python 3.4, dukpy is currently not production ready and might actually crash your program as it is mostly implemented in C.
CoffeeScript Compiler
Using the coffeescript compiler is as easy as running:
>>> import dukpy >>> dukpy.coffee_compile(''' ... fill = (container, liquid = "coffee") -> ... "Filling the #{container} with #{liquid}..." ... ''') '(function() {\n var fill;\n\n fill = function*(container, liquid) {\n if (liquid == null) {\n liquid = "coffee";\n }\n return "Filling the " + container + " with " + liquid + "...";\n };\n\n}).call(this);\n'
EcmaScript6 BabelJS Transpiler
To compile ES6 code to ES5 for everyday usage you can use dukpy.babel_compile:
>>> import dukpy >>> dukpy.babel_compile(''' ... class Point { ... constructor(x, y) { ... this.x = x; ... this.y = y; ... } ... toString() { ... return '(' + this.x + ', ' + this.y + ')'; ... } ... } ... ''') '"use strict";\n\nvar _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); };\n\nvar _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };\n\nvar Point = (function () {\n function Point(x, y) {\n _classCallCheck(this, Point);\n\n this.x = x;\n this.y = y;\n }\n\n _prototypeProperties(Point, null, {\n toString: {\n value: function toString() {\n return "(" + this.x + ", " + this.y + ")";\n },\n writable: true,\n configurable: true\n }\n });\n\n return Point;\n})();\n'
The DukPY based BabelJS compiler also provides a WebAssets ( http://webassets.readthedocs.org/en/latest/ ) filter to automatically compile ES6 code in your assets pipeline. You register this filter as babeljs within WebAssets using:
from webassets.filter import register_filter from dukpy.webassets import BabelJS register_filter(BabelJS)
Which makes the filter available with the babeljs name.
NOTE: When using the BabelJS compiler for code that needs to run in the browser, make sure to add https://cdnjs.cloudflare.com/ajax/libs/babel-core/4.6.6/browser-polyfill.js dependency.
Using the JavaScript Interpreter
Using dukpy is as simple as calling the dukpy.evaljs function with the javascript code:
>>> import dukpy >>> dukpy.evaljs("var o = {'value': 5}; o['value'] += 3; o") {'value': 8}
The evaljs function executes the javascript and returns the resulting value as far as it is possible to encode it in JSON.
If execution fails a dukpy.JSRuntimeError exception is raised with the failure reason.
Passing Arguments
Any argument passed to evaljs is available in JavaScript inside the dukpy object in javascript. It must be possible to encode the arguments using JSON for them to be available in Javascript:
>>> import dukpy >>> >>> def sum3(value): ... return dukpy.evaljs("dukpy['value'] + 3", value=value) ... >>> sum3(7) 10
Running Multiple Scripts
The evaljs function supports providing multiple source codes to be executed in the same context.
Multiple script can be passed in a list or tuple:
>>> import dukpy >>> dukpy.evaljs(["var o = {'value': 5}", ... "o['value'] += 3", ... "o"]) {'value': 8}
This is useful when your code requires dependencies to work, as you can load the dependency and then your code.
This is actually how the coffeescript compiler is implemented by DukPy itself:
def coffee_compile(source): with open(COFFEE_COMPILER, 'r') as coffeescript_js: return evaljs((coffeescript_js.read(), 'CoffeeScript.compile(dukpy.coffeecode)'), coffeecode=source)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dukpy-0.0.1.tar.gz
.
File metadata
- Download URL: dukpy-0.0.1.tar.gz
- Upload date:
- Size: 848.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6e1a4b8061851d9987ab4c2e520be8c93df7d7fe37d68ab7685aae4b273b9fb |
|
MD5 | 6ed92da455a2151bb685d796625ae860 |
|
BLAKE2b-256 | db84816a0be933b7c2f3820eae5dd741b4da2c6144f71dff1e59c5e5f58ee993 |