Skip to main content

Fast contraction ordering primitives for tensor networks.

Project description

cotengrust

cotengrust provides fast rust implementations of contraction ordering primitives for tensor networks or einsum expressions. The two main functions are:

  • optimize_optimal(inputs, output, size_dict, **kwargs)
  • optimize_greedy(inputs, output, size_dict, **kwargs)

The optimal algorithm is an optimized version of the opt_einsum 'dp' path - itself an implementation of https://arxiv.org/abs/1304.6112.

There is also a variant of the greedy algorithm, which runs ntrials of greedy, randomized paths and computes and reports the flops cost (log10) simultaneously:

  • optimize_random_greedy_track_flops(inputs, output, size_dict, **kwargs)

Installation

cotengrust is available for most platforms from PyPI:

pip install cotengrust

or if you want to develop locally (which requires pyo3 and maturin):

git clone https://github.com/jcmgray/cotengrust.git
cd cotengrust
maturin develop --release

(the release flag is very important for assessing performance!).

Usage

If cotengrust is installed, then by default cotengra will use it for its greedy, random-greedy, and optimal subroutines, notably subtree reconfiguration. You can also call the routines directly:

import cotengra as ctg
import cotengrust as ctgr

# specify an 8x8 square lattice contraction
inputs, output, shapes, size_dict = ctg.utils.lattice_equation([8, 8])

# find the optimal 'combo' contraction path
%%time
path = ctgr.optimize_optimal(inputs, output, size_dict, minimize='combo')
# CPU times: user 13.7 s, sys: 83.4 ms, total: 13.7 s
# Wall time: 13.7 s

# construct a contraction tree for further introspection
tree = ctg.ContractionTree.from_path(
    inputs, output, size_dict, path=path
)
tree.plot_rubberband()

optimal-8x8-order

Benchmarks

The following benchmarks illustrate performance and may be a useful comparison point for other implementations.


First, the runtime of the optimal algorithm on random 3-regular graphs, with all bond sizes set to 2, for different mimimize targets:

Taken over 20 instances, lines show mean and bands show standard error on mean. Note how much easier it is to find optimal paths for the maximum intermediate size or cost only (vs. total for all contractions). While the runtime generally scales exponentially, for some specific geometries it might reduce to polynomial.


For very large graphs, the random_greedy optimizer is appropriate, and there is a tradeoff between how long one lets it run (ntrials) and the best cost it achieves. Here we plot these for various $N=L\times L$ square grid graphs, with all bond sizes set to 2, for different ntrials (labelled on each marker):

Again, data is taken over 20 runs, with lines and bands showing mean and standard error on the mean. In most cases 32-64 trials is sufficient to achieve close to convergence, but for larger or harder graphs you may need more. The empirical scaling of the random-greedy algorithm is very roughly $\mathcal{O}(N^{1.5})$ here.


The depth 20 sycamore quantum circuit amplitude is a standard benchmark nowadays, it is generally a harder graph than the 2d lattice. Still, the random-greedy approach can do quite well due to its sampling of both temperature and costmod:

Again, each point is a ntrials setting, and the lines and bands show the mean and error on the mean respectively, across 20 repeats. The dashed line shows the roughly best known line from other more advanced methods.


API

The optimize functions follow the api of the python implementations in cotengra.pathfinders.path_basic.py.

def optimize_optimal(
    inputs,
    output,
    size_dict,
    minimize='flops',
    cost_cap=2,
    search_outer=False,
    simplify=True,
    use_ssa=False,
):
    """Find an optimal contraction ordering.

    Parameters
    ----------
    inputs : Sequence[Sequence[str]]
        The indices of each input tensor.
    output : Sequence[str]
        The indices of the output tensor.
    size_dict : dict[str, int]
        The size of each index.
    minimize : str, optional
        The cost function to minimize. The options are:

        - "flops": minimize with respect to total operation count only
          (also known as contraction cost)
        - "size": minimize with respect to maximum intermediate size only
          (also known as contraction width)
        - 'max': minimize the single most expensive contraction, i.e. the
          asymptotic (in index size) scaling of the contraction
        - 'write' : minimize the sum of all tensor sizes, i.e. memory written
        - 'combo' or 'combo={factor}` : minimize the sum of
          FLOPS + factor * WRITE, with a default factor of 64.
        - 'limit' or 'limit={factor}` : minimize the sum of
          MAX(FLOPS, alpha * WRITE) for each individual contraction, with a
          default factor of 64.

        'combo' is generally a good default in term of practical hardware
        performance, where both memory bandwidth and compute are limited.
    cost_cap : float, optional
        The maximum cost of a contraction to initially consider. This acts like
        a sieve and is doubled at each iteration until the optimal path can
        be found, but supplying an accurate guess can speed up the algorithm.
    search_outer : bool, optional
        If True, consider outer product contractions. This is much slower but
        theoretically might be required to find the true optimal 'flops'
        ordering. In practical settings (i.e. with minimize='combo'), outer
        products should not be required.
    simplify : bool, optional
        Whether to perform simplifications before optimizing. These are:

        - ignore any indices that appear in all terms
        - combine any repeated indices within a single term
        - reduce any non-output indices that only appear on a single term
        - combine any scalar terms
        - combine any tensors with matching indices (hadamard products)

        Such simpifications may be required in the general case for the proper
        functioning of the core optimization, but may be skipped if the input
        indices are already in a simplified form.
    use_ssa : bool, optional
        Whether to return the contraction path in 'single static assignment'
        (SSA) format (i.e. as if each intermediate is appended to the list of
        inputs, without removals). This can be quicker and easier to work with
        than the 'linear recycled' format that `numpy` and `opt_einsum` use.

    Returns
    -------
    path : list[list[int]]
        The contraction path, given as a sequence of pairs of node indices. It
        may also have single term contractions if `simplify=True`.
    """
    ...


def optimize_greedy(
    inputs,
    output,
    size_dict,
    costmod=1.0,
    temperature=0.0,
    simplify=True,
    use_ssa=False,
):
    """Find a contraction path using a (randomizable) greedy algorithm.

    Parameters
    ----------
    inputs : Sequence[Sequence[str]]
        The indices of each input tensor.
    output : Sequence[str]
        The indices of the output tensor.
    size_dict : dict[str, int]
        A dictionary mapping indices to their dimension.
    costmod : float, optional
        When assessing local greedy scores how much to weight the size of the
        tensors removed compared to the size of the tensor added::

            score = size_ab / costmod - (size_a + size_b) * costmod

        This can be a useful hyper-parameter to tune.
    temperature : float, optional
        When asessing local greedy scores, how much to randomly perturb the
        score. This is implemented as::

            score -> sign(score) * log(|score|) - temperature * gumbel()

        which implements boltzmann sampling.
    simplify : bool, optional
        Whether to perform simplifications before optimizing. These are:

        - ignore any indices that appear in all terms
        - combine any repeated indices within a single term
        - reduce any non-output indices that only appear on a single term
        - combine any scalar terms
        - combine any tensors with matching indices (hadamard products)

        Such simpifications may be required in the general case for the proper
        functioning of the core optimization, but may be skipped if the input
        indices are already in a simplified form.
    use_ssa : bool, optional
        Whether to return the contraction path in 'single static assignment'
        (SSA) format (i.e. as if each intermediate is appended to the list of
        inputs, without removals). This can be quicker and easier to work with
        than the 'linear recycled' format that `numpy` and `opt_einsum` use.

    Returns
    -------
    path : list[list[int]]
        The contraction path, given as a sequence of pairs of node indices. It
        may also have single term contractions if `simplify=True`.
    """

def optimize_simplify(
    inputs,
    output,
    size_dict,
    use_ssa=False,
):
    """Find the (partial) contracton path for simplifiactions only.

    Parameters
    ----------
    inputs : Sequence[Sequence[str]]
        The indices of each input tensor.
    output : Sequence[str]
        The indices of the output tensor.
    size_dict : dict[str, int]
        A dictionary mapping indices to their dimension.
    use_ssa : bool, optional
        Whether to return the contraction path in 'single static assignment'
        (SSA) format (i.e. as if each intermediate is appended to the list of
        inputs, without removals). This can be quicker and easier to work with
        than the 'linear recycled' format that `numpy` and `opt_einsum` use.

    Returns
    -------
    path : list[list[int]]
        The contraction path, given as a sequence of pairs of node indices. It
        may also have single term contractions.
    """
    ...

def optimize_random_greedy_track_flops(
    inputs,
    output,
    size_dict,
    ntrials=1,
    costmod=(0.1, 4.0),
    temperature=(0.001, 1.0),
    seed=None,
    simplify=True,
    use_ssa=False,
):
    """Perform a batch of random greedy optimizations, simulteneously tracking
    the best contraction path in terms of flops, so as to avoid constructing a
    separate contraction tree.

    Parameters
    ----------
    inputs : tuple[tuple[str]]
        The indices of each input tensor.
    output : tuple[str]
        The indices of the output tensor.
    size_dict : dict[str, int]
        A dictionary mapping indices to their dimension.
    ntrials : int, optional
        The number of random greedy trials to perform. The default is 1.
    costmod : (float, float), optional
        When assessing local greedy scores how much to weight the size of the
        tensors removed compared to the size of the tensor added::

            score = size_ab / costmod - (size_a + size_b) * costmod

        It is sampled uniformly from the given range.
    temperature : (float, float), optional
        When asessing local greedy scores, how much to randomly perturb the
        score. This is implemented as::

            score -> sign(score) * log(|score|) - temperature * gumbel()

        which implements boltzmann sampling. It is sampled log-uniformly from
        the given range.
    seed : int, optional
        The seed for the random number generator.
    simplify : bool, optional
        Whether to perform simplifications before optimizing. These are:

        - ignore any indices that appear in all terms
        - combine any repeated indices within a single term
        - reduce any non-output indices that only appear on a single term
        - combine any scalar terms
        - combine any tensors with matching indices (hadamard products)

        Such simpifications may be required in the general case for the proper
        functioning of the core optimization, but may be skipped if the input
        indices are already in a simplified form.
    use_ssa : bool, optional
        Whether to return the contraction path in 'single static assignment'
        (SSA) format (i.e. as if each intermediate is appended to the list of
        inputs, without removals). This can be quicker and easier to work with
        than the 'linear recycled' format that `numpy` and `opt_einsum` use.

    Returns
    -------
    path : list[list[int]]
        The best contraction path, given as a sequence of pairs of node
        indices.
    flops : float
        The flops (/ contraction cost / number of multiplications), of the best
        contraction path, given log10.
    """
    ...

def ssa_to_linear(ssa_path, n=None):
    """Convert a SSA path to linear format."""
    ...

def find_subgraphs(inputs, output, size_dict,):
    """Find all disconnected subgraphs of a specified contraction."""
    ...

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

cotengrust-0.2.1.tar.gz (58.9 kB view details)

Uploaded Source

Built Distributions

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

cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (636.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (656.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (694.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (564.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (467.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (418.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (388.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (443.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (438.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (439.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (632.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl (652.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (691.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (559.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (420.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (464.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (461.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cotengrust-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (438.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp314-cp314-win_arm64.whl (263.4 kB view details)

Uploaded CPython 3.14Windows ARM64

cotengrust-0.2.1-cp314-cp314-win_amd64.whl (306.9 kB view details)

Uploaded CPython 3.14Windows x86-64

cotengrust-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (633.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cotengrust-0.2.1-cp314-cp314-musllinux_1_2_i686.whl (653.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cotengrust-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (692.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cotengrust-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (560.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cotengrust-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (466.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cotengrust-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (462.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cotengrust-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cotengrust-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cotengrust-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (439.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (363.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cotengrust-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (408.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cotengrust-0.2.1-cp313-cp313-win_arm64.whl (263.6 kB view details)

Uploaded CPython 3.13Windows ARM64

cotengrust-0.2.1-cp313-cp313-win_amd64.whl (307.0 kB view details)

Uploaded CPython 3.13Windows x86-64

cotengrust-0.2.1-cp313-cp313-win32.whl (286.3 kB view details)

Uploaded CPython 3.13Windows x86

cotengrust-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (634.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cotengrust-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (653.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cotengrust-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (692.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cotengrust-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (560.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cotengrust-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (466.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cotengrust-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (462.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cotengrust-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cotengrust-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cotengrust-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (440.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (364.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cotengrust-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (408.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cotengrust-0.2.1-cp312-cp312-win_arm64.whl (263.6 kB view details)

Uploaded CPython 3.12Windows ARM64

cotengrust-0.2.1-cp312-cp312-win_amd64.whl (307.0 kB view details)

Uploaded CPython 3.12Windows x86-64

cotengrust-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (634.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cotengrust-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (653.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cotengrust-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (693.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cotengrust-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (561.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cotengrust-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (421.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (466.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cotengrust-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (463.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cotengrust-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cotengrust-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cotengrust-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (440.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (364.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cotengrust-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (408.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cotengrust-0.2.1-cp311-cp311-win_amd64.whl (309.0 kB view details)

Uploaded CPython 3.11Windows x86-64

cotengrust-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (634.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cotengrust-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (654.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cotengrust-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (693.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cotengrust-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (561.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cotengrust-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (465.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cotengrust-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (463.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cotengrust-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cotengrust-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (386.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cotengrust-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (441.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (364.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cotengrust-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (409.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cotengrust-0.2.1-cp310-cp310-win_amd64.whl (309.1 kB view details)

Uploaded CPython 3.10Windows x86-64

cotengrust-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (634.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cotengrust-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (654.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cotengrust-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (693.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cotengrust-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (561.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cotengrust-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (466.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cotengrust-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (463.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cotengrust-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cotengrust-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (386.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cotengrust-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (441.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (635.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cotengrust-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (654.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cotengrust-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (693.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

cotengrust-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (562.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

cotengrust-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (422.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cotengrust-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (466.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

cotengrust-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (464.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

cotengrust-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

cotengrust-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (386.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cotengrust-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (441.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

cotengrust-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (365.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cotengrust-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl (410.4 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file cotengrust-0.2.1.tar.gz.

File metadata

  • Download URL: cotengrust-0.2.1.tar.gz
  • Upload date:
  • Size: 58.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1.tar.gz
Algorithm Hash digest
SHA256 ec605f1427e57d788ea2858afb237a1c0cfb6b360612c931c73ff2af4f9646e4
MD5 f4f98ae92af67340931dd458ed831608
BLAKE2b-256 a7d5b6dc685ef911ccfa39a7a5d1d3189846dae6f0ca2c06218cb7772af2499f

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 636.3 kB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af72ec36378ad8ad52dc1230e7a9852542bfaa7c480d2ec4db6bb9b1ce94db25
MD5 e5c60d7462c2ec65f27ce8c4e77d9788
BLAKE2b-256 64e2047b033d182b620a27fb376302dd11bcfdeaa616d1c3cd5bca2dc939bce8

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 656.5 kB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4952c007655d3b594df904470cb26e64eba50135a52a907bb6236ec14a6813b9
MD5 c61c5b20441f2101b5f7fba38b4cdfad
BLAKE2b-256 25472450cbf013c56cea376ece5eefdd7fbb1e73c1052561296b7b720266737c

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 694.5 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b6efc80d1a3a811ac9f2c3a7846a4338c5276513c4daa7946e7f51949eb99d8
MD5 ee6d1435ad5f98a12123656803d0f242
BLAKE2b-256 61aaad06b09278abcd584dbd0898efb263ff47e4c7b0c709aa39b2c9fb9528a3

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 564.0 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b0a772056f0f2bacf5e40203cdfbd9cc99a1c8d37e5a30fc3f9924a7c661230
MD5 8dcde51236e2491be21acc0ba1fdcb19
BLAKE2b-256 76b607e5afa2819a974cd5749f7be65476b552d12f29977a8f1048b6283eb003

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 423.9 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d02f212a0d9e03541ab6308c5d3f2e665fa292f514e7adec1b9d9d03d170fb19
MD5 b6ec56f6c814ceb81ecb869bbfad0a3f
BLAKE2b-256 8e6e73c59de801f323a81e16c77baf295d7c97b577eca5614a299a7368feeed1

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 467.6 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6dd584dbcb83d4d5c54711cda30b44e7031973a34058d69541452eb9c572ba7
MD5 54e234f0150b8d4a96630fd2260f56a0
BLAKE2b-256 b2c5aa151ca8e4522bf5556cbcfcff76990fec42b0757d258c8983af1c5bd685

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 466.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08029ea30ba04fbc85b99351b02f115430ee362fd22523c7cee2128a0f8cbc7c
MD5 414e8a3f132397fab35fca98ea4de0ab
BLAKE2b-256 34d1af64a69fa986e8d6dbb25cc6f41b0d388b7cd54fc26b0083c0109648f15a

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 418.0 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 492da30cdf869093d29027cb2edb8fef6fb9ee31f164405af2d4860d1c4d0ce2
MD5 a259e4a140e6bbc778b98918505b3041
BLAKE2b-256 c33fc79aff9529d5042d335ba3dfa532ab3b73b250bcea4bc6dd5c1c7616c199

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 388.1 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 045eede965afe901f67047448bd2d33bbd4e174b2017fc8999f69987ca6366ab
MD5 9d998eeb53759a6928a391616920428d
BLAKE2b-256 72c67123cdaecf18823461ac44a57767b1cd85f139e728232ffe306825b1a6b9

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 443.7 kB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9da16d967c06f4108fbfeaa9f6f17d7c8309fd2d1acfc0a5de87f5c74dfc7cf
MD5 82fa535a6dd4dd1108360f08167a8219
BLAKE2b-256 53be30cfb451b59e2fbca0fca660d098c9c3e7e7b363dc032798a89df1225126

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 420.7 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc5def6b896dad85494da93f6bbf931e1f6ddc05f5ea4f6f2d5396281c776173
MD5 3d10c8065b6c7a540d8ab42498538a2a
BLAKE2b-256 8a3b23a27c9464951159707378e9a92483f88d31358039afdb8302f321120084

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 438.9 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3aba9bd30b25578b5a4134a3adc4b595129b690b5f3217d2d0ea705a7f94706d
MD5 27cbd569031cd6c92ba1426af83ef44d
BLAKE2b-256 949030bc853d42d7e38d93651c48a21819dcc1cb449882a2658e4d23eb6e9d3a

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 421.5 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69b37addebf8b5afddf3eb310028e2365432129c309a7b9f6bc8aad8f565f5cc
MD5 d8b858381a130d06970a194628919459
BLAKE2b-256 fbd93aa2045c0b23e16d618a2c839fecd7dd6475e24f113d48b08314f0d8f2c4

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 439.7 kB
  • Tags: CPython 3.15, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2404d25adceb5e92be7b7683aee875f3f36ba648d83265971a58fd83065fbdf6
MD5 32dbe9ead2b7a8cf7710e1bc0f6c43cc
BLAKE2b-256 5ffc87dcab77f924549d6d86cd21faf3aa9fb2b3c0a7bd7ea8aaccd2cf6fe647

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 632.8 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 997c7941793fad0e78a4ec4627be3353403c0511acf6aa508d392656ef77913a
MD5 85aa7cd2b6d799aae3aba652bdf6e3df
BLAKE2b-256 c905b828e2481f3fd84ae35c73447146c31650ef5dc9541dc9daa4cf63351518

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 652.4 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26f235b03f0ddf62a1c61f07af7f91f362cc2595bc5218041daf3b7d71fa14c2
MD5 d7f27b4e08754104c51a0c3a74862f03
BLAKE2b-256 f4934a41ee41f4dd2fcdbe990d1f82af5ce0e6ad1842081f19a57b743a7a4242

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 691.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd0830f47db20db4e3b4f2758b449954a78ed09c033c6ac12bf266ae34432503
MD5 e08a1894b662cba710b4b5f5a75e11cb
BLAKE2b-256 61a29d9dcf75a711352eb4618928dcfb303b2de26247b53bf3b67d89466399a2

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 559.9 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9beb59005ffbc8a110e57792d305481a00c015039add4c5f353489a8ad36b83a
MD5 53006f6d61b1fe35bc784ea0f42fa4fe
BLAKE2b-256 d630e36684a31eb3b6ea34c96dc3e38fe67acbdc35f21427422e85da02c03a74

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 420.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 360d21ff21342e7ea1ad9afe32dd22f1b69ad4beff24403bf8970474f80fd578
MD5 569d78614e2fb34681ec632709238f3f
BLAKE2b-256 b71e1e5a1cb28ba78353db147b06e51d058e8e1f3b5116852489841bcaf1b30b

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 464.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8b7518e4b421e7536536c924015eca6a5d425d1687b2f0ca6a8f137b2f76aec
MD5 fe02a957eb49cfda7b1ec70adc134a84
BLAKE2b-256 883221282a9c51ee3a76cbad21d49e7bba6245f5bd8e740ff02b636fccc1fc7f

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 461.6 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c81ae8efad995f1f76b7211f4ff3ad1a319aafe44373eacfe0ee8cb62493a1ce
MD5 5b069c6f2dcb2cd8197a37aafdb8c9e4
BLAKE2b-256 8e1dae2f0a2d73b5f56781b7fae208042f68a07d92f566edcfb2527862309c94

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 415.6 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea92b434801bddbfee70ff62e8156703bc5efe81256d67438e09928e0a2f63b9
MD5 339f6045dda8238fe3335a3c514f041e
BLAKE2b-256 90e5add61ae4d1d869df93a8b529cddd4a641df56bd8537e7f2be5b8a14f2192

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 383.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acfce8527942c83000487d396f7b1695753248056cde8867998696d612242d35
MD5 a550ac97a73d827c9181a80d709fecac
BLAKE2b-256 4b1a23a17dd77bdaeb516738046a142e57a6d5a8f11245db66cb552d34dee714

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 438.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff73d6b0dfdb32e37d1aa35bc6ef3d0a81f2a97f97f067973f9f2e356dc4a57c
MD5 df1d6b4e76aafc112c840099cc9b1dae
BLAKE2b-256 56b85288d8e030873873eca420c7ae535dfb4de36411e62dd96592eb160cb1a5

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 263.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0d9e36c6b7a1a895c2a8445ac405a1f23a4b0cf90bb994543ab6046ab63bc90d
MD5 d9175e328d69fd052fedc3692c5e3cfe
BLAKE2b-256 f47d3e8cc421ef441fff71b6a2a040a0efddd0c15806b8ba1f511571a94ca3f7

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 306.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 816bfe08710c9e096616631dbf5dabe1d78f9194c5f1bfd0d695d4ae80f6c374
MD5 5e7269e07f1694ab647a55473b80eb6b
BLAKE2b-256 cb89bb322a450b65bb993824317634ce9bd048e1c4829d7e77672ecd363197c9

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 633.8 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2871ba552dad7438c8f1e05fbfab824475be74d817d2506336a715263f84d66
MD5 afcca05f15e2238cfbeb1c245ae1814a
BLAKE2b-256 0f1f5c3a374e5a42128e1bf1271dc4158030f2c71ddc94e0893bd0db55bb9611

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 653.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab6c0acaaac4c3db6b52795af091f0cb28e038b85fe02781f88c58ce4612abc6
MD5 3de6a5683b11cb07dd67053ef601249d
BLAKE2b-256 9097911cd1ba1d5dabb9f606d1bea476fdb4a13ebfac312184b65bb3f37f8ab3

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 692.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78d4412c58aa0e805a04d2184a467b3b5403f2cba0abdc68d3ae93716ab22899
MD5 8903b5c7a5b7c16e8db4d1392add9f55
BLAKE2b-256 27fba2504e4335c3e1c679f2af520bbfb736735f5b8db9671e04905621a99394

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 560.7 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 433c6bdbf1d1cb4217f40815c315b9d132686ffce19b90e26d9807e443b5b0af
MD5 c3457c208b286cda1fa6648fccb97d68
BLAKE2b-256 4918d573e6857a222059a8fae16583fc15f13544a2836d04ece072c7dd61c572

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 421.5 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e310fee4adecae0988cc745e29aac1f55d32eef109378d55e086daeb8a9bd62c
MD5 445dabee954bac852108f3d78b533ab9
BLAKE2b-256 6e33945bf36a389ff648ba78ccafa4bc4f79f75a2fc321d23f6a14a29e7ba94e

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 466.1 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6fe148ad81d0c7f93c2103c23da22a04725fe42e20009f9e24e53e98f20e333d
MD5 5cabd5389ebc8c2b93d544e95a78a4f1
BLAKE2b-256 5d15d44c6c24b50bb124d85ad1c49afb2f915f5bb22a12c75d30789db04637b4

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 462.4 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d96e30a1498eb31dadcfaf0d4bd55a5b3a3fba8751227394c7a26f17283165c
MD5 58dbd7f805c21a4a5a57b3131f68b26e
BLAKE2b-256 dc5a0c042396e1d3ace8cf561686fe7998ad62e43d405f1403f26a5fe2159792

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 416.6 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7568136ecdfab0bdf2ded5f3e163f04e1c8a3a3065464707e304956c7d24a302
MD5 7bd6b9b893e2562e9085bed3a04d46e7
BLAKE2b-256 87869d61b44750a87abcc7b33d9b054d0b137d1d51a70e29fb3c356b024d98a6

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 384.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fa1109001653c3862f1a7f1feb4acd07e81322bf74d6a20564d1325d3e32622
MD5 5118647191ddc949521356a68534de0f
BLAKE2b-256 0087701fd36382a3accdd9bd510d07942e1d54242ad7e2f4b6bc21a4d8e9df7b

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 439.7 kB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd209f81d86603317a9c55f63f1ba20e5e2a0a7049e6fbde528cf25c13f97921
MD5 668d156e0aa93c4f14eba06e807741d2
BLAKE2b-256 a79ee8a63546a91c728987e0b191cf9db704799bb8f9371eec63ff244e818886

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 363.9 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 573bb495db6f54b45e5f0f3484999c56f93292ad093a230b7eb60630412b1d5f
MD5 94a862a4c8a3a0cb869f1f57d0760877
BLAKE2b-256 d0d30ea264e7debed8f65aa9f58d0f072ffd1685758722eb7a362e93aad1e63a

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 408.4 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 975067aa23c6fd6740b80c5fa4ff9c5c695abc738e8ed570e13e186a9674ae4b
MD5 ffd869482c470dcdecf90a43e2a70822
BLAKE2b-256 787882827f765809b3a8a780a97798a05ce068263736118ee0f145cc087b24bb

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 263.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 263ece33c8cc44cafbeb13fc44bc5b1e684f8d8a363272a6397b7a3fce93cb29
MD5 332ef032a7963c3a3aeeaa25a1016db6
BLAKE2b-256 0590b7c3ff6671b72ceb3f9140813223296fd248c2efbfec31805639995a8a2c

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 307.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f9ed6bb73a52b1df5d7c0606907a177a801e1cb808422048fb9b63aca97ba6a0
MD5 b207d4ae87d706e93cddaeeee39d2833
BLAKE2b-256 185238dedd2c198ff7409074065da9397eaf27d7a5fc1dd21dffa9c23baa4bdc

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 286.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 944be6ffcb015fffff5f6d0d810e78fc4394d0398ea7a19253c0959f696db3a0
MD5 9812ee1d02bd692a9bc8dd3d5f35d009
BLAKE2b-256 9fa33be3a52523660ec4e5d76ab015ccc75b8280971e212593460d355f2b3a39

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 634.0 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4c204b00fea5acb88aad85e63a66375b4e5665f2e26c32ceeda8f6e78536ab4
MD5 60bfa9a127e60d2b0b2e22f7ac78665d
BLAKE2b-256 520ca0d07b429782723c948231597e09f8291d130e0d560e9c1ff52247932a54

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 653.5 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc196f67aa7dd0b2049901c8fe67c3292b4ade634448ad16c6c78177f1ce8532
MD5 4bdd85161c9ed50565a84789317e8f50
BLAKE2b-256 c44833b2d9ddb50d3029422cb51117b759f0e3aa66dff6a070ed1b6aace8a3cf

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 692.7 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04c83daf38b0de354da0ee4642f35391614d2dc920c5dc24c2f7b45d420b7d60
MD5 d6b2555d25086e6cb12757635f2fe359
BLAKE2b-256 a7f69c30c148fc569e93948223e2988ed7a294371daf2377ff8cad3c768ad798

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 560.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90d7b94f4879edd2d55efb0e152db2490f72071bb163d3a59f136aab53129144
MD5 55d728a7fa43d10c3675886af986a8b0
BLAKE2b-256 6db0c202343aa6860d5241249db8b1d863025f67e8c476b5f23b1d8bc125f9e0

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 421.5 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67ee96f314c80ecd5c0451eaddf121b293febece8f476a9792226374b4758c76
MD5 5408b8a23f10f332649103ef5fec52b0
BLAKE2b-256 d1d45e39d9e14ebbcc728de7d6c13019237bad30d41741e818317f4ef5f29307

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 466.4 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88541fe0afb1b101bcd39c4469addbf74f77f63718898044358eabf338403669
MD5 9ec99bb7500a991ddc17db920b38f7db
BLAKE2b-256 69c1fd1f3b4580afe7e3d70aacc75cdc9548c4e77e89f9c89aa2458b414db4a2

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 462.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3887a101f2193a3e1bd09857c9d43348e6d2307303f928855ed552ca14b4a398
MD5 c59fc9362721412a882351c9f2ce1ccd
BLAKE2b-256 cef64f774cdcf39fc99e877f7b7475e4a3f9045eb67ad3a4060c5df1e0d26e38

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 416.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da38896bf496e32bacdb5e12b60b771308b214d36036b4a7eece388876d29550
MD5 7ac99d6047404f1a06504f56bc499af7
BLAKE2b-256 77415a3f31838c4b7fe29ba106accdea8dc741ca236ccd6b93a811ebad6661d7

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 384.6 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65b6e0960f4e7f2433ffa90b4e16f70cfd380fc83e06ac829c2451c4f3e040a5
MD5 1a6c33d7c623f16a7eac9e79a8483b57
BLAKE2b-256 139974a206d83eace42a78055423ac4d7b7306fafdc10732442336191339fc6a

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 440.1 kB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7cae44f06f70ed97f099565bfef838708cdb1998f4ead46992dd9de05b30c56
MD5 f8c343bd03eace69715212a47b549d95
BLAKE2b-256 d5c4ccd1d8edde744cfb5909e543000bc8f4ba5801d2bdb18dd61e950ed53312

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 364.1 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6a6a80718630667da69161fa4aed6e5678cd502e7898d3f16e1ed6810fa2a7d
MD5 92e8adbb6d80728171251fd6b6cb7700
BLAKE2b-256 8bce27a981616555f79ee97c8abe03715808c47610106f1babe7cf736a7713a8

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 408.5 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d868d51ef0d9fc6226f443a34c7f443242978a762776ddb26cb0f371169ea4c
MD5 b0905238db07e6dde2099c2d3cf33589
BLAKE2b-256 67172c2f1d745f71b2d6c711cf39fc641af5b28fb7b59fdff009e50976a999ec

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 263.6 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e01db317ad12c026bf4aa53fcc9549b54100a8834c10c2e29cfc795a318c469f
MD5 a86270edcb3e3f4c116c9c93870e4216
BLAKE2b-256 a08d8c26aa2d41d05e73ac6e7ff9beff0e7b36ab895ff60f57ffa38aacc8ca2f

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 307.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 268df93a574d317c6ececfbb201183bd1d3f03f948af5be025709f5d545cb01b
MD5 0267ad568c8d56387e7d8bb907942d84
BLAKE2b-256 b3b95c9bf1c3331ce3db6f97c3ddf44fbf41b617cff18d634a67337e1f6b2404

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 634.0 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4cad2872c380011412d13a7287d36046f57e47ab9a9cca6e496957317f7fd6b
MD5 b0d3a1b588968e1c128932fc58e6d145
BLAKE2b-256 c20db8967eecc0aa673037d489fabc9d62dd4d78202eae93e07b592cd3209537

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 653.8 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e4bae27aec0f0fb6e63b8083301c4828421887a208b85d3086332701f7fa4ca
MD5 b9fc06de34e985d9d2cc800b3cafc2e1
BLAKE2b-256 e80233742f684d1baa455e7fcfbaabba4c03d067bd004a92e69d618155e1b0b7

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 693.2 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9cc02e4a32743b8a67edf8f15110754fdb791df1389d2527fc7bba3b275f6115
MD5 ab6f0a6690c8258453459cea5fee612d
BLAKE2b-256 0887201b4bba19ace534568cded431c53bf13cc590dde2b9da6645a7323b2162

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 561.0 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 922c0f22be1bc80e3eaeecd9ee53ee925e1bf0a0b88744eabac59fdb2b5e01dd
MD5 e7eeda8b662284d22c35c8f1a4c5e598
BLAKE2b-256 8b83f7eac1fa7b9670276f69a1475889f4314ebee094127304fd7efba8d84818

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 421.7 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c43ce99f2ee1f5433881325f4beedb429c5dc00f9556ea8b57f73696c77ff5c3
MD5 d0e05966b578b0b789bde5bfc3634340
BLAKE2b-256 b06015b2423107f2ae5384dcbc0f922c0fb60d8f8028d2798aa2b7009f699d2f

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 466.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 794ac065edffe13e28be86615d209931a861db2b4d87def8a279f1771e5a5919
MD5 406ac00a9f068f886eb58f7d14cad00b
BLAKE2b-256 ec6f0091ad3c40ff615b672750c2a0ef27909b683b37eaaac2e1b6797ed59305

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 463.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 719a88d4e74e009fe32430eb4f1d024d32c5da3387bdbf238a3201bff9f404ff
MD5 2818c88297885b1499cebcb035c4f3ed
BLAKE2b-256 be66d6c174b87df2f5014c655040b25e632dc045a96f15f0ced32dc40be7f3dd

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 417.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 100e0eb23e33ac377524dae15d5dee2ee5acc0aaf7c3b0b75fc951684a1d8359
MD5 52e33a0f33ddda91571bbf868126d0cc
BLAKE2b-256 21653ae2de8ef0afbc0aa9384dd854ecbe6b8ac2daaa4b5f9bf73689cc281273

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 384.8 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 660bb69067ad24062dae962fc660b2f3cabc6c611e4f9daeb6df85c660109773
MD5 241464428ad7600773bca766b002d3bc
BLAKE2b-256 bb73fd56e72f4d5c53e97f63c1608c7d76c1959ac71bb128a55ab2b8d4a5128b

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 440.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 72cbe4a3c57a0f5ec30d93ee80a2cde46cdc655c5c0495bff69c7fa449321760
MD5 9fe2b6d4dd5d8096475e2570ba793fdd
BLAKE2b-256 f46c37972b4654c17f97fce958858ab1dbf53d875eb6bcc70ba4e279b10e20cd

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 364.2 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16e949355d0c2a4aba708047a2aaae6888b291430fbd95d2d7f6ac9ec9119706
MD5 70cd1cad487fedb57ccc4c916b2d21cf
BLAKE2b-256 92c94fb8aa5fe3215989b90cfa31b0e7743af91d5326a23f60122b6c34062a72

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 408.5 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0832c9012d1deee6d75209b2232fb9256bf498be2d68dd4a4d9feddac5b6dd94
MD5 63724467c06a526e6ea704cd3094e9fb
BLAKE2b-256 577ec6fe5ecf20a6729e23f9160b355f5ab8fccf4b9c7226bb8d8c9d10172185

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 309.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b715b4719620de503f4f68ddd7d511317526a958b8dd55b52fc48aedecd260f8
MD5 0e5b46e15174d52c75ea14b3e31d9432
BLAKE2b-256 f02b975af8324447c9ea7aa7e8d1904ff3de647b656051d84f1cca7388103aae

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 634.5 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1ce02efb4477c0dc851251f224e1c4e9a4ee6d1b8856cbd4358b9048237c7e5
MD5 ff18656a27f4ec93f33d46e1dfe73afd
BLAKE2b-256 6ece9015a5b60eb67f7a0a9d8d83a31cd0a8b9117ac83b85f90555171e1ab220

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 654.1 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d38caeb3483e447c8353010880dc5a76a88e8e0cf073cdcc91657cb0b983a12
MD5 0acb2e458907039b4ba6d196524de10f
BLAKE2b-256 e2deacdf8c4eeab0038f9620e24492ab7ab1b9c652a3548e17674fe31001666d

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 693.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9271de7b7b1923282d3a962216bb9574d59c6ddc9a6f3b5ad4a2d28c49010002
MD5 a796169fa5535e3215a9d0ce260e77a2
BLAKE2b-256 1e943968fca6d493f26e18f18587f987e7a79ac6d3f3555770eb2534d3b1023f

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 561.4 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2dd7a2df313e3b306d9a8df2490bd6fd5004699560f7d37ed994a9f53dd465fd
MD5 e679ec3ec1d65642fe857a6a653d7609
BLAKE2b-256 c92499dc5273118a611541f85398ec928ed54151a30b2271e42338cf9da9b2c7

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 422.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 724186f16022fc968f738d5f6f104f17a0c455d20ad4509912f52f31b9c4cc34
MD5 b3d1a74460938ddfe075b54147cb6db1
BLAKE2b-256 f5b0e38ef006ffe314adfab89dec50afc209bc1b13031ea26905fd94202ebbe3

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05219f7b53be2a90c1b420dc327cbfc99b79dd62fae1530999e56ac579078b84
MD5 825a4df3be813cf667d3f28d85a9f8ea
BLAKE2b-256 54dd91b694d5bd20cbd0f198a6e963da681fab90a25412c14efba0557524d510

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 463.8 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f681741aa58dc8160ddcdff6008b8fabb1fd0a250a6e3dea6d1d7b15b4ba327
MD5 0582e8bdfa23b44190e31ffaef3e974e
BLAKE2b-256 38ae2ef42b8704cec203e53069652b920ab2f7f685bab4dd748ec57c32cc9946

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 417.0 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fed0efad31b7403bc0f6ca062dea95f8b89632867f2328b82582f2fae694fbf4
MD5 785be0abd90316f1418a39897bd06b68
BLAKE2b-256 bc1334dbf2cd7c107ec5d0379462e2dd6c41316cfc4bc3d227d91a8f4e613d4c

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 386.0 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fe23e35bac8036077a49abfc4ae6d67f47fc83b041f282bc5105eff501f52a4
MD5 0ae868575f4fa09444ae6aabf3a154c3
BLAKE2b-256 2b0071751135c5ef849157174f81e3e6548cb2f30b2da91bc883806292f3a271

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 441.0 kB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9041a6ca0c773810cc0a08daf5ba13f1d6a898d7fd25a81410f3842bcac88fee
MD5 6752f22baa3e8251308acc9fa7ed4171
BLAKE2b-256 516e817a4775791fe40edb5f363baf7b5c1fecc1f543e414728437a9c1d8f7fb

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 364.5 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f6e545bf59decda9372ad675998a7aa5ec8fe131f69bc5157cea252a01c058c
MD5 4a5b283eb1c39934b9035b52ccded2c5
BLAKE2b-256 0484ad742f6b78a4a9e03c00f0ffe6632212c5b9aa42b9baebc7d70cc315e977

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 409.7 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3daf300e143c54511863cb82c5076334e06b769d44dda075aa6012f2db462910
MD5 28d6673849f3b34ff93663b3c9fd9948
BLAKE2b-256 fa1cf261c800ce7c93f8aec95a68b65e9a59ca41e60b787a3c4b4110de2a19d1

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 309.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ddba7d9ffcb783e773938a28be95b946ef0ef970d5e4fda02d40b43a273d6a9
MD5 0bdca5091df55900ce7f86d6884628d2
BLAKE2b-256 06503e6cbe419045ed582f4b5c9b75f7c1269581fba8f43bd93d2579f9125daf

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 634.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0adf26893a886a6e507797aa5eb4b2b18f2972d39020fac2b738869ea20c2b8
MD5 17df93b52d0d50af17c5739ba83fc245
BLAKE2b-256 074052c202b3e9c5e5a6f48b6ac3b31f9f65c11641e3d0d8b0ced84c80ff2a17

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 654.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe9218dca1e3520f8bff6a989350bddfba43a6a0882cb3f06004afe6a86161ae
MD5 6bb25f98b4e5aa8baca853f151691c96
BLAKE2b-256 718f4271faf6cbcfe1b745a543dd7f36739851fb1bf6930ea73c7540670b449b

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 693.3 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6eeef933bac26867e9a4b768fdbefc719c5211039f43c526284be8600f30a1a
MD5 ecbfd1e353f9739c9356d2aa20187e25
BLAKE2b-256 4eb5a101bc8893be6f2ec5eddeb43eddfda79eb3a9d3695fb22361ec84bdd65c

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 561.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe9f6ca54f37c12ff85704c5e03eb67bb96fd4f9c76ef891b50a320107946d54
MD5 f966697cdc5628ae9d8097bdb1e98989
BLAKE2b-256 873b710beabecbc3e3d3f90892a4a73c2e924ad09d5d6b2da6f47618c0877e73

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 422.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acd6580d69fe98f54f81da3e6b6e81e7424f0e21809d673144f874b4007c3722
MD5 4decf2e21ffcaf28e295324290f99be5
BLAKE2b-256 765a1a314ec640b027ff09eadd3b4b7f2cce9ddd8e0a1089e7f53bdf65418780

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 466.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b11e493fbf628aedfdf509efb60cad358ce9ae93ff2ed67ed9b6143af4d401c
MD5 56b135a1dbb083306c3b9339dbf53601
BLAKE2b-256 a5554e64d1fd5a7528adb00a436aa06df91f04b067865170b3811e78c8fc937c

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 463.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 643b812c4e2a13e854d90a3d6cf54a1474ef713a5b51b119e7ae3cf527ea875d
MD5 f96a4d7219a6403732266949bb7c3001
BLAKE2b-256 c104ec32bccb35df6592c834594567ec4204d867474979dd48b3567936286372

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 417.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f30b71e1b83b178d9e501d1439316900f800efafe44ab899bd882dd898da8d23
MD5 c0a2193a6068f2b77b73a4dfa4372102
BLAKE2b-256 577ab36568cd8cf62cf56f41003355303765250f09ac6dec3e669285ca12698c

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 386.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22e8b187412dd363269359c96ed599a83c9a528895e8496bf8f86f1a8df1b982
MD5 1d9779f5473a377f0597f87017703832
BLAKE2b-256 cbb0f67a37c0f50b20f7e2ef7f270a43691cb635b85b691174b1388f19318ae9

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 441.2 kB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0fff36c11d06502be732165da7d408f94885f6c3fd1c008871d40319c5a6b61
MD5 8d3c157fb5178414a1d0de41aa0b1601
BLAKE2b-256 c2d6d59a3a555f561b6d857d7c36eb3d65b1eb1c6aaa069e41dca1e44e139ae2

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 635.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 551ced22fbb99cf9a833a9bd9e4237b80da32d0dbac73af9f72b849fec651254
MD5 7950b40b4dbfc8ce849b40c1a9baa032
BLAKE2b-256 bc306f1a810628d4651f32d42d5b07aa516e6f931967b4e4f9f2bab711d46a50

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 654.2 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c8d547b150af415853dca6ebc706d882504213716280f72b1c962c0bbc21196
MD5 93559b584d785e89aa2fb335f2542509
BLAKE2b-256 4ee6fdabd11459d951dc3802ad3ec74eae4ab3d00244e39c5d918ac18ceec959

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 693.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0395597920154dd8d811e9ff7b9f0df3ef9474235f964a0e7f03aff30c95f355
MD5 be3493e5b67e00e2fd6b29fc50c71057
BLAKE2b-256 b9cccdc10091ae5570b7e6278d5c43b5a4151ced18f8d6bdd70272d1c3720240

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 562.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4eacb6bdcc83d418114d63c1bf0c2e7f5355737674b76064f795670bbb01cc5c
MD5 7f8bd401780fd2c016c6ee3a9ed93530
BLAKE2b-256 102351ae2ec13f47dd1e4b2c2dc3ad39023590bd5c355acd5c6855d1054d0cf4

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 422.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5325f2e1b2dc248e45cfd96579351544b164de30a0f8ed32d4f7a6b92012e4b4
MD5 0e4856601054e2f2ba99717dcaa0b9bc
BLAKE2b-256 b47aaa0f40eb0bfbe2a2ed4fc27bbb94089b2ebbee5037b1561b45827b9a8d1e

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 466.6 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca356a6db3a1143ba7436855f8787e5713430241c19d700a8c62a57a4a079dc9
MD5 ced03adf27c5ae5c5091c54cc63026a5
BLAKE2b-256 9362a16a03ca66266166a79f89f3a6f2c2e0b739e79a585c124605d584762567

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 464.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecfbf88086b687e3eb5dbf2a0a757ce06b50ecad3499a20dd5cca913131fcc4d
MD5 30dad1f5a04a9795108ad07c5552ef06
BLAKE2b-256 41793c211eef1d2476cb953b3c1f6936e15e8647e6672245461c2737d92d2f99

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 417.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bdd1dee1fa25a59dedb3b7b94335886eb02c19e9f317bab32bffb25734c641c4
MD5 51c6842b4819055a11a6bfbb0d8e031a
BLAKE2b-256 8f2c6024f481e5e0094fe77590cfc3893ab30b8af6f13db93d6b312f153c76a8

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 386.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76f33a84f341034c2ac302c03996fef79d6aa6c66cbdf8e2ee24192993c5764a
MD5 a71bd0766f8d2857664d08b3f0f825a4
BLAKE2b-256 def06e2556c55df5b2374820efed946ead2f76b5f60fdf00ea8c9cfa241cd6cf

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 441.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf52313a71fde6b7d046261e31e5ee9cf25c0a2120b29e231e78b8f1ef168c9e
MD5 417a59739404038a9df05197a14ffc29
BLAKE2b-256 3b9a25d6beef6a4ca3a22d7b95484f2cd7157d55239c07bf1ce8b3ab4aebad90

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 365.1 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2724edccfffbbfca508cc0a4a36c9b83a269604ca48a2c924dd64e22ac1c90f
MD5 3bb0ca7b3bf62f9a9e5e667bcc36e8c7
BLAKE2b-256 2ac85ba4d8585fd1e87295e30a066d89d9e2a79d88c05b0297734b3d61e4117f

See more details on using hashes here.

File details

Details for the file cotengrust-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: cotengrust-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 410.4 kB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cotengrust-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fc8b07cec4b695fafaa56e47878a4ebc8b41e3a9ed2de4c6c08db548f367ad0
MD5 34486febdd633215225648efac917b7c
BLAKE2b-256 2e36bbfcee0d5d075809766a591df5ac210d155582d236a069c63da17cb7477a

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