Skip to main content

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. If mu = 0, there is no innovation, and if mu = 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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

doces-0.0.3-cp312-cp312-win_amd64.whl (26.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

doces-0.0.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

doces-0.0.3-cp312-cp312-macosx_11_0_arm64.whl (25.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

doces-0.0.3-cp312-cp312-macosx_10_9_x86_64.whl (25.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

doces-0.0.3-cp311-cp311-win_amd64.whl (26.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

doces-0.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (69.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

doces-0.0.3-cp311-cp311-macosx_11_0_arm64.whl (25.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

doces-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl (24.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

doces-0.0.3-cp310-cp310-win_amd64.whl (26.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

doces-0.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (69.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

doces-0.0.3-cp310-cp310-macosx_11_0_arm64.whl (25.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

doces-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl (24.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

doces-0.0.3-cp39-cp39-win_amd64.whl (26.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

doces-0.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (69.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

doces-0.0.3-cp39-cp39-macosx_11_0_arm64.whl (25.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

doces-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl (24.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

doces-0.0.3-cp38-cp38-win_amd64.whl (26.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

doces-0.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

doces-0.0.3-cp38-cp38-macosx_11_0_arm64.whl (25.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

doces-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl (24.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

doces-0.0.3-cp37-cp37m-win_amd64.whl (26.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

doces-0.0.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (68.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

doces-0.0.3-cp37-cp37m-macosx_10_9_x86_64.whl (24.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file doces-0.0.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: doces-0.0.3-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

Hashes for doces-0.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 12ccab8f5ababb9a28833b85fb8e1a3d7b593524c93ed6fc9f20fc568fc754d1
MD5 d75edb06e9047387d5d8b5435f992da4
BLAKE2b-256 5e4d70636d879a4a3bd7b3df3e54c27df2e2bff15f8815b0fa757581f21faea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp312-cp312-win_amd64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf299cbb9fe231ecd329026a9ea5993cabf0ba63d507b26e9c444fd5522f6e1f
MD5 2ca3e5e0c76c5ae0e59c427c77ea6d5f
BLAKE2b-256 6b5dfa012fc1fcf65a56d5376f8aa3ba21f5006521b4db6288af36f91b17471c

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-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

Attestations:

File details

Details for the file doces-0.0.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0621a96d3b0ea289214328c3b36d85cb8dbeddafee63ccc5c4a8aa6db6943296
MD5 70d70fa21eb98389614bc8dd1f0fc02a
BLAKE2b-256 ee06b1410528ae9e6d9b85418f904653609a43c6bee2919546e19c949682af13

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6a205dcdcb11494343725285a6229fe5f20cff7db7a7769a9372678c7b2cd50
MD5 58c315a6f35ef9474612237ee661e3d1
BLAKE2b-256 8afc5227ded50abc99af5e9d2feecc4cae33ab65c397359040578bbd60eee5b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: doces-0.0.3-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

Hashes for doces-0.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 23006d6d50e8a8ca97637f8939af4ce4fe81c6060471bb1480567a0ce154c72a
MD5 4f48018cc4cc518647ca5080f8e92f8b
BLAKE2b-256 77121450465b5d2110da12daadfa9fdcc6f780f5182224ddcb661de799e3cafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp311-cp311-win_amd64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 763692715d53b5f1ec6dde7e90edd309975496fc3236ac2f0868761a212537e9
MD5 ebfbaa0f6b48b89b6d054427d202e6ce
BLAKE2b-256 1588689e2352bd3bb82845aef6ae513b8956097ff35f01c0c2734192d53f937c

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-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

Attestations:

File details

Details for the file doces-0.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 331ff970af51546cf80a297995124dc97cdc0753c140100ef4fbf2acbe2e148c
MD5 591f607dc0afc28d0cc409e5fd7231d4
BLAKE2b-256 aea3d40ce520b6dd92c674fe047f7295ea2432f1361b56a6658a5789c3d9f70f

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2904653822266dfeccd9ffe703c2b1dd32f2978cbd66282e798a9c4241f8405
MD5 d23483adca78565aca3a2ffca52fc99c
BLAKE2b-256 3a88364d3d6bf12a00edfee106ede98353acbd21504c9d21f1c289972d091a83

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: doces-0.0.3-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

Hashes for doces-0.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 521494c3cfe3b8a24eaf6d81d3691a66716c19973f0e797345185e0a859468b7
MD5 a4f95dd9ca2fb121e09d37bcf635ec40
BLAKE2b-256 9198654d5871e550c60328a425219ec5a42f3283401c5c5ab0be739da11de7bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp310-cp310-win_amd64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a70d956fee630da338eafe97e6100a35e6c7751a3e1f55b18b762474407c91f
MD5 adc946a68feabd4a2f0447b7b23cb65f
BLAKE2b-256 628f7700d24579336fe0d9e2c4a1bcf9522fa99567cae6f4823dde27b6dc9116

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-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

Attestations:

File details

Details for the file doces-0.0.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0b9f1079ed03d965b3508bae354546bb1f8f3e23ea13847d7a6a73e2c1e1e09
MD5 b888169858d17ede2cd2fc783a7a1493
BLAKE2b-256 de96f50807abf86017bc8cdf9094e069fc12d8ccb07f16aaaf41c4f8cc08f6d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce09112a2b9f6480f2fe59345321cb10ade395c7ca9db4bb5f51906a3cd91f1f
MD5 f5d68e1ecb2ff83766d00ada1eb4fbd7
BLAKE2b-256 3f23ab2e83b930b72f3318b7d6c652a0a57e7d4cb922ee4b9260e46626feda28

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: doces-0.0.3-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

Hashes for doces-0.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7fb6641916dea66627da2093f997267959abe9366525ab82bc35877a82bbe1cd
MD5 adb3f07ae5fb24e1a0120c703b1d7af2
BLAKE2b-256 24b11b804ada984775ef5031e617dcb2213d9c07551da78dab2ce5f9afd30d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp39-cp39-win_amd64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97c94d81264df052dd58efb9e6574ef59ce0d66da235b42ff4149b592d32a751
MD5 1b1c31199273d136ca026c0499d18e5b
BLAKE2b-256 0ca5a04e52004f9a61f6401ca00677d4a8f0fe1a6e1c80d99a3c09abac917862

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-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

Attestations:

File details

Details for the file doces-0.0.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20d80de0469b1a861a8e5fd2867ecb99cf84fcb6e7cff9b128f37d0de8e693cb
MD5 fc47e35bc24ecddfe710c8dde9a775f7
BLAKE2b-256 28a2aad0f3745c1d03e486d200dfe77e114633273cb873e549e61eac58f344bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6dc59f06c348fd322532e2163a358a8210300163a9e38465d5c6aa9267540cc4
MD5 7eb7ff5d06f64a90c999771edbd54fdd
BLAKE2b-256 0f3cc7f059afb9ef28a0cff67233040a5475100d607cbdbb390fad44c1d339e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: doces-0.0.3-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

Hashes for doces-0.0.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2fdef7d6de46754444bd00872dabb798452b64d1e8893359571ef3922dd01cd4
MD5 b2f89981c54396427692b4a9d6706abc
BLAKE2b-256 2772ba25029f13b5cc0e1f3a5c54800ec283040b7a7032c5a501bab4817ef710

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp38-cp38-win_amd64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f4a50eadac66b06f8ce910c8497f24ef276cab3dcd19fb5c17e2ad65e39c565
MD5 be92fe2407f94ed98f18aa8019c530a1
BLAKE2b-256 d8605122c9a5de294ef72133cea54fb48080af3832a4b98f7f85014b5c30c424

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-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

Attestations:

File details

Details for the file doces-0.0.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4d9fd375c72ed88af4a1bbe0feb443615f4db4a60e3a01e9121c428d5a90e93
MD5 4b569f62aa7a74953ad4de78bac2c9ee
BLAKE2b-256 9c7e54b8317772df9c33a03e6ac2a19a625ba2dd40bd84390f294c687bc6ad12

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1cb3f9eaeefa8223d726d91945c7dcf977f84fd6dfc8d04156e9eebb09fcfd77
MD5 7c5e587d93be08d83bf860a8f4640cf2
BLAKE2b-256 0f87bbae46b63734e787c66df683444f923f37982eabb36e90c81856a751c9c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: doces-0.0.3-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

Hashes for doces-0.0.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ee916c8acd8ecfc40be1e87dacba070ab6e93bf8c3f30c84241f7b1933982299
MD5 d98d0b0a351ca5af94c04eaae69a339c
BLAKE2b-256 28608122fd8221a2c93bef166e5ab3099ca63a54441e3cec364765b81680dfcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp37-cp37m-win_amd64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

File details

Details for the file doces-0.0.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d1bc6a678a3e7b8403a77f617b2440f77bb89c0554b4fffb0f474765b14c62b
MD5 1dcca35a0d145a712033c42759e71191
BLAKE2b-256 2ed46f5b91690188ae416bd6761ff6045aca51928a8c12935c851227d2f72c21

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-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

Attestations:

File details

Details for the file doces-0.0.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for doces-0.0.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 541acd3c6183fb0b2baffc5ed82cbcba6e6a42c4a96c7ab465d8ff6489fdf73d
MD5 a4bd152eb8eeb13c26c2444b3bf8bca4
BLAKE2b-256 cae3146681e49ccaf35fdd38d63a5d8f3fe90699a4578fc02f4016811485040b

See more details on using hashes here.

Provenance

The following attestation bundles were made for doces-0.0.3-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: build-publish-pypi.yml on hfarruda/doces

Attestations:

Supported by

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