org.ggp.base.apps.consoles.PythonConsole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alloy-ggp-base Show documentation
Show all versions of alloy-ggp-base Show documentation
A modified version of the GGP-Base library for Alloy.
The newest version!
package org.ggp.base.apps.consoles;
import org.python.util.PythonInterpreter;
/**
* PythonConsole is a Jython-based app that lets you interact with a Python
* console that has full access to all of the Java classes in the project.
* This allows you to quickly experiment with the classes, without having to
* write a full-blown Java program. There are also helpful scripts so that
* you can get started quickly.
*
* For example, try out:
*
* {@code >> display_random_walk(load_game('ticTacToe'))}
*
* This will load the game Tic-Tac-Toe and play through it randomly.
*
* This uses the JythonConsole implementation of a console with all of the
* nice features like history, tab completion, et cetera. JythonConsole is an
* external open source project, accessible at:
*
* http://code.google.com/p/jythonconsole/
*
* The license for JythonConsole is available in the licenses/ directory.
*
* @author Sam
*/
public class PythonConsole {
public static void main(String[] args) {
PythonInterpreter interpreter = new PythonInterpreter();
interpreter.exec("from scripts import *");
interpreter.exec("import external.JythonConsole.console");
interpreter.exec("external.JythonConsole.console.main(locals())");
}
}