ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Python Output Format

by Tenzer ALL

Sublime Text plugin to format printed objects from Python code

Details

Installs

  • Total 11K
  • Win 7K
  • Mac 2K
  • Linux 2K
Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25 Nov 24 Nov 23 Nov 22 Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8
Windows 0 1 0 0 1 1 2 1 1 0 0 0 0 0 0 1 0 1 2 1 0 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 3 0
Mac 0 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 1 0 0 1
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Python Output Format

A simple plugin for Sublime Text inspired by Pretty JSON for formatting printed output from Python programs into a more easily readable format.

The plugin simply adds one action, cleverly named “Python Output Format”, which either takes the text you have selected, or, if nothing is selected, the entire active document, and attempts to format it in a way that is more easy to read.

It will for instance turn this blob:

{'details': 'https://github.com/Tenzer/PythonOutputFormat', 'releases': [{'sublime_text': '*', 'tags': True}], 'name': 'Python Output Format'}

into this:

{
    'details': 'https://github.com/Tenzer/PythonOutputFormat',
    'releases': [
        {
            'sublime_text': '*',
            'tags': True 
        }
    ],
    'name': 'Python Output Format'
}

Installation

The package is available via Package Control under the name “Python Output Format”.

Keyboard Shortcut

If you prefer to have a keyboard shortcut to trigger the “Python Output Format” action with, you can add it by opening your user keybindings in Sublime Text and add an entry like the following to the array:

{ "keys": ["super+ctrl+y"], "command": "python_output_format" }

You can of course specify the keyboard combination you prefer. Save the file and it will take effect immediately.