Could anyone please suggest me a package that can beautify python dictionaries? Ie: input: (python dict) => output (python dict)
I’m not interested on using pprint.pformat
as the output is really ugly and I’d like to get the same output than prettyprinter… unfortunately I can’t use prettyprinter on SublimeText as it won’t install with the old python 3.3.5 (ie: i’ll get "colorama requires Python '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' but the running Python is 3.3.5"
error)
I was looking for something that provided a similar output to this https://codebeautify.org/python-formatter-beautifier or this https://www.cleancss.com/python-beautify/
Grrr… being stuck with python3.3.5 is a PITA
Thanks in advance.