Python Runner

Write and run Python code instantly!
Python Runner is a handy tool for learning Python and running Python script for daily tasks.

Simply type Python code and press “⌘R” to run it, that is all!
You don’t event need to save the file first!

* Features

– Type and run Python code instantly
– Open and run Python script file
– Display output as plain text or HTML
– Supports Python CLI interaction (text output mode)
– You can specify the Python binary path in the preferences (“⌘,”)
– Auto indent and replacing tab with spaces
– Keyword completion (“⌘.”)

Python Runner is simple and quick. You can use it for daily tasks such as text processing, code generation or simply type some code to verify your ideas.

Download Python Runner

  1. I have downloaded Python3. How do I run Python3 with Python Runner? Your help is much appreciated.

    • Hi Paul, please change the Python path in “Preferences -> General -> Python path”.
      You may need to add the Python binary/library directories to “Preferences -> Working Directories” in order to allow Python Runner to access them.

  2. It cannot process unicode characters ..

    print(‘ř’)

    gives:

    UnicodeEncodeError: ‘ascii’ codec can’t encode character ‘\u0159’ in position 1: ordinal not in range(128)

    • Hi, please declare the file encoding in the following way:
      #!/usr/bin/python
      # -*- coding: utf-8 -*-
      print('ř')

      Thank you!

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

This site uses Akismet to reduce spam. Learn how your comment data is processed.