Package org.ggp.base.apps.consoles

Source Code of org.ggp.base.apps.consoles.PythonConsole

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:
*
* >> 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())");
    }
}
TOP

Related Classes of org.ggp.base.apps.consoles.PythonConsole

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.