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.post2.tar.gz (68.9 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.post2-py3.7.egg (28.7 kB view details)

Uploaded Egg

dictdumper-0.7.0.post2-py3.6.egg (28.6 kB view details)

Uploaded Egg

dictdumper-0.7.0.post2-py3.5.egg (29.1 kB view details)

Uploaded Egg

dictdumper-0.7.0.post2-py3.4.egg (29.1 kB view details)

Uploaded Egg

dictdumper-0.7.0.post2-py2.7.egg (28.5 kB view details)

Uploaded Egg

dictdumper-0.7.0.post2-pp35-none-macosx_10_14_x86_64.whl (19.6 kB view details)

Uploaded PyPymacOS 10.14+ x86-64

dictdumper-0.7.0.post2-pp27-none-macosx_10_14_x86_64.whl (19.6 kB view details)

Uploaded PyPymacOS 10.14+ x86-64

dictdumper-0.7.0.post2-cp37-none-manylinux1_x86_64.whl (21.7 kB view details)

Uploaded CPython 3.7

dictdumper-0.7.0.post2-cp37-none-macosx_10_14_x86_64.whl (19.6 kB view details)

Uploaded CPython 3.7macOS 10.14+ x86-64

dictdumper-0.7.0.post2-cp36-none-manylinux1_x86_64.whl (21.7 kB view details)

Uploaded CPython 3.6

dictdumper-0.7.0.post2-cp36-none-macosx_10_14_x86_64.whl (19.6 kB view details)

Uploaded CPython 3.6macOS 10.14+ x86-64

dictdumper-0.7.0.post2-cp35-none-manylinux1_x86_64.whl (21.7 kB view details)

Uploaded CPython 3.5

dictdumper-0.7.0.post2-cp35-none-macosx_10_14_x86_64.whl (19.6 kB view details)

Uploaded CPython 3.5macOS 10.14+ x86-64

dictdumper-0.7.0.post2-cp34-none-manylinux1_x86_64.whl (21.7 kB view details)

Uploaded CPython 3.4

dictdumper-0.7.0.post2-cp34-none-macosx_10_14_x86_64.whl (19.6 kB view details)

Uploaded CPython 3.4macOS 10.14+ x86-64

dictdumper-0.7.0.post2-cp27-none-manylinux1_x86_64.whl (21.7 kB view details)

Uploaded CPython 2.7

dictdumper-0.7.0.post2-cp27-none-macosx_10_14_x86_64.whl (19.6 kB view details)

Uploaded CPython 2.7macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2.tar.gz
  • Upload date:
  • Size: 68.9 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.2

File hashes

Hashes for dictdumper-0.7.0.post2.tar.gz
Algorithm Hash digest
SHA256 dd7575db24e6f1a2b9278389df000a6db8fba4c45a92398c7e6d3e5fa575a3ab
MD5 2a5e7247844ee874773c7625d8c6b4f7
BLAKE2b-256 76278b859ac191f351c7612e4abed73dbcf55cf17e88fd36d65a75d2d4c519d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-py3.7.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.2

File hashes

Hashes for dictdumper-0.7.0.post2-py3.7.egg
Algorithm Hash digest
SHA256 d504d616cc38bad3b6d95d15f8ca2ab96733a9a459f23eec521c117d200d986c
MD5 f65c07cd4b92efabe1fdc540d6f464ac
BLAKE2b-256 96c6ee33d8049a2f9df0b64c889f0c68e1f5b3f9f2c28d1e0d349662a79bbdb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-py3.6.egg
  • Upload date:
  • Size: 28.6 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-py3.6.egg
Algorithm Hash digest
SHA256 9acf655eb606216b93a4b0dbe73c3917e827500082f14cae61dc5b5bc33465f5
MD5 6a2d4499c555dae872a569ea256fd906
BLAKE2b-256 30bcedf5130faf6daf64541525ee7d9f21bc004cb7ba77eb33cfa47eed9ada09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-py3.5.egg
  • Upload date:
  • Size: 29.1 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-py3.5.egg
Algorithm Hash digest
SHA256 4cc1e010749d73e203a08d908d3e051e184f50d3e97aa0c7599d95276613a7bd
MD5 fa74c345d4e15c16269b8a6ec7e2a0fe
BLAKE2b-256 6e879006b0de8f6d9cd29bd24a05196d2359109f325462c33dc5a399544a3caf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-py3.4.egg
  • Upload date:
  • Size: 29.1 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-py3.4.egg
Algorithm Hash digest
SHA256 471607fde416afb1221752e7e7bcbc109938b12ead66978ff5b97519821007ed
MD5 059f1246a15153a36863d30448e8ce93
BLAKE2b-256 ed8edd291570de37d2af3730707020e01384fecf848288380108e7838009c1be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-py2.7.egg
  • Upload date:
  • Size: 28.5 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-py2.7.egg
Algorithm Hash digest
SHA256 6bc04f7737ac01dfdacbdac9cf3e04f24ab81878768b26563d485f05ea40ac35
MD5 e9dcd478b18ccd76706dd06d5aece254
BLAKE2b-256 149f7b0be960024acaba2d173df933f214e07fc22d89c1b3f108eeb1266e71d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-pp35-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.7 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.post2-pp35-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8c42d3540e75f533031dc29c32e0fd838982f2c024f92af0b400c83b2db66a2
MD5 8eed131fe90e19355f4b4c868b91a8d9
BLAKE2b-256 45846eb353e38203b9801474d2fc2a1512569edcb7b5653577358f3eaca78159

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-pp35-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.6 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-pp35-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f028983cb749762c98f2c50a6463dcc74c9b5ad77ae9bbc3fbbc2d04f70e508f
MD5 7b6bbf7577f025e59bc1a080ea3239f6
BLAKE2b-256 27c2018c4b4da2383b63fab1027c8219d71bb15b3b7d69a23ac57bd93ccd946f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-pp27-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 19.6 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.post2-pp27-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8ce423d37f5204f0709ae025b5edc4a91d974aff6b710ed66605b3acd2a10955
MD5 66bec8f3564cd08f7ab4978249ac8ebf
BLAKE2b-256 dc9ef99536dac960af12a1c8511efe3c218113cd0dcd088bb4a73a0d1fc75bb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-pp27-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.6 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-pp27-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ac48e337fcab1e4934bbbbc09d98d93a037d4f12f0f29074a901a1fa00238c94
MD5 0c42e597218e322c1cef0a04911bf05c
BLAKE2b-256 f8439777288edf17285a9593c5d94e06a61d96ad87b01a08cd4aad8dfc2e7e22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp37-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.7 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.post2-cp37-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c0c76d9de181b768a53d3603b6f02e2536b979606bb035e6ef10580bbb11be39
MD5 3d147731a734cd6c64cb2bcfb8aa1676
BLAKE2b-256 d0f396df6b317cd9ac3e9db6454ad0410a942a58134e89489392f9d58da95f25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp37-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.6 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-cp37-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1453b3dc017eecf177909d11e084a6c8eeb5bd980d6ddf78d44d4bf9ceb24f46
MD5 d060ac1c0d9a6900122fb3f4d29e21b1
BLAKE2b-256 9fa9486482b2a0ebe7ce8251a8e9f65c0758e3c7c4c38032ebb9774139f4b4cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp36-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.7 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.post2-cp36-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a57e9edc720b6d99a4747aba3a1e01ace95236c43092d184d1355518912aee80
MD5 7843d0b572737f382df0e2e381ed297a
BLAKE2b-256 658cb35efc566f18c1ef160e68e734078dd56d0e16a23c4a8aecc90a0052e66b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp36-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.6 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-cp36-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 335e8bd44ce2b3a1e2132ad16745b75e16d86284b17925088129d0f8bf93e976
MD5 783813c94c40e49da7a80121f31dec00
BLAKE2b-256 51bae674d110ba7c6432ed5a12c4d5c93d87362e5af07f93c7e5bdb85d5555dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp35-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.7 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.post2-cp35-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8205854aaeb6c1a90adab51e24542ee5e824613c86594f34cd2fb6c843f62a60
MD5 4000c4879769edabd680f2751dea10a1
BLAKE2b-256 de0966c6dc36ceaebc170c1589f582ba5338cc14e92c5e2b8df3558947cd9029

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp35-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.6 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-cp35-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ec79a036569c7867fd121132ffd65bb07c974f1d7cbc0c44105cd45a55f4509c
MD5 7feff845f1c677ef55d4966bcca423e8
BLAKE2b-256 e7f4a8a6354f20888fdb942aefb7bfedb26afc279ea99811dba6d3c6b93fe270

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp34-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.7 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.post2-cp34-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dcfc9ea2917252f46150483814d6d2babb33412f6667f39b8881e1441156f3f0
MD5 422597d7502f4521ee80793c9c000555
BLAKE2b-256 f6707d1589430b03dc4b1c9c72cee00bcbbdfc77eb33131ee5b2999abe3aa9b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp34-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.6 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-cp34-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bffa44a460fa685fd2ef9433fe6ce02bf8009904ceefac8fdc0b846b378e1443
MD5 af0b305fdc421d8dd83282218a437f57
BLAKE2b-256 8508a14f950df6f61dc5bda339f6128bb0ef3ff78e651a0196e7c3df49e71d91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp27-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 21.7 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.post2-cp27-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 803eeb6fedf92812b97ff79cb0cae021e2316f1c7374da3cff68691dd2204620
MD5 a70a66fc9089b06000561376506d62dd
BLAKE2b-256 d59b3e38518e71e4da0eaf8132b572ba540720ceb657ee298eff2d9512898207

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dictdumper-0.7.0.post2-cp27-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 19.6 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.2

File hashes

Hashes for dictdumper-0.7.0.post2-cp27-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d168a5f34823987b800811402f8b2c6a23074ba8677c393efb61e104b9e6d05a
MD5 76a20051f2db7200ab178bc44c53feb7
BLAKE2b-256 d99f57c97dbac3dd3a4d3b05bfdb0a7ca3f1e16e652aaa6e04c1ff95d466d6e7

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