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