0.0.2 • Published 7 years ago

pyjsx v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

PYJSX

Python Javascript Extensions allows you to leverage all the functionalities of python in Javascript, acting as a form of virtual transpiler so you can use python methods like str.isalpha() or str.capitalize() or {}.iteritems from your javascript applications.

Installation

npm install pyjsx --save

Usage

//require your python types.
var {str, dict, list} = require('pyjsx');


var myName = str("raymond");
var modifedName = myName.capitalize();