This library is no longer maintananced (Reason). Bugs are not be fixed (even if they are trivial or essential).
We suggest to use other library or to make a fork.
Python-CoffeeScript is a bridge to the JS CoffeeScript compiler.
>>> import coffeescript
>>> print(coffeescript.compile('add = (a, b) -> a + b'))
(function() {
var add;
add = function(a, b) {
return a + b;
};
}).call(this);
$ pip install CoffeeScript
or
$ easy_install CoffeeScript
The latest version of coffeescript.js (the script for browser <script type="text/coffeescript"> tags) can be download from http://coffeescript.org/v2/browser-compiler/coffeescript.js
Released under the MIT license. See LICENSE for details.
- Updated README (no code changes).
- Updated README (no code changes).
- Corrected a bug due to wrong file-path.
- Made zip-safe.
- Updated coffeescript.js to v2.0.1.
- Updated coffeescript.js to v2.0.0.
- Updated coffee-script.js to v1.10.0.
- Updated coffee-script.js to v1.9.3.
- Updated coffee-script.js to v1.9.1.
- Updated coffee-script.js to v1.9.0.
- Dropped support for Python v2.6 and v3.1.
- Supported Python v3.3 and v3.4.
- Updated coffee-script.js to v1.8.0.
- Updated coffee-script.js to v1.7.1.
- Updated coffee-script.js to v1.6.3. Added download_link to setup.py.
- Updated coffee-script.js to v1.6.1.
- Updated coffee-script.js to v1.5.0.
- Made compile_file to accept plural files and Added some utility functions.
- Updated coffee-script.js to v1.4.0.
- Updated coffee-script.js to v1.3.3.
- Updated coffee-script.js to v1.3.1.
- Fixed some small problem in setup.py.
- First release.