Skip to main content

pyndeval

A python interface to TREC's ndeval.c, used for computing diversity retrieval metrics.

Getting Started

From pip:

pip install pyndeval

Or install from source:

git clone https://github.com/seanmacavaney/pyndeval.git
cd pyndeval
python setup.py install

Usage

import pyndeval
from pyndeval import SubtopicQrel, ScoredDoc

# provide qrels as a list of tuples
qrels = [
    SubtopicQrel("0", "a", "A", 1),
    SubtopicQrel("0", "b", "B", 1),
    SubtopicQrel("0", "b", "D", 1),
    SubtopicQrel("0", "c", "C", 1),
]

# provide run as a list of tuples
run = [
    ScoredDoc("0", "A", 9.3),
    ScoredDoc("0", "D", 8.4),
    ScoredDoc("0", "E", 8.1), # not in qrels
    ScoredDoc("0", "B", 7.6),
    # C not retrieved
]

pyndeval.ndeval(qrels, run)
{'0': {
  'ERR-IA@5': 0.3933,
  'ERR-IA@10': 0.3907,
  'ERR-IA@20': 0.3907,
  'nERR-IA@5': 0.8297,
  'nERR-IA@10': 0.8297,
  'nERR-IA@20': 0.8297,
  'alpha-DCG@5': 0.4052,
  'alpha-DCG@10': 0.3998,
  'alpha-DCG@20': 0.3997,
  'alpha-nDCG@5': 0.7868,
  'alpha-nDCG@10': 0.7868,
  'alpha-nDCG@20': 0.7868,
  'NRBP': 0.3906,
  'nNRBP': 0.8620,
  'MAP-IA': 0.5000,
  'P-IA@5': 0.2000,
  'P-IA@10': 0.1000,
  'P-IA@20': 0.0500,
  'strec@5': 0.6666,
  'strec@10': 0.6666,
  'strec@20': 0.6666
}}

Supported measures

pyndeval supports the following measures:

  • ERR-IA@k
  • nERR-IA@k
  • alpha-DCG@k
  • alpha-nDCG@k
  • P-IA@k
  • strec@k
  • NRBP
  • nNRBP
  • MAP-IA

Measures with @k support values from 1-20 (upper limit from ndeval.c).

Measures are provided as a list of strings with the measures= parameter.

pyndeval.ndeval(qrels, run, measures=["ERR-IA@7", "MAP-IA"])

Reusing qrels

If you're running multiple times for the same set of qrels and measures, you can speed it up by building a RelevanceEvaluator object, which caches the internal qrel representations.

ev = pyndeval.RelevanceEvaluator(qrels)
ev.evaluate(run1)
ev.evaluate(run2)
ev.evaluate(run3)
ev.evaluate(run4)

Iterable results

for result in pyndeval.ndeval_iter(qrels, run):
  {"query_id": "0", ...}
for result in ev.evaluate_iter(run):
  {"query_id": "0", ...}

Release files for pyndeval 0.0.6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyndeval 0.0.6
File Size Uploaded
pyndeval-0.0.6.tar.gz 15.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pyndeval 0.0.6
File
pyndeval-0.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pyndeval-0.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pyndeval-0.0.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pyndeval-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pyndeval-0.0.6-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pyndeval-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pyndeval-0.0.6-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
pyndeval-0.0.6-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pyndeval-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pyndeval-0.0.6-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyndeval-0.0.6-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pyndeval-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pyndeval-0.0.6-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyndeval-0.0.6-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pyndeval-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pyndeval-0.0.6-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
pyndeval-0.0.6-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pyndeval-0.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pyndeval-0.0.6-cp38-cp38-macosx_11_0_universal2.whl CPython 3.8 CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64) Details
pyndeval-0.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pyndeval-0.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
pyndeval-0.0.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details

Total release size: 1.3 MB

Release files / pyndeval-0.0.6.tar.gz

Download URL pyndeval-0.0.6.tar.gz
Size 15.1 kB
Tags Source
SHA-256 checksum
How to use checksums
dfb0094dca3aeb8b66a006dbe7b4448be8f36cdf804827576bfd2c4d83b7d23c
BLAKE2b-256 checksum
How to use checksums
d5b78e0d393f9bbb74c2ddabbcee9e3efefc6e0ba6b9156ec62f56a01dbcae29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 21.5 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
2862037125164b0293b5a17f5d418dc92a11a51b3ec9ac117de9cf4fb12fef41
BLAKE2b-256 checksum
How to use checksums
339d81dea0ad7f2013e663805b2207cb79c6a214254116861dc7439b453b79af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 23.2 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
3192c336813e23f3b1c57e622a07c6aea6bfe40bea5944b0f050e4ad25d0b3fb
BLAKE2b-256 checksum
How to use checksums
c252f2ca886fac76772e0ceea5725619701c63a10feacf9939da37a3a460a21e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 21.5 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
c5369b58f25eed62464f47168f07b069a29785420fae0d10f66caa1579b58a6c
BLAKE2b-256 checksum
How to use checksums
4d639e310c5ec26019ae503579a92f34838bd226dd4d8a26b491291217729743
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 23.2 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
be78fc5724b116756394ca14aff56f37cb183b2e602f0c4f2641641a2b51880b
BLAKE2b-256 checksum
How to use checksums
44c2ceecf9731d99f4d504403695af6dcb7bd198c0a8266253b4efe9b35ffa8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 21.6 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
0d8cd8ca027f8b2e114d0d81a604dd2b6d3898d8be06440251b244cb0646b07e
BLAKE2b-256 checksum
How to use checksums
3d74871d477b13ece208954ee6d7a225552e29b0e0c05ba095994a179cd50146
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 23.2 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
bede98e0cfc14f82c491ffecd6892cbf6c7991b3b4b362c554c6e7d217d1b055
BLAKE2b-256 checksum
How to use checksums
ec52a53f1062eca7c7114f95e3c8cd075f8f442679d210ea8deae129f7582e5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 56.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
199925c319b3cc4db137bf2ed075a550ad1526bdc49d8767f6a81ba20b1af9f1
BLAKE2b-256 checksum
How to use checksums
6c797058430925e774845218e3d792b68682cfdbc2c670a5c8ba007cf1d5aa54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 57.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5430d7b898a521265387a636ea016b7f180c7659915eb24523a236d6a1e3b608
BLAKE2b-256 checksum
How to use checksums
921b88b0605d79d5139fe45db5b3debad4cea76ecbba271931ae43dd87e7cf99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp312-cp312-win_amd64.whl

Download URL pyndeval-0.0.6-cp312-cp312-win_amd64.whl
Size 17.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7e9259c12136187ad8482ea74feac7f7a6c73eefd18f831525e0cc6dcaaa83ac
BLAKE2b-256 checksum
How to use checksums
4267fb4d4935934d8a5fdcd23be6fb2e838cb7ccb1fb18388856145589b377c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 56.4 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
db6968bfc2cdbb10cb4a8b3b8c08bb821a696cbfd9fd7dda9e691edbb8981208
BLAKE2b-256 checksum
How to use checksums
2d7fe2b0069a0ff8f24551e4cf4bfb5146fa0cb24d3ff4628d04cadd4bfbe173
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 57.3 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f37a7edfde06a8f7b7672dcc7679c4eb313d81e5e351505686d4c9e09bef9ecd
BLAKE2b-256 checksum
How to use checksums
3bf1d0ce974370c05b8fa56b6a1207215d5d43264f4602f91bd7d6042f784f28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp312-cp312-macosx_10_13_universal2.whl

Download URL pyndeval-0.0.6-cp312-cp312-macosx_10_13_universal2.whl
Size 40.6 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
38850be5fc5641a54b794a66a9355f4ac947c390d5244a47d474cdd242f36b2a
BLAKE2b-256 checksum
How to use checksums
676981bc52bfb7fcb194f57de7749bcb404ee222efb861caf00eac7150770f4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp311-cp311-win_amd64.whl

Download URL pyndeval-0.0.6-cp311-cp311-win_amd64.whl
Size 17.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
afbd42fd983302677b21d41748b469b17084232095721b00d226f2dcbbca4c23
BLAKE2b-256 checksum
How to use checksums
e9c453db58921432407db28f358f7aa1c84bd698a6b49f892f2ec1cc628935fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.11.9

Release files / pyndeval-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 56.1 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e1cf331aaa643242ca6eaf607c7ee95ae138fdf4c8c92837a7d5bdef58e37e6c
BLAKE2b-256 checksum
How to use checksums
8504eef1d904b0ed652fb2efe200bba487c1cb7015991ede6aeecae1fff24265
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 57.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8020f4a4a9f54a52fd89824b01fce716dd58c4998d76e8790f0b13c3c3b27fbc
BLAKE2b-256 checksum
How to use checksums
2444198bcc5ff7bfc3e1924a9662c99fa1e1c6f4062b40b4947ccd2bba3f58fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp311-cp311-macosx_10_9_universal2.whl

Download URL pyndeval-0.0.6-cp311-cp311-macosx_10_9_universal2.whl
Size 40.5 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
b507e3a232df94419500d51eb2024da63110714c4886641920c2ecef9f29bb06
BLAKE2b-256 checksum
How to use checksums
90b8350750bf22f14f7d7a4d0d94825b1247b5b3f2e3a50c9c1bff26b3874060
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.11.9

Release files / pyndeval-0.0.6-cp310-cp310-win_amd64.whl

Download URL pyndeval-0.0.6-cp310-cp310-win_amd64.whl
Size 17.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
8732385e0f4e2df157b4675b4cc3b18c4a1cc0f67da0d81e5985cd7709812e81
BLAKE2b-256 checksum
How to use checksums
920abb68a895cd6a17cee418bde503037e22b09d28c703a131e4c79ed0caabc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.10.11

Release files / pyndeval-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 55.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9c9335efccb979da513121eb7496bd918104f51a53317b135a3cf20745c22605
BLAKE2b-256 checksum
How to use checksums
9169fdc3902d16d06b10af3404cb2c90496502d9b15ffe9861de4a24e023549a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 57.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
48ef1d5788772cc0b5bcb39de6f113e1708c00573f6f89ae5bbf62303d68d0a1
BLAKE2b-256 checksum
How to use checksums
cf0dc2fc8b2c1d75b5dad896b4aacb6b718408b2b6a684eaf77f7bedb6e6cf55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp310-cp310-macosx_10_9_universal2.whl

Download URL pyndeval-0.0.6-cp310-cp310-macosx_10_9_universal2.whl
Size 40.5 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
47e04702f6b2abd0a458daea6c72a98854a2fec5bb4e8bacaa80899b13778d0b
BLAKE2b-256 checksum
How to use checksums
6c6d1637e045b51825f5c6329aa569a2f56e3eca59a34fb8f390715252d3c179
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.10.11

Release files / pyndeval-0.0.6-cp39-cp39-win_amd64.whl

Download URL pyndeval-0.0.6-cp39-cp39-win_amd64.whl
Size 17.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
1aea395ba75c25a07d0d7939fd878f98cf76530dffbfc1fa0c5fc4d9836c5362
BLAKE2b-256 checksum
How to use checksums
b1aee568b807cde8dd3f37387b3bde05f1fecc376d1970f4025fbc74a5aedf82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.9.13

Release files / pyndeval-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 55.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
394c370235644199de2ffcb8b4690839100a8a552f2a8fb83c8065ffc5c915a8
BLAKE2b-256 checksum
How to use checksums
e636cc966a5682821e99411285381c835fdf3cf1d27ab5f9c3716a77b0c5a2d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 56.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
cf8cbd36050cbd023f726602886ddbfc820d93b09dcf2d3ae9f46705b4a29d23
BLAKE2b-256 checksum
How to use checksums
a2a7aedf60db3f40906aa7b826a1169a8cd6c971543d55bdb5943bcfbefb6b43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp39-cp39-macosx_10_9_universal2.whl

Download URL pyndeval-0.0.6-cp39-cp39-macosx_10_9_universal2.whl
Size 40.5 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
8516333c23fe152b799534d164aed40c38ff58f4025cf46dbab9997ee35181cb
BLAKE2b-256 checksum
How to use checksums
448aeab6cb9b2d1f8e76ff63eb805ed0b5c106c86421375fdc305097dfa54ba6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.9.13

Release files / pyndeval-0.0.6-cp38-cp38-win_amd64.whl

Download URL pyndeval-0.0.6-cp38-cp38-win_amd64.whl
Size 17.9 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
3447b71f17cb5adb87412e3b5594d5fc56119502be58bd9d61a242b6e642c0e3
BLAKE2b-256 checksum
How to use checksums
729827fbdbc03ede4f405abaec1546f1bd8060cc9b8a466d325b35eb0a28c261
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.10

Release files / pyndeval-0.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 55.5 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
93d5dcbb917e7e63a57f0dda9913a9d877182284abbeeeca2ee89891b59b6f18
BLAKE2b-256 checksum
How to use checksums
73c53c7ec550ca1bd6dc4dc2e2b64587f12d990e65f377b1249d45e0ae93c2f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 56.6 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1af52d0f956eee0da19d2aae8e3405ea524df86286eeb568d8bf03f65468838e
BLAKE2b-256 checksum
How to use checksums
320d5237c1390024f63d84040b2e56dd9d72714cb8cc043ca826ba55de588230
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp38-cp38-macosx_11_0_universal2.whl

Download URL pyndeval-0.0.6-cp38-cp38-macosx_11_0_universal2.whl
Size 40.6 kB
Tags CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
5e2aa1f49fe6bf2245ff9238cece57e163e54a8f0ee6ae84ae38969da1278534
BLAKE2b-256 checksum
How to use checksums
8e5d04b6a2e240c8694076f95bc98773497f4d8a931ea6c940052dd7f8042747
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.10

Release files / pyndeval-0.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 55.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
25112770dfe0884ee7ded7ca3cc39e3cf42e61e9d362fa779e47812e45e8f5c0
BLAKE2b-256 checksum
How to use checksums
d8b40b2a397e6b3f518c0031e450f1392268d2dc49087045854d2ee065c7cdd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 56.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
68d1cca438897f6d0d4b221fb65e948a06a1182665d4eae89de2b1802e1b767d
BLAKE2b-256 checksum
How to use checksums
88f484cff3b30076f97c4c80fc6ed387fbf5b5bf1e35fc7947377249b78b0f8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pyndeval-0.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 55.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cfa69176f3689958c6672aafc1c995822ade3b61bc37cd98e8423bf9c04816da
BLAKE2b-256 checksum
How to use checksums
bf433ea3fc267fb87a425376a453f8c195589c4e645299d1523a8f881f38c5a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release files / pyndeval-0.0.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pyndeval-0.0.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 56.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
517828daabc6b3e76038fcc0320584c468ba9e63b903eecd11d3169042d4163e
BLAKE2b-256 checksum
How to use checksums
0d6099502a6bba81858e40e922f0e0d5c3eb468275a8a2e7c8cff8567f79d87a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.6

Release history Release notifications | RSS feed

This release

0.0.6 This release

33 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page