Skip to main content

A Rust-backed implementation of the Xenakis Sieve

Project description

xensieve

An implementation of the Xenakis Sieve, providing a Sieve from a string expression that filters integer sequences into iterators of integers, Boolean states, or interval widths. Sieves are built from Residuals, defined as a modulus (M) and a shift (S), notated M@S. Sieve string expressions, and Sieve structs, support complementation, intersection, symmetric difference, and union operations on Residuals with operators !, &, ^ and |, respectively.

The Xenakis Sieve is a tool for generating discrete interval patterns. Such patterns have boundless applications in creative domains: the Xenakis Sieve can be used to generate scales or multi-octave pitch sequences, rhythms and polyrhythms, and used to control countless other aspects of pictorial or architectural design.

This new Rust implementation (and Python wrapper) follows the Python implementation in Ariza (2005), with significant performance and interface enhancements: https://direct.mit.edu/comj/article/29/2/40/93957

Strategies for Creating Sieves

First, we can examine the output of Sieves built from a single Residual. As shown above, a Residual is defined as a modulus (M) and a shift (S), notated M@S. In the diagram below, three Residuals are shown: 5@0, 4@2, and 30@10. As can be seen, for every M units, a value is articulated at the shift S. The final example shows an application of the unary inversion operator !30@10.

Residual diagram

Complex Sieves combine Residuals with logical operators such as complementation, intersection, symmetric difference, and union. In the example below, Residuals 5@0 and 4@2 are combined by union with the expression 5@0|4@2. Combining many Residuals by union is a practical approach to building sequences. The final example, (5@0|4@2)&!30@10, shows "removing" selected values from these unioned components by intersecting them with an inverted Residual (!30@10)

Sieve diagram

While all Sieves are, by definition, periodic, combinations of Residuals can result in sequences with great local complexity and inner patterning.

The xensieve.Sieve (Python)

The Sieves shown above can be created with xensieve.Sieve and used to produce iterators of integers, Boolean states, or interval widths. The Sieve constructor accepts arbitrarily complex Sieve expressions.

>>> from xensieve import Sieve

>>> s1 = Sieve("5@0")
>>> s2 = Sieve("30@10")
>>> s3 = Sieve("(5@0|4@2)&!30@10")

The iter_value() method takes a range (defined by start and stop integers) that can be used to "drive" the Sieve. The iterator yields the subset of integers contained within the Sieve.

>>> s1.iter_value(0, 50)
<builtins.IterValue object at 0x7f538abdb9c0>
>>> list(s1.iter_value(0, 50))
[0, 5, 10, 15, 20, 25, 30, 35, 40, 45]
>>> list(s2.iter_value(0, 50))
[10, 40]
>>> list(s3.iter_value(0, 50))
[0, 2, 5, 6, 14, 15, 18, 20, 22, 25, 26, 30, 34, 35, 38, 42, 45, 46]

The xensieve.Sieve features two alternative iterators to permit using Sieves in different contexts. The iter_state() iterator returns, for each provided integer, the resulting Boolean state.

>>> list(s1.iter_state(0, 10))
[True, False, False, False, False, True, False, False, False, False]
>>> list(s3.iter_state(0, 10))
[True, False, True, False, False, True, True, False, False, False]

The iter_interval() iterator returns, for sequential pairs of provided integers that are within the Sieve, the resulting interval.

>>> list(s2.iter_interval(0, 50))
[30]
>>> list(s3.iter_interval(0, 50))
[2, 3, 1, 8, 1, 3, 2, 2, 3, 1, 4, 4, 1, 3, 4, 3, 1]

The xensieve.Sieve instance implements __contains__() such that in can be used to test if arbitrary integers are contained within the Sieve:

>>> 5 in s1
True
>>> 6 in s1
False
>>> 10 in s3
False
>>> 30 in s3
True

The xensieve.Sieve instance supports the same operators permitted in Sieve expressions, such that instances can be combined to build complex Sieves.

>>> s4 = (Sieve("5@0") | Sieve("4@2")) & ~Sieve("30@10")
>>> s4
Sieve{5@0|4@2&!(30@10)}
>>> list(s4.iter_value(0, 100)) == list(s3.iter_value(0, 100))
True

The xensieve::Sieve Interface (Rust)

The Sieves shown above can be created with xensieve.Sieve and used to produce iterators of integers, Boolean states, or interval widths. The Sieve::new constructor accepts arbitrarily complex Sieve expressions. Sieve is generic over unsigned integer types and defaults to u64; annotate the binding to select a different type.

use xensieve::Sieve;

let s1: Sieve<u64> = Sieve::new("5@0");
let s2: Sieve<u64> = Sieve::new("30@10");
let s3: Sieve<u64> = Sieve::new("(5@0|4@2)&!30@10");

To construct a Sieve over a different unsigned integer type, annotate the binding accordingly:

use xensieve::Sieve;

let s: Sieve<u32> = Sieve::new("3@0|5@1|5@4");
assert_eq!(s.to_string(), "Sieve{3@0|5@1|5@4}");
assert!(s.contains(6));

The iter_value() method takes an iterator if integers that can be used to "drive" the Sieve, either with ordered contiguous integers or arbitrary sequences. The iterator yields the subset of integers contained within the Sieve.

use xensieve::Sieve;

assert_eq!(s1.iter_value(0..50).collect::<Vec<_>>(), vec![0, 5, 10, 15, 20, 25, 30, 35, 40, 45]);
assert_eq!(s2.iter_value(0..50).collect::<Vec<_>>(), vec![10, 40]);
assert_eq!(s3.iter_value(0..50).collect::<Vec<_>>(), vec![0, 2, 5, 6, 14, 15, 18, 20, 22, 25, 26, 30, 34, 35, 38, 42, 45, 46]);

The xensieve.Sieve features two alternative iterators to permit using Sieves in different contexts. The iter_state() iterator returns, for each provided integer, the resulting Boolean state.

assert_eq!(s1.iter_state(0..10).collect::<Vec<_>>(), vec![true, false, false, false, false, true, false, false, false, false]);
assert_eq!(s3.iter_state(0..10).collect::<Vec<_>>(), vec![true, false, true, false, false, true, true, false, false, false]);

The iter_interval() iterator returns, for sequential pairs of provided integers that are within the Sieve, the resulting interval.

assert_eq!(s2.iter_interval(0..50).collect::<Vec<_>>(), vec![30]);
assert_eq!(s3.iter_interval(0..50).collect::<Vec<_>>(), vec![2, 3, 1, 8, 1, 3, 2, 2, 3, 1, 4, 4, 1, 3, 4, 3, 1]);

The contains() method can be used to test if arbitrary integers are contained within the Sieve:

assert_eq!(s1.contains(5), true);
assert_eq!(s1.contains(6), false);
assert_eq!(s3.contains(10), false);
assert_eq!(s3.contains(30), true);

The xensieve.Sieve instance supports the same operators permitted in Sieve expressions, such that instances can be combined to build complex Sieves.

let s4: Sieve<u64> = (Sieve::new("5@0") | Sieve::new("4@2")) & !Sieve::new("30@10");
assert_eq!(s4.to_string(), "Sieve{5@0|4@2&!(30@10)}");
assert_eq!(s3.iter_value(0..100).collect::<Vec<_>>(), s4.iter_value(0..100).collect::<Vec<_>>());

What is New in xensieve

1.0.0

Improved memory management of nested Sieve using Rc.

Made residual class integer representations generic.

0.8.0

Documentation and CI improvements.

0.7.0

Documentation and CI improvements.

0.6.0

CI improvements.

0.5.0

Documentation improvements.

0.4.0

Implemented operator support for &Sieve.

Improved documentation.

0.3.0

Code cleanup and improved doc strings.

0.2.0

Implemented symmetric difference with the ^ operator on Sieve.

0.1.0

First release.

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

xensieve-1.0.1.tar.gz (13.2 kB view details)

Uploaded Source

Built Distributions

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

xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (313.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xensieve-1.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

xensieve-1.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

xensieve-1.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (399.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

xensieve-1.0.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (312.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

xensieve-1.0.1-cp314-cp314-win_amd64.whl (146.7 kB view details)

Uploaded CPython 3.14Windows x86-64

xensieve-1.0.1-cp314-cp314-win32.whl (144.4 kB view details)

Uploaded CPython 3.14Windows x86

xensieve-1.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

xensieve-1.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

xensieve-1.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

xensieve-1.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (313.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

xensieve-1.0.1-cp314-cp314-macosx_11_0_arm64.whl (250.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xensieve-1.0.1-cp314-cp314-macosx_10_12_x86_64.whl (251.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

xensieve-1.0.1-cp313-cp313-win_amd64.whl (146.4 kB view details)

Uploaded CPython 3.13Windows x86-64

xensieve-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xensieve-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

xensieve-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (398.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xensieve-1.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (313.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

xensieve-1.0.1-cp313-cp313-macosx_11_0_arm64.whl (250.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xensieve-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl (251.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

xensieve-1.0.1-cp312-cp312-win_amd64.whl (146.3 kB view details)

Uploaded CPython 3.12Windows x86-64

xensieve-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xensieve-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

xensieve-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xensieve-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (313.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

xensieve-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (249.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xensieve-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl (250.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

xensieve-1.0.1-cp311-cp311-win_amd64.whl (146.1 kB view details)

Uploaded CPython 3.11Windows x86-64

xensieve-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xensieve-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xensieve-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (295.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xensieve-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (313.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

xensieve-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (252.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xensieve-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl (254.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

xensieve-1.0.1-cp310-cp310-win_amd64.whl (146.2 kB view details)

Uploaded CPython 3.10Windows x86-64

xensieve-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xensieve-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xensieve-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xensieve-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (314.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

xensieve-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

xensieve-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

xensieve-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (402.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

xensieve-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (314.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

xensieve-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (305.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

xensieve-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (401.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

xensieve-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (296.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

xensieve-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file xensieve-1.0.1.tar.gz.

File metadata

  • Download URL: xensieve-1.0.1.tar.gz
  • Upload date:
  • Size: 13.2 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 xensieve-1.0.1.tar.gz
Algorithm Hash digest
SHA256 3609312df82404e56099586032155bfad8d254b7cd69816dadae6c713a4cd4c2
MD5 234b485cf4dd265401bfdcbc8cdc55dd
BLAKE2b-256 4a1d8e8a2ade5d6a63f75dc073ecdd74fb3e52f4170ec1430f7f28c255846781

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 284.5 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 xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fcf45cc8e736f8e2334fa1d91b9bbe16f78071c31aee0b0d0435279f51103b8
MD5 4e6b2128e82611872ac6ab279fc111d8
BLAKE2b-256 89c9eac97f6c23cbdac220088dffca871f4670ae9543b838b69e141d29c91c95

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 305.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 xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47df4dc9f91159b3c01762945a6a57f2d5a01830dbfe0c4fa5f3b1b711cfe686
MD5 8c00273233fc6905d98eb6b4ea652d68
BLAKE2b-256 8fe3018eb8262703b422f596d60c497805cb013c4adab3112de9c7f66b579533

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 401.3 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 xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0789ea85354bdc14bae56bad2763e6bf7e5ecfa41f63948ea9a1a4546fa2f9a0
MD5 f2ed946e0399ce0debac4e4e6806fff4
BLAKE2b-256 cacfb11794596e2cbc2ed0419f4579d2299fed6e5038c24794d5727cb4064a54

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 295.4 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 xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ae45bff70ca88ca99b958ec1824fb9b72b48d804b1eda05d110bec7a848e5e6
MD5 b444409ee1907b015ad019a0b84b09ea
BLAKE2b-256 1fbc45d9298f249c4ca8920150b2cdc23cbace12ad46a7c5208ab0301d9e9e94

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 283.7 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 xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f084ebf0ddde265d0b9223ef3ded6a3c36652c2de2a5dd57f75a44c94e5047ae
MD5 66c1aac2199d7c020adb85feee56a867
BLAKE2b-256 147ac6cfd214227f056fd9a67fa10aa0e1c7fe3a0aad8e3b971d78c623bae60f

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 313.2 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 xensieve-1.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae4576934145d1e146722085e58b89d3d6f0a1d50d2f6b789cf83054095bcd60
MD5 4c036e741d17f2f2ca8e01bd5203bd92
BLAKE2b-256 c063f0c386a682db1168dfa11b97da26971ab1f4d33db8e4b8206d47f66ed8c0

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 305.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 xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf5fca6a307e4b7e23500e08aa787a7a6e242c077db44ceaace7f5e2595beee5
MD5 a01254b0adc6df60e65db040fcc7e6d2
BLAKE2b-256 b9912ea550e9f59d61fe9b5f79fe9f1cd9313cc50440e3432ed053d0c93b488c

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 401.6 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 xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb58fb9b28ef19b3cca8003dccc9f0d6e48061580eca82caa50d0820e7172716
MD5 a8483df9b40d829525997d20d89c8801
BLAKE2b-256 877a6a9e28f07188b06b5f820a32fa2a5a00899950a8f0fd5b23f34b6915ef73

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 295.2 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 xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2721cd5da314130b67bbf9d37e2856f6a424621b8dc2ceefc927dfed6b882884
MD5 744714902c41c6388dbd854f8722522e
BLAKE2b-256 c3e1340308e7ecd9ab7c2ed7142e4e23b3f2280a4967d1c38b1fe6840bedb0ca

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 284.0 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 xensieve-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49ecf1e399d9a78827393cc87a2a4792832cef5ac6ef0f49b74e7224d39dfd8e
MD5 df1d55481098b490856bb06724e1a740
BLAKE2b-256 b5a7f220552df15fa83a016b9f346dec700733aefa9e417e2b453d66375da87f

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 305.2 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 xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a424c3bd0b0d5c533d3ec3b4ba8faa0c7346848004dec9bcadfef6fce90f10d
MD5 bd26f6adf6290eba2bffb24f5fc2c552
BLAKE2b-256 d5044ffabe761c6f811f0014d7d0fafbcd6e0fc98eab5b863ed955709bb270ae

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 401.8 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 xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1b63c2ddc2c874c6fb585c248594f9f0212d563f1ec4e7f8e683857caa14a50
MD5 bf85db49976a8bcd479d2564b4526f3d
BLAKE2b-256 97f9a1be53dacd8cf85708da56a85e13b4e510d89e7c603b7a8445fee57a7ede

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 295.3 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 xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bff46e9a9d44876f44a4339f20ab815cd5cc89f6076dfd76d986700004a3692
MD5 6009c7b3083680fe03d0f3ef07de5d1c
BLAKE2b-256 b2b4181a8e1230dbbd82fa3a9a1142f4d659b179afa9ae857eb9c4805a280539

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 283.9 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 xensieve-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74c0b6aa8a186d5f7d2a7cefeba244ec34ccf38733838ebab37b91902fa67014
MD5 37f7fdcb355d6d7761a43e7640ccd00d
BLAKE2b-256 e7ed43c0fabef08ef2e5d75c9a3ff80aa6d06c26512aa3ac55fe7926bacd3e44

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 284.9 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 xensieve-1.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bc21516e9f3502bcefe26817562b8b93c49cf16d465e63ea82b8fa9b0ac93a0
MD5 f5300680a0a44750cf10b336a742806d
BLAKE2b-256 c557aaccac67ec3c168f958ae09b88cb25e5ab230c7ed765041f03f511d7741e

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 306.0 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 xensieve-1.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b312c5a5b1dccd30ca6a1b29834701412d738d5d565958c73cdadafce061853a
MD5 62af23aafbd19f2e3aaa33293038c54a
BLAKE2b-256 024607fc3502d80c3ec6b4324b8332e70fa5bd38791e38499be4213b11eada86

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 399.7 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 xensieve-1.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36e08dde641cd8a9eedc604fbe7fe6e846998bb3e8c8c8ebd8e9c74c0e7f606d
MD5 94bb68ca228add945bb51fe6747605df
BLAKE2b-256 7e73593dd31551bd0740f0a4ecb92eeac984552cb13877e2ffcfcffbf834dba0

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 295.5 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 xensieve-1.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 787a9f46cc05d94928051528cd37c5a6d002f0b2b6615b268c3b8eb54744c157
MD5 9415eff9ed22c6604eab3bed1dfa1f05
BLAKE2b-256 0d86ac1e5a142a7d57c0776059ec653d29fe7becaef83cd19456c7901b9246a6

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 284.4 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 xensieve-1.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d32f6ed0a04a3db828422c507ecc8e4d83a8777b158ec85ca1d11a3544d7dbb4
MD5 86697940883ac1f7b402c68a719015e4
BLAKE2b-256 d5c137f6069690dfb0ca80ab664d89317b75df3c892412aa3ed7503488e2dfa0

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 312.5 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 xensieve-1.0.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 abb4c79c1c510191b3123cbbc3fd3730d8b1f3ad83b3219be25bca368b44f0ed
MD5 dd9e5da19b8436d1cbcea8536ac90a13
BLAKE2b-256 f3a4b176cf96c425d41b518d65fcef9bf7e0fcff8d9473ae4b7c48df5406c54a

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 146.7 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 xensieve-1.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a9b1b5854c6e58b738deec39bcc236613ae5ab225e69e55973184fc7cdb7b755
MD5 9dd4bb5b9253e710db3010e5ad9b7355
BLAKE2b-256 4e26ce48ee472213712869f1e816a8ea019d72794b3eca6da6b8b487ce291b17

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 144.4 kB
  • Tags: CPython 3.14, 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 xensieve-1.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ee82eb6d04075278deab8421d30e25374f1c5cdb88832381f30eefc7ed2d3428
MD5 7f230492480a8c4ac666f6aedee6488a
BLAKE2b-256 6c5889be1ce0b6b54d275fb8687d52d729cfa8715ffe798aa677d48868103510

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 285.4 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 xensieve-1.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ea26d67408f0b127ab427c48423a4ae583f746e1113bd6618a1b7b7d1b581de
MD5 85724c9357c57e59e28c9f3b280490a8
BLAKE2b-256 c36397dbe76145d556fabdef835cbe4c31d00bbe085f991281f1b529cf3b9ab6

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 307.0 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 xensieve-1.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 682f25868bf9b00d1a745c068f9371c0b2dafc05b3082ac5600817ef68751624
MD5 a1dd7b0241454aef65c30b228c4e8365
BLAKE2b-256 78afaf7f471e3c6cc60ff7531681b7d83482c25e28c87a8385cd5fd60d3c02b5

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 401.5 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 xensieve-1.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c504ea121fa68992a04e270bff86fdb3645cea3b425ca463aa98c61c59a0dcc6
MD5 b65013de405d5f00c23e64c7d66fdf37
BLAKE2b-256 751286503ee5da77635e249ebf48c19cb694a9ae83dac6ccb0ab4cd17fa8b714

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 295.9 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 xensieve-1.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd57f0986e841b9347465bf4d526551d7994f332711bc93a0fe1f50060e5f57b
MD5 572bd9d97a7eb61d176f7cdf0d6942c0
BLAKE2b-256 6817a26a3453a018f67839c379b1426be6e69330bc94d0582c29527b6d8cbafd

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 285.5 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 xensieve-1.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd728e88434a65f0805415fe51c8641a5008dfa58a1984758d99114bb87ec8dd
MD5 2ebf01a397a036a60d38b23288c7def1
BLAKE2b-256 fcfb4e05d33c895894f802b56124e42bbd32d2be4e0a6bad28896bfd0d1efe14

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 313.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 xensieve-1.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1415ed5075a2e5f56fd3c5cbac00cab0c5c24cb9b12978ed177dec587be8bb4d
MD5 93b6cfa9312c67cac292994e7c40c790
BLAKE2b-256 1115cf6d9feb67ff1cffcbb21d5ac1def8a27d94e9e3d31c8e86b4c0338b61f7

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 250.4 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 xensieve-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7f686f921766219da499849e689277c188ad036fdf5cefa9cd8dad409f9c0b1
MD5 63f351c31039e4c8b43e2d74fbb2b515
BLAKE2b-256 d7d755c43215b0f70dd342e7a72603c068708e2537487f42e49a38b71709376d

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 251.6 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 xensieve-1.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a75fa9aa4747b7f9fc3dfd34b325b6a14df99c96e0917294ca172b88ad82dcb
MD5 84d034e6d64c90f49fe2037770828546
BLAKE2b-256 acfb945d42331b14f97aa5d0c296a10e0af76afac987afb517cf1ce9648aefea

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 146.4 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 xensieve-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f882c3a3d097cf77eb081d71fbd3be1c1d55bb07fc73cf4d005e0e12b0037b8e
MD5 8e1db046ad256a89d453fb30b2d2fea4
BLAKE2b-256 829e40758f1ed8a676c4c6d5e94dcd01df1435777b93459a9df734e3633bf04b

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 285.7 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 xensieve-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ee566f19bcdbacddb9a6d606db35ef71392d853b1ca0b720f4ca265b08c47f2
MD5 3b2d043dc61d686caa014271f7e7c34f
BLAKE2b-256 b9669e8ed90fecfdc69280beead1733e53c1e51ba468e23ad45014bfae90b0b7

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 306.9 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 xensieve-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1178a7f816fa2793c7e5c07b2222d8ce35afeae26aaad13cc2283fafaed98ebb
MD5 4975a6ab2b5b55ca25e3d75d2f1effb5
BLAKE2b-256 687e3cd3e1455a8397f75d39ff760c7ea2d573f63e174c2bd9deac96f018f404

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 398.3 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 xensieve-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1bf21687077e138de557fb8a5383749781c1bb8f70a818ad0265960df599d8d
MD5 a85644f73b4bf5cc6e8ef40ad8185b26
BLAKE2b-256 11c38d660031c4e15dae7b6560f2e4778f05e935096bddbd76684eba489ab497

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 296.1 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 xensieve-1.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88afc9aaa3a8f97c8bd17471e62ad40faf509d4599e356c2fe425a9e3e95739d
MD5 ea935c25c4d9c8d9e2d295d481b48a2a
BLAKE2b-256 3af3dea4446679b9d7153f9241c4feb300cd2caa1f2ad57164b679c15dbb01a8

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 284.8 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 xensieve-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 046ce363bdd5c588aea34d6e0070d85393ed5d89ec3ed6ec345b635f320dbddc
MD5 793c766df2dc894fe87d7373a05b904f
BLAKE2b-256 1e5352ac9f63c2ccf4bcdb652ee9aa4ce78f33c98c185c33dfb81e79d7971174

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 313.6 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 xensieve-1.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e55a28d1a9a56bb1d0c6183c6b88000f85f9f89ec586c9f79ef5e3ae40d2ca82
MD5 2b575b603eb2a033ed11e061c88cd8d5
BLAKE2b-256 5b7e0ede9153637f48b7509589d190be829069658be5e1457efe460ed5b7f79f

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 250.0 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 xensieve-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5963df621a93b10007e375a0dadb99fedc6199480df859c21e8c89da2afb41a
MD5 8c976009b7821e04e3961693e51a3509
BLAKE2b-256 481c2af00ac8155d7b39d610587eaf12b7a7e486bdcbd7055bde10dee5a28a55

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 251.1 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 xensieve-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b196ba3d1b9d65fa0d6576e62bec8e2f7086379f11c491eba256dc0cda00f15e
MD5 56ae6649ec0ee86a69be9bffd8f64cf7
BLAKE2b-256 6da04412b8605f385d3166205d6cadb9c7d2d54f0ddc452e913bd77cd8c78f9b

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 146.3 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 xensieve-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8ed12f2cb980a09d1f95782b09a3ea43cd8a52ff7a7a282d83aaaacb876b504b
MD5 3cafbaee436b46f0131d23c08004ca1b
BLAKE2b-256 f39bb3fa864dfdd21fa8ad66f9061ed94f5867482672ae0ad965deb449d3499f

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 285.6 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 xensieve-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e384be7a6df1777d17c2d384423a6d2ca6cca675a92442fbce77422eec7e6e76
MD5 31328987957bbf6f14aadcaff65c05b5
BLAKE2b-256 534eaef25845a62853edb691923e1fd2cada745ef45fa2a65e385e6e4485ec0b

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 306.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 xensieve-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ad7da7c3e87549cfad97f632e27d7cc86d60a0bdbdd0d0cc94bfdc0ef442f86
MD5 4d7fc1dc8b3a04416076aa97afb90bbf
BLAKE2b-256 f493de5050169abea85256256d2e9866097ba2f0554b793ec35ebb5fdcc8ff28

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 401.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 xensieve-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14a3a6a1194889398fb69d2cace44fae9e29d0d0a54103411d471c055b96aafd
MD5 109a5062ab6dfb799d0fd3598680ca6c
BLAKE2b-256 36bc963a34921ca5d33d39014955db03af6ebf6a6656aa6fbde1a2260dc03b97

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 295.9 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 xensieve-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36ded4c5fa2367b71d304b31ca12639035e0faf067f5cd4b59583ad42f1382a6
MD5 ef6acd10bc3a3a77bd1a81164cd06bf8
BLAKE2b-256 1c07703f7666bbed73b71dacb7a905b166865c5b54e3a179c177af2357217f8d

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 284.9 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 xensieve-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0421443a444675fbdbfcf422539a7328090173443aebb518ddc4af226738982
MD5 bfa5a4a1db094689cf29db16741f0645
BLAKE2b-256 a37b1921494e11c1d03c9f3bb79bbe1847c4c9a825d746885d0a464de1d7aba4

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 313.3 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 xensieve-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70d923444098d1115984c6c2ec5be3fa59a9b61e2d3c0b192b5936bf307100d6
MD5 045b2212b7e3695662d9a4609f889ae8
BLAKE2b-256 25c2c58bb899ed4e5c52a96b0cb424b8614c984e025b348cf013c09842bdb04f

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 249.6 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 xensieve-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cecc83a41aa9e711606496074725ca74a971d7baba3463a423a88d5ea390e0fa
MD5 41c8c6bed3ad8be79cfbb652f7b103e4
BLAKE2b-256 1fc0a292ec26755b76ea8049714b4e2ccd99ecf9da05e535f1cee61d6b369dac

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 250.9 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 xensieve-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae125fadd2dddd0bd8f74fe046aa893b150fd37a293fefb4ecbbd4fcc13235c6
MD5 f0cd5a00648beae0d4420d6ede3d8a56
BLAKE2b-256 ce2dc02c5cd36f11f6ea84035cc179f3986a04d21bf457c7ae4a8c8458b0d5e2

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 146.1 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 xensieve-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 404e577cdb2139957279f50317b6a3d58694590b319f97ea763c65182b577c23
MD5 83931023682b5b307b775448e326d7f4
BLAKE2b-256 fc2cc6945f019e45b13a1f98d2fa449bb2b981ee3a66e7d4d157f7af23f81462

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 284.8 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 xensieve-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad909d5134e206c95b7977d0cfe9a42c377d7e0752ba3a88935457f0c1f0ea58
MD5 1d6147f29cc2189306168548392128e8
BLAKE2b-256 076646f2f60f238fefc5adaf033958d19aac00a880b2b94ac0086cd33a8506f7

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 305.5 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 xensieve-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53f3c4d9e961bea165a1e8b7b783764368636ee12d1e3b2b64cd70ddb5a9524b
MD5 a7b03655772cb6e09a520dd01b528a5c
BLAKE2b-256 dd612bdaa2d7a02218339ec3d695d71ecb2d67bce555daa298850dc658a641f8

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 401.5 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 xensieve-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b151c3e25b584ad98fe7c60a057adc5299061b9ac50a9877620fdcb150032e1a
MD5 6ee53f56a698632b10e1e7d89d1ee86c
BLAKE2b-256 64307c866f4fc0edf8c345a4886a6403ec0222dfa47251e6b5729f32697c525f

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 295.9 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 xensieve-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4f7f99f3c13eb011d97674ebea25ee66bbe977c8dd71efc297dd6824cf0ed4a
MD5 4ad1a050f2c7358ac8495cc095a510a7
BLAKE2b-256 74cce72db898a1d47bfc9028ff7c2f6087fe80f0f87af7e57344f34b2d1b4e66

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 284.2 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 xensieve-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 046369fb24b47f7534a1bb1359dfa4c7e19e47f9de5e7b0efe7252565d809b41
MD5 0a3eceb2f0542a8da40cdcd8e8445954
BLAKE2b-256 92d144f19887b344c0007f359274e850bc46f945d8a9ffa1e3938d83e66cf851

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 313.5 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 xensieve-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca29df69f9c54fa89a946b268278a8dd9059dca26764c06d15f77284cef50062
MD5 be94f95719403b1a7a3a676d13768266
BLAKE2b-256 206927eab53f5c75395c761467b5898085524548cc2c39c117763010887ede26

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 252.6 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 xensieve-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fcd235ceddcba100f646d81d43231237c7b296eb258df675b60c383d690ee5b
MD5 29121e87cc01715057eeacf2b0640788
BLAKE2b-256 599cbecd3e438140affa6813a2eeb6164c96d34be829d8ce5ad4f3b4fa7746d0

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 254.4 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 xensieve-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3189e03999fd2d33ba8a70e49f6bbf2839eb5736c710f67aaf3a8e99cc0fbeef
MD5 225f890f2af72c35a8d712b6cf37d2b9
BLAKE2b-256 e89ac8abcd15a3cc2005e9b4ef02d011a536490f8a256753e728a29fd4a0235a

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 146.2 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 xensieve-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 351293a050a1d6ac3b76cdc5827697560c6a0cd59fc0af442e0c650b81911cd8
MD5 940c27770bd361dea257ca30e937f264
BLAKE2b-256 a45ac49888815e6cc1ae092262e60a84c8cc9003924ae25bc59b03c66b72ce4c

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 285.0 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 xensieve-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 577f0886fdc023dccd14644a0f93bc9da39580075b36f41b8c8e920b3c2fef1b
MD5 f82cad12ff2273639a58a0432f7fd311
BLAKE2b-256 dbdb9dd4b6acc8eb6d8aa7ad8e5364bd62e2ec2d8587b8648ca59e535ea5b223

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 305.6 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 xensieve-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46576ac8b1cc9adaa80546969dd34026a0f7ec3bc27f9d81c276d3a6087e50f6
MD5 145bb41079db326a0d45646cb6830a7b
BLAKE2b-256 6a276b78aff78fa889333aad04f91350800f25176dabe3b564551803b17b1e92

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 401.7 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 xensieve-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68fb2c417a67de021df8e88f24c9f6d83a35c314ba5d398d364b76690f77dfa4
MD5 c7876435b95f813c0da516c84fcffa9c
BLAKE2b-256 0f1a66c6376326374c7493e249601ecbea98fe9e61544f53037ab311f98039fd

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 296.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 xensieve-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ac5bc5b268fe59d3df38d57c5b7dbef401f343ab2c9b8fd0f0f06da49c94560
MD5 bf0018a68e3a26b12b4fd9b12d68a700
BLAKE2b-256 31080dc4bb77d6c32d762e8fd16d8d820c1f283a67f6e9af1fd2eaa63049803d

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 284.5 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 xensieve-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37612a1f87e627fa9020c7d2751b608acec1b48d9692f535c4a30fc6189735d0
MD5 00c840cdbff7dd14eecb84ffd44f6f77
BLAKE2b-256 81c12e9cab49d4fcbe49cb9b72f1aef58a22f91af40724a611ebe6d55bb8f650

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 314.3 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 xensieve-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f955290a0f0aa7707c8b42cefbcf899c43659cb97135ccd46364355a4a04166f
MD5 5056237020e7e1b25103dc9210583820
BLAKE2b-256 d768b872d4e5ac0789e9b6f0c6b3805ceb10d8e00023ee6cd5143b1fbb662630

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 285.7 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 xensieve-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b4269d5a47db3f011bd01711536802dbeea6088b869de18653a89261b53f94f
MD5 f12cafabe0f0f79cc23770f722413b29
BLAKE2b-256 de661ecfb06be31ccfec5f497a9c9bbfad8ec369bfdd3438944a74d40aafb923

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 306.2 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 xensieve-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a275057effc4f4eeb48ea06090e378679b4dab18a190a8db65f1a7979a26caf
MD5 47935b4e5d847fb0134022b89b417f97
BLAKE2b-256 ace9926f0664a9f7a0cdd5796d09f5d4fe627e0f24fa75486d4a993dcc0a1f65

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 402.2 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 xensieve-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e06da695856355a8ce02269d25e04f23ca14bbe55e341acee4c13d9f7f05eada
MD5 51832867409d45114fbfe5f89c945bba
BLAKE2b-256 f688eeab4e7711f84e56068335a044ed95107a07aab872395a0d068449a3320c

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 296.1 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 xensieve-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9bf0abe92f3637af0020c908f20bce798209f87128af21d18e1cd8bf1503d215
MD5 9e7c74799fa236ef4eeff9e8d59facf6
BLAKE2b-256 e6ae5266b615bfc941ecd0c1afa1d18cc31d70148a743b51b0eb5fb881b1823a

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 285.0 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 xensieve-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c5f0ba02213e8c588f5d0fba7817a71de5b1b63a74a56f4936d38cc2f8744a6
MD5 df44978cde8739190241bef395a0aec7
BLAKE2b-256 3aef5d347ce340369d13a9c10564efdeddacc467b7e24f512879ac0ab2946da6

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 314.3 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 xensieve-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 961368cec6bbf283950d2ac0f9dbfc6d6266dab618bb31819b1d6b04048bc769
MD5 320e20177eacd91cd788087b275c2247
BLAKE2b-256 68a48c5dd2df97cde09214b5f98c4f33d295e2f558b58d3d8ac55392e86588f1

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 305.6 kB
  • Tags: CPython 3.8, 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 xensieve-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 255f38fd8391f4f6c809c8f7156921e7859cfa3ab5b26cae561cb95ce8213273
MD5 f508be9157b0017a7da19d81f43e2693
BLAKE2b-256 c814dd2646697e530b542206377532b9c5a989a3afba6878e20cd04e6c0f5e9a

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 401.3 kB
  • Tags: CPython 3.8, 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 xensieve-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55a231a3288c070c920b485bae3b20d3105b587a99ab7021f722d3bb18f983e4
MD5 32d03f3f0a7e380ee552f605731797dc
BLAKE2b-256 a7883338f306d89e75cc1e183d6f69d89dc736230de8fdcb300686d6c2240a61

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 296.1 kB
  • Tags: CPython 3.8, 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 xensieve-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b4cfc5ed47f46b51275752c4ba32612275c1fe17cd9961b9aa39eba7be8fa3b
MD5 244c78f77c01723fac9b449e130c63f8
BLAKE2b-256 36041f07ed2bd26fe7eacd89c991feaaae4731f1fe0f25f9832bf540c365063e

See more details on using hashes here.

File details

Details for the file xensieve-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xensieve-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 284.6 kB
  • Tags: CPython 3.8, 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 xensieve-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ae2b2a8034bf888a735b2abf285410306c3d52cb762aa2ff3a8fa5c42bc6a9a
MD5 057b37888e56e64f7198a242d7ea950f
BLAKE2b-256 8c189a9b5d7f2c7f54bf1ca45a84812b3c4abb65ccdc8b10b1fef8a6facaf4a1

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