Skip to main content

Python dict formatted dumper.

Project description

DictDumper

  The dictdumper project is an open source Python program works as a stream formatted output dumper for dict.

  • About
    • dictdumper.Dumper
    • dictdumper.JSON
    • dictdumper.PLIST
    • dictdumper.Tree
    • dictdumper.XML
    • dictdumper.HTML
  • Installation
  • Usage

About

  Currently, it supports following formats --

  • dictdumper.Dumper -- abstract base class of all dumpers
  • dictdumper.JSON -- dump JavaScript object notation (JSON) format file
  • dictdumper.PLIST -- dump Apple property list (PLIST) format file
  • dictdumper.Tree -- dump tree-view text (TXT) format file
  • dictdumper.XML -- dump extensible Mmarkup language (XML) file (base class)
  • dictdumper.HTML -- dump JavaScript file under Vue.js framework (DEPRECATED)

 

Installation:

Note that dictdumper supports Python versions 2.7 and all versions since 3.0

pip install dictdumper

 

Usage

dictdumper is quite easy to use. After installation, importation, and initialisation, you can simple call the instance to dump contents.

Take dictdumper.Tree for example

import dictdumper
dumper = dictdumper.Tree('out.txt')
test_1 = dict(
    foo = -1,                   # int
    bar = 'Hello, world!',      # string
    boo = dict(                 # dict
        foo_again = True,       # bool
        bar_again = b'bytes',   # bytes (b'\x62\x79\x74\x65\x73')
        boo_again = None,       # NoneType
    ),
)
dumper(test_1, name='test_1')
$ cat out.txt
PCAP File Tree-View Format

test
  |-- foo -> -1
  |-- bar -> hello
  |-- boo
        |-- foo_again -> True
        |-- bar_again -> 62 79 74 65 73
        |-- boo_again -> N/A
import datetime
test_2 = dict(
    foo = [1, 2.0, 3],          # list
    bar = (1.0, 2, 3.0),        # tuple
    boo = dict(                 # dict
        foo_again = 'a long long bytes',
                                # bytes
        bar_again = datetime.datetime.today(),
                                # datetime
        boo_again = -1.0,       # float
    ),
)
dumper(test_2, name='test_2')
$ cat out.txt
PCAP File Tree-View Format

test_1
  |-- foo -> -1
  |-- bar -> Hello, world!
  |-- boo
        |-- foo_again -> True
        |-- bar_again -> 62 79 74 65 73
        |-- boo_again -> N/A

test_2
  |-- foo
  |     |--> 1
  |     |--> 2.0
  |     |--> 3
  |-- bar
  |     |--> 1.0
  |     |--> 2
  |     |--> 3.0
  |-- boo
        |-- foo_again -> a long long bytes
        |-- bar_again -> 2018-03-08 17:47:35
        |-- boo_again -> -1.0

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

dictdumper-0.7.0.post1.tar.gz (68.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dictdumper-0.7.0.post1-py3.7.egg (28.3 kB view details)

Uploaded Egg

dictdumper-0.7.0.post1-py3.6.egg (28.3 kB view details)

Uploaded Egg

dictdumper-0.7.0.post1-py3.5.egg (28.7 kB view details)

Uploaded Egg

dictdumper-0.7.0.post1-py3.4.egg (28.7 kB view details)

Uploaded Egg

dictdumper-0.7.0.post1-py2.7.egg (28.2 kB view details)

Uploaded Egg

dictdumper-0.7.0.post1-pp35-none-macosx_10_14_x86_64.whl (19.2 kB view details)

Uploaded PyPymacOS 10.14+ x86-64

dictdumper-0.7.0.post1-pp27-none-macosx_10_14_x86_64.whl (19.2 kB view details)

Uploaded PyPymacOS 10.14+ x86-64

dictdumper-0.7.0.post1-cp37-none-manylinux1_x86_64.whl (21.4 kB view details)

Uploaded CPython 3.7

dictdumper-0.7.0.post1-cp37-none-macosx_10_14_x86_64.whl (19.2 kB view details)

Uploaded CPython 3.7macOS 10.14+ x86-64

dictdumper-0.7.0.post1-cp36-none-manylinux1_x86_64.whl (21.4 kB view details)

Uploaded CPython 3.6

dictdumper-0.7.0.post1-cp36-none-macosx_10_14_x86_64.whl (19.2 kB view details)

Uploaded CPython 3.6macOS 10.14+ x86-64

dictdumper-0.7.0.post1-cp35-none-manylinux1_x86_64.whl (21.4 kB view details)

Uploaded CPython 3.5

dictdumper-0.7.0.post1-cp35-none-macosx_10_14_x86_64.whl (19.2 kB view details)

Uploaded CPython 3.5macOS 10.14+ x86-64

dictdumper-0.7.0.post1-cp34-none-manylinux1_x86_64.whl (21.4 kB view details)

Uploaded CPython 3.4

dictdumper-0.7.0.post1-cp34-none-macosx_10_14_x86_64.whl (19.2 kB view details)

Uploaded CPython 3.4macOS 10.14+ x86-64

dictdumper-0.7.0.post1-cp27-none-manylinux1_x86_64.whl (21.4 kB view details)

Uploaded CPython 2.7

dictdumper-0.7.0.post1-cp27-none-macosx_10_14_x86_64.whl (19.2 kB view details)

Uploaded CPython 2.7macOS 10.14+ x86-64

File details

Details for the file dictdumper-0.7.0.post1.tar.gz.

File metadata

  • Download URL: dictdumper-0.7.0.post1.tar.gz
  • Upload date:
  • Size: 68.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1.tar.gz
Algorithm Hash digest
SHA256 33812e46a142215fef2cc1eb788af532828ccfd29bfe0c623d4616110108f720
MD5 3824e2f28044a0a6cd8df150219ba679
BLAKE2b-256 352ff183561a516643a0fc0117a18f2d921ef9f3a0cb4604a72f0d1e8089028c

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-py3.7.egg.

File metadata

  • Download URL: dictdumper-0.7.0.post1-py3.7.egg
  • Upload date:
  • Size: 28.3 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-py3.7.egg
Algorithm Hash digest
SHA256 8c1280c1a6c569d83bc342259160991ffeb7f45473401d50275d4f4049e7640a
MD5 e0bbef2b375c1d57ec23b0343972591c
BLAKE2b-256 170a309d4f0b530f6973eb39613b35cb3d6e16e8d271fb3448f43c52eb160dc9

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-py3.6.egg.

File metadata

  • Download URL: dictdumper-0.7.0.post1-py3.6.egg
  • Upload date:
  • Size: 28.3 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-py3.6.egg
Algorithm Hash digest
SHA256 21e18b186a83d73591327bdfde6bd03e359e81fbe6718d086d8410a1f355e7ef
MD5 836fca5f5b244a55620ca4d67849d6c7
BLAKE2b-256 87025184c0d64caa3b3ff65c45094526f6a63d08a3079b9e88d48540eaa40bff

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-py3.5.egg.

File metadata

  • Download URL: dictdumper-0.7.0.post1-py3.5.egg
  • Upload date:
  • Size: 28.7 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-py3.5.egg
Algorithm Hash digest
SHA256 da1bb82d3cdeebb766cdd9dcca68d431ddd7bc63100f7c45355d3c9668b79fd5
MD5 179a0dcb6a3a47530eefd817608d1f37
BLAKE2b-256 c93bebe4f0611d6aae4fa39bcab31db04fc0b591dae753838c826de1946d1a07

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-py3.4.egg.

File metadata

  • Download URL: dictdumper-0.7.0.post1-py3.4.egg
  • Upload date:
  • Size: 28.7 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-py3.4.egg
Algorithm Hash digest
SHA256 2ebc6d298ef24d08b448a009d7bca4ad0dd28977c556109ec90afe459b7a3e58
MD5 82dd3601f2e54222151b9e37101c5976
BLAKE2b-256 2a766075af4aadba4e939ce0f677bc9d208345b9ded02f420b675c1d44ac4ad7

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-py2.7.egg.

File metadata

  • Download URL: dictdumper-0.7.0.post1-py2.7.egg
  • Upload date:
  • Size: 28.2 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-py2.7.egg
Algorithm Hash digest
SHA256 ce595f61e20184be97db8c2bb4ac2a881b0ade4174076a96cd70d36d3e82b4c1
MD5 db8162854c19d5f54959eec8bd75ed4b
BLAKE2b-256 26abc7f0a7a91fcf803df3568336fb668e11dbc61d0c3e64a7bb89d3f850c0e3

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-pp35-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-pp35-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.2

File hashes

Hashes for dictdumper-0.7.0.post1-pp35-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e497528d3b410af77bc9e534efdcd2b80e52c514076d90df4327f39eef41ff1a
MD5 eed30ff5b9d701f8af6532d6b2118eda
BLAKE2b-256 29839715999ebcdfa2ba42f6672eec1ef25e816ee38d03a7ce3dd83357541fc1

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-pp35-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-pp35-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: PyPy, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-pp35-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7ce42849b9fc5e7c2cdf0b8f51e4027bc54ce71365dbb413c7d2c5e9b1454033
MD5 7c179f1bfcdb33ebfb041afdf186b948
BLAKE2b-256 af8f15be9a1a3ce7aea93eade92769c8bdd8d7c2afbcd7a310b9055b7b7d7cd5

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-pp27-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-pp27-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.2

File hashes

Hashes for dictdumper-0.7.0.post1-pp27-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e700505676e37b626e4ed6f7b70f30efecab03b6dd099cdab41fe2fadcf430d9
MD5 e8202dbda157fc624b91872c9c4fa345
BLAKE2b-256 e544251f2d2fa5613d63a33bd530db7f2431c4faa9fe348d7ed6b2c7b4d5def3

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-pp27-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-pp27-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: PyPy, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-pp27-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6b4c9a00b00dcff92d3cff969e2fae16e62bc3c8d3416030b580f21a633c823c
MD5 4abfcb710763bebddb4b9fe5d3d35375
BLAKE2b-256 96c891b20607abae90c3b8c196363c8150f671d423d121b600461ae0e602d587

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp37-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp37-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: CPython 3.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.2

File hashes

Hashes for dictdumper-0.7.0.post1-cp37-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5867076c1e25be9ee7632fb8160f19b0b54458bf6c6e89bfe60c10a7bdffad8d
MD5 b02c59f337de09ca433dfed3d4252886
BLAKE2b-256 0db58490b0a1e6ea345480d1e97b01f451c2a8ace3dc30e8dda5b9078312a03a

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp37-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp37-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 3.7, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-cp37-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fc992f6fcdf517e5d620776672bdeca0cb1e1c4d0e0874941ea4dedb052d0b57
MD5 7ed836021f5520661ecd4ccb632b434b
BLAKE2b-256 cd6bff805d43e7531bb7a0b9366164a82ba8cec90227eea6b3aa95c6ba08e7cc

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp36-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp36-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: CPython 3.6
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.2

File hashes

Hashes for dictdumper-0.7.0.post1-cp36-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 01f148f9b912fccec5bf45c483fa53de7469e8ea8845524f0db3a54b64deb40e
MD5 4b2ffecd80e828fee4002fa7b8740537
BLAKE2b-256 0795864f286b946da3b5d25300704fd269eb90619ebc0a227b0e87ddb6d36b54

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp36-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp36-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 3.6, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-cp36-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c3841b103f0b0eb37b067fc760a65dcb44709a5a60518703779fbc83bced8adb
MD5 8a3600ce82b7b13957445cc9a9ba315b
BLAKE2b-256 6d3a80a1a2ba1c77e424d1ea8007c587c5aac3112e9eecc92b82be61ee8bd33a

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp35-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp35-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: CPython 3.5
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.2

File hashes

Hashes for dictdumper-0.7.0.post1-cp35-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c3e8143d4099b3c61095283c9782a61d02c9ae872785bd0c225844cb5e81ef8
MD5 6971b73f6bd50bd6770bd6759792256b
BLAKE2b-256 29bffd5179d5915c323ecaad224ed1d458dd067c543ef0494631939ff183874e

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp35-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp35-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 3.5, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-cp35-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0a85a576ea6e0ea257226a088ae918b2e07993f995165a5f6e32d9cf91c4de81
MD5 2966af01f46944087cad04d0b852478c
BLAKE2b-256 cfaed04be2ed890bfc2946367cefc8a284c98e6892d6efe1734c3a9e6be911bb

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp34-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp34-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: CPython 3.4
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.2

File hashes

Hashes for dictdumper-0.7.0.post1-cp34-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3249c03993574c193b9be716b7cbc27c14426cac2878445e7f75455f0bda7b3d
MD5 6b35aaf22942143635c0b4caab5c7d15
BLAKE2b-256 5534a371446b8bb92814b02ce4b68bdd69c45574f22b876d550cc800bc56650a

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp34-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp34-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 3.4, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-cp34-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a07eaddc93efbdc846e9af4d2c122f5142677fb4a99385334edc8b36ce977e73
MD5 93eae8c4b93e469fba22f3885f00204c
BLAKE2b-256 88ab488ade530b8cfdcc9830da6ab363a7f6ce56a798163513762a07972ae63a

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp27-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp27-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: CPython 2.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.2

File hashes

Hashes for dictdumper-0.7.0.post1-cp27-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e784c04a0c3f7e08850060df55d4f8ca8b8c7eb03bbb9dbd0afb2745991381ad
MD5 1314e467c67a692171a53f3fa46d5fd2
BLAKE2b-256 7cd57d9353e5e4ec371993a174d02ff2820d7b7e2125e5aea96a184196928de9

See more details on using hashes here.

File details

Details for the file dictdumper-0.7.0.post1-cp27-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dictdumper-0.7.0.post1-cp27-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 2.7, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.1

File hashes

Hashes for dictdumper-0.7.0.post1-cp27-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5204d6c8e889ca1fb02e060597997056057f73bbbab484217f52afdcf123a64b
MD5 f798df45ca8b5ad7dcd6da4a727b3bb4
BLAKE2b-256 99f820734f15d1a10f542a9710b1aa4f89d3faca0870f871b3303d68c07537cd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page