Print types of nested structues
Project description
This package helps describe complex, nested Python data structures. Use the prettytype function to print the structure and quickly understand what type of object you have.
Install with: pip install prettytype
For example, let’s examine a complex JSON object from the internet:
import requests
import json
r = requests.get('https://openlibrary.org/api/books?bibkeys=ISBN:0385472579,LCCN:62019420&format=json')
data = json.loads(r.text)
print 'Data:', data
print
from prettytype import prettytype
print 'Type:', prettytype(data)
===>
Data: {u'ISBN:0385472579': {u'bib_key': u'ISBN:0385472579', ......
Type: {str: {str: str}}
prettytype shows that the API returns nested dictionaries with string keys.
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
prettytype-0.2.0.tar.gz
(3.0 kB
view details)
File details
Details for the file prettytype-0.2.0.tar.gz
.
File metadata
- Download URL: prettytype-0.2.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfe0fafe602c2167544a3e405e25fc3217f7caef39f44c0562da3ba6310a1277 |
|
MD5 | 550569549e832d384d6a404e375d4b7c |
|
BLAKE2b-256 | fe953793c7ed16bd8ff412a400a554b2d568688353effbd8bba707bef0c29cc1 |