Python Output Format
Sublime Text plugin to format printed objects from Python code
Details
Installs
- Total 11K
- Win 7K
- Mac 2K
- Linux 2K
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 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 3 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 2 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 2 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 2 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 |
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.