DOCES is an experimental library to simulate opinion dynamics on complex networks
Project description
DOCES
DOCES (Dynamical Opinion Clusters Exploration Suite) is an experimental Python library to simulate opinion dynamics on adaptive complex networks. Its background is implemented in C for performance.
Install
To install DOCES, simply use the following:
pip install doces
Usage
Once installed, you can set up the agent-based simulation by instantiating an object with the constructor Opinion_dynamics()
with a network, like in the example below.
import doces
# Initializes the network parameters
...
# Creates a DOCES object.
od = doces.Opinion_dynamics(
vertex_count,
edges,
directed)
The constructor takes the features of the network connecting agents as arguments. They are:
vertex_count
- number of nodes/agents in the network;edges
- a python list of 2-tuples of nodes denoting the network edges ((source, target) in the case it is directed);directed
- a boolean indicating whether the network is directed or not;
Once the od
object is initialized, the simulation can be performed by calling its method simulate_dynamics()
as
# Initializes the dynamics parameters
...
# Run the dynamics
output_dictionary = od.simulate_dynamics(
number_of_iterations,
phi,
mu,
posting_filter,
receiving_filter,
b = None,
feed_size = 5,
rewire = True,
cascade_stats_output_file = None,
min_opinion = -1,
max_opinion = 1,
delta = 0.1,
verbose = True,
rand_seed = None)
opinions = output_dictionary["b"]
edge_list = output_dictionary["edges"]
The method outputs are a list opinions
of continuous values between min_opinion
and max_opinion
for each agent and a Python list of 2-tuples with the network structure after the simulation is finished. Its inputs are:
number_of_iterations
- an integer (positive value) that is used as the number of iterations for the model to run;phi
- a float number which controls the receiving filter;mu
- a float number that controls the innovation parameter. Ifmu = 0
, there is no innovation, and ifmu = 1
, all the posts are new and the feed posts are never re-posted;posting_filter
- an integer from 0 to 5 to set which function filters posting activity, according to the below specification;receiving_filter
- an integer from 0 to 5 to set which function filters how posts are received, according to the below specification;b
- an array of floats corresponding to the initial opinions of agents;feed_size
- an integer to set the size of the feed. The default value is 5;rewire
- a boolean to allow rewiring in each iteration or not;cascade_stats_output_file
- a string representing the output file path for cascade statistics. The default value is None;min_opinion
- a float corresponding to the minimum opinion value agents can have;max_opinion
- a float corresponding to the maximum opinion value agents can have;delta
- a float corresponding to the increment (or decrement) applied to opinions in each iteration;verbose
- a boolean that allows the code to print details of each simulation;rand_seed
- an integer (positive value) used as a seed for random number generation;
The filter functions are predefined in the library in the variables
- 0:
COSINE
: Controversial posting rule (eq. 1); - 2:
UNIFORM
: Priority receiving rule; - 3:
HALF_COSINE
Aligned posting rule (eq. 2), - 5:
CUSTOM
Allows different filters to be passed as a list of integers (with size equal to the number of agents).
To use option 5, you can call the methods set_posting_filter()
and set_receiving_filter()
, as in the example below. Additionally, agents can be set as stubborn by passing a list with integers indicating those agents to the method set_stubborn()
. Remember to do this before calling simulate_dynamics()
.
# Initializes the lists to be set
...
# Set the posting filter
od.set_posting_filter(posting_filter)
# Set the receiving filter
od.set_receiving_filter(receiving_filter)
# Set stubborn users
od.set_stubborn(stubborn_users)
Citation Request
If you publish a scientific paper using this material, please cite the respective reference(s) as follows.
The standard dynamics developed for undirected networks is cited as follows:
- Henrique Ferraz de Arruda, Felipe Maciel Cardoso, Guilherme Ferraz de Arruda, Alexis R. Hernández, Luciano da Fontoura Costa, and Yamir Moreno. "Modelling how social network algorithms can influence opinion polarization." Information Sciences 588 (2022): 265-278.
The dynamics for directed networks, or with the use of particular types of users (e.g., stubborn and verified) is cited as follows:
- Henrique Ferraz de Arruda, Kleber Andrade Oliveira, and Yamir Moreno. "Echo chamber formation sharpened by priority users." iScience (2024).
The dynamics with feeds (innovation parameter mu < 1
) is cited as follows:
- Kleber Andrade Oliveira, Henrique Ferraz de Arruda, and Yamir Moreno. "Mechanistic interplay between information spreading and opinion polarization." arXiv preprint arXiv:2410.17151 (2024).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
File details
Details for the file doces-0.0.5-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: doces-0.0.5-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 26.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d23c04e652c6d05722e5dc7eb00b1bb790bd2dd825c4875a1ca40af7593261d |
|
MD5 | c2a270d0ead9579fa8859fc023150523 |
|
BLAKE2b-256 | 8bec7b51107ec81bde66a431c1ed7f67257bde3d171fd0cbfd4542534d489270 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp312-cp312-win_amd64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp312-cp312-win_amd64.whl
- Subject digest:
4d23c04e652c6d05722e5dc7eb00b1bb790bd2dd825c4875a1ca40af7593261d
- Sigstore transparency entry: 147188131
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 70.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdcb73f87d653c1636a2994a1b76e312f33709730b8494c63bd9bc696e5b49f0 |
|
MD5 | 7bd79df1260f180028e0bc15099fb741 |
|
BLAKE2b-256 | 7ee526679a006ccf128fa9e5a46af9a0f9911c4e19923e39b7499d7a9ff1c391 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
fdcb73f87d653c1636a2994a1b76e312f33709730b8494c63bd9bc696e5b49f0
- Sigstore transparency entry: 147188145
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: doces-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35396f3652f0f896fa9d62fb0202487a078ed3ca8bc0a0c3e0a9daabd8f6baf1 |
|
MD5 | e74478233f10eb7d7bb1e795e396d642 |
|
BLAKE2b-256 | b366c3e7f945f26e2820ffa21568bba4096f1c7296dff604b65c0692dd06423b |
Provenance
The following attestation bundles were made for doces-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
- Subject digest:
35396f3652f0f896fa9d62fb0202487a078ed3ca8bc0a0c3e0a9daabd8f6baf1
- Sigstore transparency entry: 147188125
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 25.1 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b15a38275d8894f4fec0dfc7e1c071d4699ab0dc20bcab8e84fa062980c90af3 |
|
MD5 | 0e86194966353805191e2ccd0345ed10 |
|
BLAKE2b-256 | 824b373b9cc414d5bbe3a967a442e64822114e5492b842ab559aca78238b64a5 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp312-cp312-macosx_10_9_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp312-cp312-macosx_10_9_x86_64.whl
- Subject digest:
b15a38275d8894f4fec0dfc7e1c071d4699ab0dc20bcab8e84fa062980c90af3
- Sigstore transparency entry: 147188136
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: doces-0.0.5-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 26.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d1b96d6613e33279790488eb1cafe85cd4fd55236cb74cad5cddf0daf10be1c |
|
MD5 | d2318ec15542a918384e82ccfca7e70f |
|
BLAKE2b-256 | 996c7a85165175ac69b5b0dd648d0b9742ab42eb363889573d665142f01ed176 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp311-cp311-win_amd64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp311-cp311-win_amd64.whl
- Subject digest:
6d1b96d6613e33279790488eb1cafe85cd4fd55236cb74cad5cddf0daf10be1c
- Sigstore transparency entry: 147188121
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 69.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e029377458a9fdfdb375bf65fca24b52f3b1a69350bd3a47fdeba75f6c7133ba |
|
MD5 | c777cff762fef43c011dfd3740e0dd92 |
|
BLAKE2b-256 | db69b92f0931bad7ad37e70fffa8ee7ba7af9e951e30897e3ab5763248f07f4f |
Provenance
The following attestation bundles were made for doces-0.0.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
e029377458a9fdfdb375bf65fca24b52f3b1a69350bd3a47fdeba75f6c7133ba
- Sigstore transparency entry: 147188149
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: doces-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06c0cacaf5b02639c7d0cc6b8cfe5dcf84d064528167dc2548ac29528944f284 |
|
MD5 | c2bd0fb2ac4e39e91dafc2a42ada709d |
|
BLAKE2b-256 | bd4959c69638159c1b066f07826dff6929e29a62f34923a30ced1ce1bcb3ffd0 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
- Subject digest:
06c0cacaf5b02639c7d0cc6b8cfe5dcf84d064528167dc2548ac29528944f284
- Sigstore transparency entry: 147188119
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 24.8 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7c84ee8dcb51e55f0f000e4886cbe70a6507619f8b2ed600ca1b6f21ba4be4e |
|
MD5 | f4e4171c3d08f33d2e66eb0372e6a504 |
|
BLAKE2b-256 | 4f5c80faf2dc945e226aade55167743b0231cbe4eac987eb267acd4486027e12 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl
- Subject digest:
c7c84ee8dcb51e55f0f000e4886cbe70a6507619f8b2ed600ca1b6f21ba4be4e
- Sigstore transparency entry: 147188139
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: doces-0.0.5-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 26.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76e451f6f533c8c6d987824fe9024f091b4ffd30148e3d49e897341801ed99db |
|
MD5 | 52dd7aacec7ecdf07dab0c46d35a578b |
|
BLAKE2b-256 | 9e1e7859844f764b03d6fd0a8f53fd5c9c64afbb819552743914f7b0262a828f |
Provenance
The following attestation bundles were made for doces-0.0.5-cp310-cp310-win_amd64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp310-cp310-win_amd64.whl
- Subject digest:
76e451f6f533c8c6d987824fe9024f091b4ffd30148e3d49e897341801ed99db
- Sigstore transparency entry: 147188144
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 69.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1638432c7cf7f7ac5e12abfa7220afefbf6464a255f25655c171d3653248f40 |
|
MD5 | 65476a3a647227137542d5cdd4f23afb |
|
BLAKE2b-256 | 7ed3ecd0d333c805d1b8e779053735340b97f3ed53302d4e03109624ebae4076 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
e1638432c7cf7f7ac5e12abfa7220afefbf6464a255f25655c171d3653248f40
- Sigstore transparency entry: 147188116
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: doces-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c4296b6063eb02f5bda0833a65692d441a7e4001675d5f2e94de5b92915cf62 |
|
MD5 | cd99541a46e34a76e398c6209204c784 |
|
BLAKE2b-256 | 0926b1bcfe1f264d68bacc3c1c78e87cc0d260454418a1ae1369ad044a91108a |
Provenance
The following attestation bundles were made for doces-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
- Subject digest:
2c4296b6063eb02f5bda0833a65692d441a7e4001675d5f2e94de5b92915cf62
- Sigstore transparency entry: 147188140
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 24.8 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b83e145dd32af9c7e58dc4943ce5cf76ba280a36922d2149490d40fc1351cde3 |
|
MD5 | 2a4649ab5fa9cbd6e476d3bc45b3d060 |
|
BLAKE2b-256 | edf495b82dceddcb386b71d4fbc7cddc65e318e4029fe9a2b80cc528d97bbb51 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
- Subject digest:
b83e145dd32af9c7e58dc4943ce5cf76ba280a36922d2149490d40fc1351cde3
- Sigstore transparency entry: 147188118
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: doces-0.0.5-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 26.0 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2242df5ad1625b754c80aab761f42cf91be129274a109ac65915f889a94369f |
|
MD5 | d6646e3630ce48f582243fdec3cbb113 |
|
BLAKE2b-256 | 6fa816a212328eb0d85aa1303ebce692c8d3335de662988dab31c321dfaff104 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp39-cp39-win_amd64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp39-cp39-win_amd64.whl
- Subject digest:
f2242df5ad1625b754c80aab761f42cf91be129274a109ac65915f889a94369f
- Sigstore transparency entry: 147188142
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 69.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7da6d600c23c5ce07ad17351ae18a50e49c812c0c15a5aab2c8fb74a725ea32 |
|
MD5 | be2b53430df055e4eec878c1da2cbfbc |
|
BLAKE2b-256 | 1cfd60b48e48084b35bd7ca2da63b256497b5252121df895acb06c8a324bf386 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
c7da6d600c23c5ce07ad17351ae18a50e49c812c0c15a5aab2c8fb74a725ea32
- Sigstore transparency entry: 147188134
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: doces-0.0.5-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.1 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e44e19afe332f0ba1287260a6034b6ae20b0c02fd41e8ed52a02c81e72323fd |
|
MD5 | 57d9807570119ccbc532662305dcfca1 |
|
BLAKE2b-256 | 430295d6205379216fb55e3ec1184536403157bb0ece4d8dc8396dc0764a4e83 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp39-cp39-macosx_11_0_arm64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp39-cp39-macosx_11_0_arm64.whl
- Subject digest:
9e44e19afe332f0ba1287260a6034b6ae20b0c02fd41e8ed52a02c81e72323fd
- Sigstore transparency entry: 147188123
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 24.8 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17daf6e32f6305252ce86a143febe9ec70b8c7c3c157860e806568ff1436bbfb |
|
MD5 | 360ec27f11e006738e838d0e486cdf9b |
|
BLAKE2b-256 | 9ffdf37497f7a32a380251ea984c29b0608a77d699bc23179573e599c0d00217 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
- Subject digest:
17daf6e32f6305252ce86a143febe9ec70b8c7c3c157860e806568ff1436bbfb
- Sigstore transparency entry: 147188146
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: doces-0.0.5-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 26.0 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cc7e766c78760aed4e9a97fbd9848d1329d45728c816e717b1b23f3214c129e |
|
MD5 | 6602d55dc7ab39057db926785ed727a9 |
|
BLAKE2b-256 | 2a7fb2701065df5623e3e86af0e2905fa65bf16f5ca8f644df06e267c28a7eb6 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp38-cp38-win_amd64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp38-cp38-win_amd64.whl
- Subject digest:
4cc7e766c78760aed4e9a97fbd9848d1329d45728c816e717b1b23f3214c129e
- Sigstore transparency entry: 147188130
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 70.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36e9f3aaf3183784e95fecf4382eb011d1f4c467ef9bfbfddef2b74170c77f81 |
|
MD5 | 4c60f0ff1834e95ef63ca37ebcf3acfb |
|
BLAKE2b-256 | feb27f8cb4e68b6d99b089bf999360a13c0117740235652f2f757dd62be3696f |
Provenance
The following attestation bundles were made for doces-0.0.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp38-cp38-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
36e9f3aaf3183784e95fecf4382eb011d1f4c467ef9bfbfddef2b74170c77f81
- Sigstore transparency entry: 147188127
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: doces-0.0.5-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 25.1 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f94cbb4143ca9f6a3e0532899218b180472c16b287d6e0c0f23ff9000e198966 |
|
MD5 | 7e4b1d785e9815e16788f718a1b6297f |
|
BLAKE2b-256 | edd4974017a1dc8361f0b2dafc03d390c5c19f89f57977c463365d985ff25c3a |
Provenance
The following attestation bundles were made for doces-0.0.5-cp38-cp38-macosx_11_0_arm64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp38-cp38-macosx_11_0_arm64.whl
- Subject digest:
f94cbb4143ca9f6a3e0532899218b180472c16b287d6e0c0f23ff9000e198966
- Sigstore transparency entry: 147188120
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 24.8 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 401b680c90a3022d4688e24310bb262bf3cb42ca602f04425f9ebe6a193db6c6 |
|
MD5 | 8c1a7cbc77ad812a2737aa00faaaf819 |
|
BLAKE2b-256 | 7cb6d11742a8b514011160210166c321ab77ce93b4d0d39a2befafcb6c42b772 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
- Subject digest:
401b680c90a3022d4688e24310bb262bf3cb42ca602f04425f9ebe6a193db6c6
- Sigstore transparency entry: 147188148
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: doces-0.0.5-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 26.0 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fc067a0a643bc29821c7362cb2d856dc444af278161341fd94c6165df6155b1 |
|
MD5 | 664925fa115d0f3174439440f5d8ce72 |
|
BLAKE2b-256 | eedf3d462636ca56f6c27667799910c0e2c937cfd87523e79fe099394c0b1d4a |
Provenance
The following attestation bundles were made for doces-0.0.5-cp37-cp37m-win_amd64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp37-cp37m-win_amd64.whl
- Subject digest:
8fc067a0a643bc29821c7362cb2d856dc444af278161341fd94c6165df6155b1
- Sigstore transparency entry: 147188137
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 68.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f08a23d266159c4c6d5974567745dc1e4f39350eb0423be45e96429437e97f0e |
|
MD5 | 5268196b91b138e1b1d2376271bc1d16 |
|
BLAKE2b-256 | b6fe0fa25efe34c5f19ceb2b1cf8d05f55ab53ca2c9a69ed899b1e0f063d6e88 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp37-cp37m-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
- Subject digest:
f08a23d266159c4c6d5974567745dc1e4f39350eb0423be45e96429437e97f0e
- Sigstore transparency entry: 147188129
- Sigstore integration time:
- Predicate type:
File details
Details for the file doces-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: doces-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 24.8 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e682d7b0d161ba7e6f5b00eb6c5ef5aff3ba9be3f700b6a9db9c9a77a4bf78e7 |
|
MD5 | 9416a15db451bf9c82406db3482e412c |
|
BLAKE2b-256 | 3e084e2b3575b8f77d246ad779451b540cb501d921ab70a994eb516ec0507f66 |
Provenance
The following attestation bundles were made for doces-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
:
Publisher:
build-publish-pypi.yml
on hfarruda/doces
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
doces-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
- Subject digest:
e682d7b0d161ba7e6f5b00eb6c5ef5aff3ba9be3f700b6a9db9c9a77a4bf78e7
- Sigstore transparency entry: 147188114
- Sigstore integration time:
- Predicate type: