Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/lispyclouds/medusa

An attempt at making Python stronger and faster like Medusa herself!
https://github.com/lispyclouds/medusa

Last synced: about 18 hours ago
JSON representation

An attempt at making Python stronger and faster like Medusa herself!

Lists

README

        

## Medusa

[![Join the chat at https://gitter.im/rahul080327/medusa](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/rahul080327/medusa?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

![alt tag](https://raw.github.com/rahul080327/medusa/master/icon.png)

An attempt at making Python stronger and faster like Medusa herself!

Python being an interpreted language has its pros and cons and the aim is to fix one of the most obvious cons of Python: its execution speed.
We all love Python for its simplicity and flexibility but when it comes to writing large volumes of code involving complex operations and recursions Python somewhat falls short compared to the other native/JIT languages.

In late 2012, Google came up with Dart, a language aiming for the unification of server and client side web development and scalable apps. Along with it came The Dart Virtual Machine. A hyper fast VM which builds upon the V8 js engine and even outperforms it. We decided why not let Python have a go on this?

The main aim behind creating the Medusa project is giving a typless and flexible language like Python a faster execution environment while still maintaining all its flexibility which we all love. Numerous projects such as the ShedSkin project which converts implicitly typed Python to C++ have tried doing it, but have put some or the other restriction on the input Python code. The Medusa project aims at running pre-existing Python code without any or minimal modification at a much faster rates compared to the usual implementations.

Still in its nascent stages and implemented using Qt/C++, Python and Dart, the project works by compiling Python code to a highly optimized Dart code in real time, persistently caching it and letting it rip on the Dart VM. The Dart VM like V8 compiles the dart code directly to machine code and using its vast array of runtime optimizations runs at a much higher speed compared to the CPython implementation and at times upto a 1000 - 1500% faster while maintaining all the features Python offers. Apart from this Python is further enriched with extra features provided by the Dart VM and you can do more stuff with Python which isn't possible with the vanilla Python.

## Installing

Ubuntu/Ubuntu-derived Linux users:

Simply run ./INSTALL after cloning this repo on your Ubuntu based Linux distro. Thats it. All dependencies are installed, code compiled and paths setup automatically.

Mac OSX Users (packaged app):
Coming Soon ;) Thanks for your patience.

Mac OSX Users (building from source):
* Install Xcode if not installed (Sorry for the bandwidth hogging...)
* Install python 2.7.x if not installed and add it to PATH
* Download and Install latest Qt5 for Mac from [here](http://qt-project.org/downloads) and add qmake and moc to PATH
* Download the latest Dart SDK from [here](https://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-macos-ia32-release.zip), unzip and add the dart executable to PATH
* Clone this repo and simply run ./INSTALL.mac
* After a succesful compile medusavm binary is available in /usr/bin/ for use
* For updates and subsequent builds, fetch changes and just run ./INSTALL.mac

Yeah, I finally have a MacBook! ^_^

Others:
* Install C++ compilers and Make tools
* Install Qt5 build tools and libs
* Install Dart SDK
* Install Python 2.7.x
* Rum moc on inc/transform.h to inc/transform_moc.h
* Run qmake on medusa.pro
* Run make
* Use the medusavm executable

## Running

Using Medusa:
* Medusa is available as medusavm after a successful buid and install
* Python programs can be run by passing them as parameters: medusavm hello.py
* Medusa can be stopped after the Dart compile phase by passing a -c switch: medusavm -c hello.py. The Dart code is obtained in hello.dart in the same directory.
* Python files can be globally installed into Medusa for imports by other files: medusavm -install python_file
* Help is at: medusavm --help

## Documentation

The medusa's documentation for developers and users can be accessed [here](http://medusa.readthedocs.org/)

## Contributing

We'd love to have your help in making Medusa better and Python faster. Any and all contributions are welcome. Frankly speaking there's still a hell lot to do.

## License

The BSD 3-Clause License

Copyright (c) 2013-2014, Rahul De, Apoorv Agarwal and Aakash Giri. VIT University
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## Fear and Respect her at the same time!

![alt tag](https://raw.github.com/rahul080327/medusa/master/icon.jpg)

## Just Kidding, Happy Pythoning Yo!