prettyprint print list/dict/tuple object prettily
Project description
This module privides pretty printing for list/dict/tuple python object.
Simple example of usage is followings
>>> from prettyprint import pp >>> target = ['want pretty printing', '望麗出力'] >>> print target ['want pretty printing', '\xe6\x9c\x9b\xe9\xba\x97\xe5\x87\xba\xe5\x8a\x9b'] # what a ugly print especially in japanese >>> pp(target) # now we can see pretty print with pp [ "want pretty printing", "望麗出力" ] >>> target_dict = {'order': {'en':'pretty print', 'ja':'綺麗に出力せよ'}} >>> print target_dict # what a hell again {'order': {'en': 'pretty print', 'ja': '\xe7\xb6\xba\xe9\xba\x97\xe3\x81\xab\xe5\x87\xba\xe5\x8a\x9b\xe3\x81\x9b\xe3\x82\x88'}} >>> pp(target_dict) # pp again { "order": { "en": "print prettily", "ja": "綺麗に出力せよ" } }
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
prettyprint-0.1.2.tar.gz
(2.0 kB
view details)
File details
Details for the file prettyprint-0.1.2.tar.gz
.
File metadata
- Download URL: prettyprint-0.1.2.tar.gz
- Upload date:
- Size: 2.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da14b86d5f3db4772e3b095bd5e6800b49e89301ef6c9d60355276c77a6abbdd |
|
MD5 | 8f7ecc698a0391e9c1a7c5a6fc4c9f91 |
|
BLAKE2b-256 | 5d5fb8d1124039040ee908d25b2b9a232653881db97f818c53b450ec92f81bc3 |