No project description provided
Project description
print-dict
Motivation
Apparently, pretty-printing nested python dictionaries with values such as classes and functions (where you can't use json.dumps) is
not as straightforward as you would think.
See: https://stackoverflow.com/questions/3229419/how-to-pretty-print-nested-dictionaries
This library tries to make it a little bit easier.
Install or Upgrade
$ pip install -U print-dict
Usage
from print_dict import pd
pd({'key': 'value'})
# ------------------------
# Output:
# {
# 'key': 'value'
# }
# ------------------------
# Or
from print_dict import print_dict
print_dict({'key': 'value'})
# Get the string without printing
from print_dict import format_dict
string = format_dict({'key': 'value'})
Example 1
Code:
from print_dict import pd
dict1 = {
'key': 'value'
}
pd(dict1)
Output:
{
'key': 'value'
}
Example 2
Code:
from print_dict import pd
class Object1:
pass
class Object2:
def __repr__(self):
return "<Object2 info>"
def custom_method():
pass
object1 = Object1()
data = {
"one": "value-one",
"two": "value-two",
"three": "value-three",
"four": {
'1': '1', '2': '2', '3': [1, 2, 3, 4, 5], '4': {
'method': custom_method,
'tuple': (1, 2),
'unicode': u'\u2713',
'ten': 'value-ten',
'eleven': 'value-eleven',
'3': [1, 2, 3, 4]
}
},
"object1": object1,
"object2": Object2(),
"class": Object1
}
pd(data)
Output:
{
'one': 'value-one',
'two': 'value-two',
'three': 'value-three',
'four': {
'1': '1',
'2': '2',
'3': [1, 2, 3, 4, 5],
'4': {
'method': <function custom_method at 0x7ff6ecd03e18>,
'tuple': (1, 2),
'unicode': '✓',
'ten': 'value-ten',
'eleven': 'value-eleven',
'3': [1, 2, 3, 4]
}
},
'object1': <__main__.Object1 object at 0x7ff6ecc588d0>,
'object2': <Object2 info>,
'class': <class '__main__.Object1'>
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file print-dict-0.1.19.tar.gz.
File metadata
- Download URL: print-dict-0.1.19.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.6.10 Linux/5.4.0-66-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dff9bcd6279fe526bb7b13b392a373d88ed9d7647c2985b2457c475d7730d1d
|
|
| MD5 |
576921bfc92c1ea6b8c284aa28b35305
|
|
| BLAKE2b-256 |
6ab60f4192508ef670e39967f78885cdf138d89885bd87d6edec34fdfa9a4227
|
File details
Details for the file print_dict-0.1.19-py3-none-any.whl.
File metadata
- Download URL: print_dict-0.1.19-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.6.10 Linux/5.4.0-66-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b5c88df1f436c31c07c7a55e68ec6ac88a0554a0b793438e8b97eb1429cd4fc
|
|
| MD5 |
74fd952b3d7a117b9d50c9b2a0494adc
|
|
| BLAKE2b-256 |
9f9f42bb270e27224389985ec8b1772c042cf03892b0c4a3cfba927befbd16e1
|