ptpython!

You will need version 4 or higher of `firefox` https://www.mozilla.org/firefox
to run Pencil as a Firefox Extension. Linux users will need version 4 or higher of either `firefox`, `iceweasel` or `xulrunner` https://developer.mozilla.org/en-US/docs/Mozilla/Projects/XULRunner,
or version 25 or higher of `palemoon` https://www.palemoon.org/.
The Windows installer and OS X archive has everything you need built-in. Windows, Linux, OS X & Firefox Packages are available for download from the Releases Page https://github.com/prikhi/pencil/releases.
You can also install the Firefox Add-on from the Mozilla Add-on Repository https://addons.mozilla.org/en-US/firefox/addon/pencil-prototyping/.
To install the OS X package, unzip the archive and copy the `Pencil.app` folder t

ptpython alternatives

  • IPython

  • IPython is an interactive shell for the Python programming language that offers enhanced introspection, additional shell syntax, syntax highlighting, tab completion and rich history. It is a component of the SciPy package.

    tags: python python-shell
  • IDLE

  • Default IDE which come installed with the Python programming language. It aims to be simple and intuitive, and is especially useful for programmers just learning Python. The editor has syntax highlighting, search features, class browsers, and runs Python scripts in a separate, protected process.

    tags: ide python python-ide
  • bpython

  • bpython is a fancy interface to the Python interpreter for Unix-like operating systems (I hear it works fine on OS X). It is released under the MIT License. It has the following features:

    tags: python python-shell
  • Dreampie

  • DreamPie was designed from the ground up to bring you a great interactive Python experience:- DreamPie features a new concept for an interactive shell: the window is divided into the history box, which lets you view previous commands and their output, and the code box, where you write your code. This allows you to edit any amount of code, just like in your favorite editor, and execute it when it's ready. You can also copy code from anywhere, edit it and run it instantly.- The Copy code only command will copy the code you want to keep, so you can save it in a file. The code is already formatted nicely with a four-space indentation.- Features automatic completion of attributes and file names.- Automatically displays function arguments and documentation.- Keeps your recent results in the result history, for later user.- Can automatically fold long outputs, so you can concentrate on what's important.- Lets you save the history of the session as an HTML file, for future reference. You can then load the history file into DreamPie, and quickly redo previous commands.- Automatically adds parentheses and optionally quotes when you press space after functions and methods. For example, execfile fn automatically turns into execfile("fn").- Supports interactive plotting with matplotlib. (You have to set "interactive: True" in the matplotlibrc file for this to work.)- Supports Python 2.5, 2.6, 2.7, Jython 2.5, IronPython 2.6 and Python 3.1.- Works on Windows, Linux and Mac. (Mac support requires MacPorts.)- Extremely fast and responsive.- Free software licensed under GPL version 3. ยป

    tags: python python-shell