Skip to main content

A Python Wrapper for the daggen tool proposed by Frederic Suter

Project description

A Python port of the daggen tool proposed by Suter & Hunold.

This library generates random, synthetic task graphs for simulation. You can easily convert the generated task graphs into directed acyclic graphs (DAGs) in tools such as NetworkX or igraph, or export them to files. The library helps evaluate scheduling algorithms using various application configurations.

Here is an example of how to generate a DAG of 15 tasks, accepting the default parameters, and import it into igraph:

import daggen as dg
import igraph as ig

dag = dg.DAG(seed=42, num_tasks=15)
tasks, edges = dag.task_n_edge_dicts()
igraph_dag = ig.Graph.DictList(vertices=tasks, edges=edges, directed=True)

You can alternatively convert the task graph into a NetworkX’ DiGraph:

import daggen as dg
import networkx as nx

dag = dag.DAG(seed=46, num_tasks=15)
tasks, edges = dag.task_n_edge_tuples()
net_dag = nx.DiGraph()
net_dag.add_nodes_from(tasks)
net_dag.add_edges_from(edges)

Task and edge attributes

Each generated task has two attributes:

  • computation: a sequential cost (in Flops).

  • alpha: the alpha parameter of Amdahl’s Law, used to encode the overhead of parallelizing tasks in parallel task graphs.

Each edge represents a communication from a parent task to a child task and has a data attribute representing the amount of data transferred from parent to child.

DAG parameters

You can configure the characteristics of the generated DAGs by parametrizing the DAG(). Following the C implementation, one can set the following parameters:

  • seed: used to seed the random number generator and ensure reproducibility.

  • n_tasks: Number of computation nodes (application tasks) in the DAG.

  • min_data: Minimum amount of data in bytes a task processes

  • max_data: Maximum amount of data in bytes a task processes

  • min_alpha: Minimum value for the extra parameter (e.g., Amdahl’s law parameter)

  • max_alpha: Minimum value for the extra parameter.

  • fat: Width of the DAG, the maximum number of tasks executed concurrently. A small value results in a thin DAG (e.g., chain) with low task parallelism, while a large value creates a fat DAG (e.g., fork-join) with a high degree of parallelism.

  • density: Determines the dependencies between tasks of two consecutive DAG levels.

  • regular: Regularity of the task distribution between the different levels of the DAG.

  • ccr: Communication to computation ratio. It encodes the complexity of the computation of a task depending on the size n of the dataset it processes. The encoding is as follows:

    • 1 : a * n (a is a constant picked randomly between 26 and 29).

    • 2 : a * n log n

    • 3 : n3/2

    • 0 : Random choice among the three complexities.

  • jump_size: Maximum number of levels spanned by inter-task communications, which enables DAGs with execution paths of multiple lengths.

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

daggen-0.0.4.tar.gz (100.0 kB view details)

Uploaded Source

Built Distributions

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

daggen-0.0.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (131.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

daggen-0.0.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (130.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

daggen-0.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (121.4 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

daggen-0.0.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (131.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

daggen-0.0.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (130.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

daggen-0.0.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (121.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

daggen-0.0.4-cp310-cp310-musllinux_1_1_x86_64.whl (269.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

daggen-0.0.4-cp310-cp310-musllinux_1_1_i686.whl (263.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

daggen-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

daggen-0.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (262.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

daggen-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl (129.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

daggen-0.0.4-cp39-cp39-musllinux_1_1_x86_64.whl (273.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

daggen-0.0.4-cp39-cp39-musllinux_1_1_i686.whl (266.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

daggen-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

daggen-0.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (265.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

daggen-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl (129.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

daggen-0.0.4-cp38-cp38-musllinux_1_1_x86_64.whl (279.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

daggen-0.0.4-cp38-cp38-musllinux_1_1_i686.whl (273.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

daggen-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

daggen-0.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (268.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

daggen-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl (129.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

daggen-0.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl (267.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

daggen-0.0.4-cp37-cp37m-musllinux_1_1_i686.whl (260.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

daggen-0.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (263.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

daggen-0.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (257.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

daggen-0.0.4-cp37-cp37m-macosx_10_9_x86_64.whl (128.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file daggen-0.0.4.tar.gz.

File metadata

  • Download URL: daggen-0.0.4.tar.gz
  • Upload date:
  • Size: 100.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for daggen-0.0.4.tar.gz
Algorithm Hash digest
SHA256 3bff7ed96ae4006cafbcb109c22270df2e38ef75ecc66a8c7fe3468d76a9641a
MD5 1e1107fde2e3390d68acee510ed7e183
BLAKE2b-256 e6ba405e284bcca8e04e800065cdd3aa6c58156255a500472a321d86741515a4

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45f527cb9ff0de6712ae6509240ca963e8efe35b7f09dc5f232aa7f210c556f3
MD5 b6b4733bb5d77c12ce23822f5f335ee1
BLAKE2b-256 bc3208614eb825d0e9594ad7c28e33ef3d75b5a4137a9ae1e6b2a0e5bd637081

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82f49968c8451b9b6198b279615919c2f24e999ea84fc2df60e6d108b7ccb6ed
MD5 e154553a066c02982375d9f4953147a7
BLAKE2b-256 91987094d86e36d7c2177116d80c0ca56de090de8886e229fc81bc04685da0d9

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4bde5e1b6e6c401a2bce079aed8b3539170ece7c749fe60a39bbf7902f3cea95
MD5 744498346c091c318824da9d1f3cc94c
BLAKE2b-256 873efffc1ae240a5e2087b784671b79fb803ac41f9bde48e684de7aabf9fbcd8

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9764162cab00834a8b1a26ecb369e444627d43daccda92031dc7621784f2d24c
MD5 935bc904c8c7f333d7e94aca570a52f0
BLAKE2b-256 c0fba1b6526ca9964363c95d6e49ebc2f2b6e00869751fbf09d050386d9ee785

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61a9810230689169ef3a43f11c20a87f64e2f6bcedce3a201e03890d8996eb42
MD5 e38cc774ec655f3fbc0a319852344057
BLAKE2b-256 5b41387c530285219642271db2eede029c8ebf0356d5106f72bbe54f558a24e9

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad61373f9489042b4b870c0784a0e11d2cad753bf22abeef1315728d1581966e
MD5 b8cccdf298220b6c1e32090911bb4a8d
BLAKE2b-256 8ff0a3d339ea5f607f1937d2cba6e3895841770b70eaacd3336bbb61ae013b3e

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c4fae2d9336a3b668497a1b2988fd25b3726767b530f937f98725d3a88eac577
MD5 2d15e0c22f756fdafb0baaa27512d211
BLAKE2b-256 e8a682147c5b92f9977a373a0dde09f9ac41fc16a85bf05c00fcb950c7f23ac2

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1d15cbe9597d4e61a425375b7e13aaf7c794338dc7c76f3e7ca47d548d43bcab
MD5 abbe0b74e58889221aa5a60bf8b1b62c
BLAKE2b-256 2a45a29c9bf76f046b459801fa22dc971a5ad41036dc451ce9a119a0e45521ae

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81ff30bded3bf6d2ba9bc69dc2c4ef2e96e30a18df660a41662cea489d741aed
MD5 51ce4f0a3aac6fe65dc4b7c7c555ef89
BLAKE2b-256 b2ac50a1eea720d7026f4f851858cb63c069b28004b56a916860efe2628bfd93

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5baa8676118f75663f1195ab7f110988d628be0512a389e5241c1bff2ee441a9
MD5 85142ee8b6e1c28166d3c648f33d1090
BLAKE2b-256 588da0d9e21d13dc45eb9eb5707aa032212e7ac695507dad09cae6cae2ef735e

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcf75cbe22967f4ac817463d3a9ffb702f7921b3be08973b38af181368bb262d
MD5 60546ed02950605b8a822fcc08c1be8c
BLAKE2b-256 c8413eeee3ee3841ae8451913c1e99fafad5691bd3230dc1c1541d0ca1b1c6f0

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7df0add001514065fb5b4436459d842722fd2da48f5f20f40a83438994165116
MD5 ce4e5e4482b02fa7e4a69387aa77f301
BLAKE2b-256 6a0d50b583fcef33e7774c1d8307f2c284c79b054b521d1c7d28accd83a9fd01

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: daggen-0.0.4-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 266.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for daggen-0.0.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 57c1ebfa9cc4a9e147576d53937ff8e3dcbc7dad9ce8c429aaecc41b9c8ed2dc
MD5 91a85d9bb206abd5c4e91afe630becc9
BLAKE2b-256 0b586dcf8c68a139a5207b5c2f5115ca885914da28fd8e9d2173886235caeba1

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41f19c98d2314c77f8d7a6c48cc19fd57f9e011622979d26a56c01ecbb1253ce
MD5 621bd73e1030e0b6abe57000903a69c1
BLAKE2b-256 f01914ab22da69b14a0318737278ce2f89e64c558db0980f12222bdaf41c22de

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94399c40b1555a8749a2001a0f327e0e69dcb62bcd56f97bca273afe4e935973
MD5 e6d483a3d994796ea466fc60ba13a97c
BLAKE2b-256 9bc958750c4b0fd0e243aebe1468fcc29edd00fd23238e17f5d0708d72df173b

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e0b9a4d8d6e33253e52476ccf8be0639767bcf15cf33ea70a556af4494a2c2d6
MD5 849f0f34172ffc9be9ddf73b7f150eee
BLAKE2b-256 42b1bbf6653f8ce00f788f469c3e4d8f536749aad45ff9e0552faa8825071161

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a22e10bb0f94fd8e0736dc11b7bc8d9a4b57a99a4283a769b045692fb3c081a7
MD5 e9b65c8b76003fc8c660f74c267eb833
BLAKE2b-256 c02ddc0020717bd922f33aa058ae42e18e01ee5ac98fce50923edf81970d7ed3

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: daggen-0.0.4-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 273.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for daggen-0.0.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e16101fd507d4a196a0ccd239368fb8100f82f5a431819d91b547a1deca4e1b6
MD5 ab43e00c88a8327ac7e4e7f3ff63abfb
BLAKE2b-256 065db97f22d15d6c0350992fa01cdaa485b8b46f71072e761873a47162c3f158

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c77a396e3ced6a4bc019aa04355807cebd0cd493ca28a438220a93dc74e7a223
MD5 d0c0f79f1832419f8248a959b68067a0
BLAKE2b-256 8ee2616fedbdfabdf3711da7f1793ad77951303c1b2a3de6fab7d1d2738d90ed

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 002ceffc341a179a38b00c07a9a9eb84b5fab638ecbca58458f14d7698acdc4b
MD5 2629a30d162a61b2ab6218a384021241
BLAKE2b-256 7deca07cea8643c1f61ae69eb76360ef18c8b0da960218e231b2093c02640995

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f97ba60389c73778772730a6062a27d9185bf9da4641d9dd02dd594205dcd99b
MD5 fb5c9e6e2d726d72bcd5cff28dc244fb
BLAKE2b-256 203a7203e2e0dd6f0cec8fc0bdf473aecf83af585000a408dcc8a74786476252

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d418a883b7d5e1cb2ae3822df83b9fc59c29a5035c910f0cb6ed6a8c2f35527
MD5 ee8c696b471ac74043e53d11a057e6c9
BLAKE2b-256 cca3cedb2d070f733cb6ff8f39f29a7c4a502d67e8685d218e81e2a50b3cfc98

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 96ade02e1def05bc56575324c6aa7e824e2d96280986b28fcbf2fc191ab3391f
MD5 b019380711610accb29fe0292f02a50c
BLAKE2b-256 df0604ed33f31c187265a625b0a284faa8c2bb972907361ac58e5bc514e20fba

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6aa180194f06a8d4558d267907fb025d2a6874a3565a26c42ad7d226365db819
MD5 686b824ce36deb0b2873c5e9414eeb23
BLAKE2b-256 219fa51f933d76e87f2450139c3f3e04e0948ff2c2b0bf517b2d7d9e2b557f2b

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 708d67005608f60c4f82fc40da544657e12cab920b4c5783431a6103c5335a9a
MD5 9c98c2a22217399d9d7ec774d5ee8009
BLAKE2b-256 5b69cfad31f79c5fb060f22b69f190c1e148166e38370009bc5e748aaade260e

See more details on using hashes here.

File details

Details for the file daggen-0.0.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for daggen-0.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 841c21aaed2a007acc37449fdebd5184a8028a730fbf1b006744426a660eb747
MD5 a54bf24194988d961876e039ce669a07
BLAKE2b-256 82db93a355a23a56ecf5e9c5d9743fdd27a7d01a61ef19236cc23c5753466876

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