Skip to main content
Files added late

43 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.

DOI Build & test (master) Documentation Status PyPI version Downloads

Want to cite KDEpy in your work? See the bottom right part of this website for citation information.

KDEpy

About

This Python 3.8+ package implements various kernel density estimators (KDE). Three algorithms are implemented through the same API: NaiveKDE, TreeKDE and FFTKDE. The class FFTKDE outperforms other popular implementations, see the comparison page. The code is stable and in widespread use by practitioners and in other packages.

Plot

The code generating the above graph is found in examples.py.

Installation

KDEpy is available through PyPI, and may be installed using pip:

pip install KDEpy

If you have trouble on Ubuntu, try running sudo apt install libpython3.X-dev, where 3.X is your Python version.

Example code and documentation

Below is an example showing an unweighted and weighted kernel density. From the code below, it should be clear how to set the kernel, bandwidth (variance of the kernel) and weights. See the documentation for more examples.

from KDEpy import FFTKDE
import matplotlib.pyplot as plt

customer_ages = [40, 56, 20, 35, 27, 24, 29, 37, 39, 46]

# Distribution of customers
x, y = FFTKDE(kernel="gaussian", bw="silverman").fit(customer_ages).evaluate()
plt.plot(x, y)

# Distribution of customer income (weight each customer by their income)
customer_income = [152, 64, 24, 140, 88, 64, 103, 148, 150, 132]

# The `bw` parameter can be manually set, e.g. `bw=5`
x, y = FFTKDE(bw="silverman").fit(customer_ages, weights=customer_income).evaluate()
plt.plot(x, y)

Plot

The package consists of three algorithms. Here's a brief explanation:

  • NaiveKDE - A naive computation. Supports d-dimensional data, variable bandwidth, weighted data and many kernel functions. Very slow on large data sets.
  • TreeKDE - A tree-based computation. Supports the same features as the naive algorithm, but is faster at the expense of small inaccuracy when using a kernel without finite support. Good for evaluation on non-uniform, arbitrary grids.
  • FFTKDE - A very fast convolution-based computation. Supports weighted d-dimensional data and many kernels, but not variable bandwidth. Must be evaluated on an equidistant grid, the finer the grid the higher the accuracy. Data points may not be outside of the grid.

Issues and contributing

Issues

If you are having trouble using the package, please let me know by creating an Issue on GitHub and I'll get back to you.

Contributing

Whatever your mathematical and Python background is, you are very welcome to contribute to KDEpy. To contribute, fork the project, create a branch and submit and Pull Request. Please follow these guidelines:

  • Import as few external dependencies as possible.
  • Use test driven development, have tests and docs for every method.
  • Cite literature and implement recent methods.
  • Unless it's a bottleneck computation, readability trumps speed.
  • Employ object orientation, but resist the temptation to implement many methods -- stick to the basics.
  • Follow PEP8.

Release files for KDEpy 1.1.12

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

Files added late

43 files were uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Source distribution (sdist)

Source distribution for KDEpy 1.1.12
File Size Uploaded
kdepy-1.1.12.tar.gz 171.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for KDEpy 1.1.12
File
kdepy-1.1.12-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
kdepy-1.1.12-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
kdepy-1.1.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
kdepy-1.1.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
kdepy-1.1.12-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
kdepy-1.1.12-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
kdepy-1.1.12-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
kdepy-1.1.12-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
kdepy-1.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
kdepy-1.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
kdepy-1.1.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
kdepy-1.1.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
kdepy-1.1.12-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
kdepy-1.1.12-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
kdepy-1.1.12-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
kdepy-1.1.12-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
kdepy-1.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
kdepy-1.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
kdepy-1.1.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
kdepy-1.1.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
kdepy-1.1.12-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
kdepy-1.1.12-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
kdepy-1.1.12-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
kdepy-1.1.12-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
kdepy-1.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
kdepy-1.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
kdepy-1.1.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
kdepy-1.1.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
kdepy-1.1.12-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
kdepy-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
kdepy-1.1.12-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
kdepy-1.1.12-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
kdepy-1.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
kdepy-1.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
kdepy-1.1.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
kdepy-1.1.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
kdepy-1.1.12-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
kdepy-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
kdepy-1.1.12-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
kdepy-1.1.12-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
kdepy-1.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
kdepy-1.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
kdepy-1.1.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
kdepy-1.1.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
kdepy-1.1.12-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
kdepy-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
kdepy-1.1.12-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
kdepy-1.1.12-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
kdepy-1.1.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
kdepy-1.1.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
kdepy-1.1.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
kdepy-1.1.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
kdepy-1.1.12-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
kdepy-1.1.12-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 25.5 MB

Release files / kdepy-1.1.12.tar.gz

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12.tar.gz
Size 171.7 kB
Tags Source
SHA-256 checksum
How to use checksums
eb3a62abc5a982f5a30ec0a3560e2f9cbd3d19bc4f721b2ebbde06949d52af61
BLAKE2b-256 checksum
How to use checksums
60a4ee1680051ef29215e9ef2d4c09719076d93e0a48c7a8784523fbb59368a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp314-cp314-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp314-cp314-win_amd64.whl
Size 264.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
86028eb0b7d15e32c81e02b22e5f51dfad2336290dbd9ea1851d7e4de47b2676
BLAKE2b-256 checksum
How to use checksums
cf7c0e52bf82c0e83594f1a839b4b346a4e71c496def03756c2a5e6b3114a01f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp314-cp314-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp314-cp314-win32.whl
Size 251.2 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
33137c685552cebb14ffabc77308d0df9e456746f8a10ddbf951e156da80cdf7
BLAKE2b-256 checksum
How to use checksums
91b0be0e3f011b7c52c6135f7340104691f4a7b58ef975fb44c4c03d222076b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 712.1 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ae13a57639420ea212e86fe43c7541f28ea5273ff08165d08af650db93bf6217
BLAKE2b-256 checksum
How to use checksums
687d69bf40f154a807ab43c94ee147024d0cccda6787fb04ded1bf27ac6907d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 704.4 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6e7526917397e999b28e70308fd75102f963f0686629a3b52fe9ea4a7a01a338
BLAKE2b-256 checksum
How to use checksums
22a8b4453f07afcbafc7021122958c2ff9d2a677afc94ff2489ccba16db83b6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp314-cp314-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp314-cp314-macosx_11_0_arm64.whl
Size 275.8 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
830532bff65c55d8e8db388c3747af177fef3546ce96e1d9477d17f69c5433ac
BLAKE2b-256 checksum
How to use checksums
ef551fe92e0620f1152aebad45dce32eb86a096cca6a05c1409d12066b69d03c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp314-cp314-macosx_10_15_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp314-cp314-macosx_10_15_x86_64.whl
Size 276.4 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
6b0db948fc79a328974aa1d36a71c959fa1293f1398f9e85f787f970410f1ecf
BLAKE2b-256 checksum
How to use checksums
3bb3e6ac4603fbba837436b0bf36af40fd01fd2143035a64f764b609dab1a464
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp313-cp313-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp313-cp313-win_amd64.whl
Size 262.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f64b740a61f60076630cfcdd1ff011c70d1ce1a7ceab05b14763d95163140e46
BLAKE2b-256 checksum
How to use checksums
9f798cf9f01f653f2db7a48c9ae249dd818b2664ed9e30f5f0bb2414af783c70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp313-cp313-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp313-cp313-win32.whl
Size 250.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
c5fdc115c212df1a622997a9d8ff9c1bae8179562cc8f2e9710adced96abfd20
BLAKE2b-256 checksum
How to use checksums
d1a44a0ca91bc6dce8be7bb7dd647fbd576d22c7ea7cb58a6bfc96dc49f6064b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kdepy-1.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 679.8 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e62facb46ea6d6eff92a0f8ad054bdf4b5a84ec66444b5cae9d5af1f828b07b7
BLAKE2b-256 checksum
How to use checksums
577e53bc000edbe1ac835b351ade98e1b12d9e152814f6cf11021f7766460905
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kdepy-1.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 670.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e0c5a22798499154e1aef0378fbeb04f8832dd74d05246fcdbb5438e3c4424e1
BLAKE2b-256 checksum
How to use checksums
3c9f7f57e42a6dbec5d6275bf7d960cc3ef9408200c72aa7bbcd8b79a08cff9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 717.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9df4cf5d2c8b0d8f79155e2dc8aa6ec66904cccdd2472b00b92ff92b25e3d41b
BLAKE2b-256 checksum
How to use checksums
6cb47e54f9e6de01cd3460870e4f14f0a7291db471e3df9885e5f5ad7e870b95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 706.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
55bb8f3820cb1ca674f21852adeea309159711f48c969827c85f1cdb80605b9e
BLAKE2b-256 checksum
How to use checksums
c7d62a896676010eb17bbc9858b867a79b0a45d254617cc7e020cdc42b05d63b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp313-cp313-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp313-cp313-macosx_11_0_arm64.whl
Size 265.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
df4335cac2eb387265ec93911a1fcf6520d5a6d2a7762cb00e134e6c3beae18d
BLAKE2b-256 checksum
How to use checksums
a40885c362e1bc5180ce6095aed9154ae86a48c9c21d001422defcd96fc0faca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp313-cp313-macosx_10_13_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp313-cp313-macosx_10_13_x86_64.whl
Size 270.5 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
562d1d7a63e61209a9c2852e0de67090abe90def2e47deaf7d4bd935d36ba67b
BLAKE2b-256 checksum
How to use checksums
41362f6f8726b88ac6552534cb7094fdf6fc4eaa5f5b4db2af77ed15667ee030
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp312-cp312-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp312-cp312-win_amd64.whl
Size 263.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
0834ff21a74fbd85ee748a8e9ff0edc886e0dd2c9a7011d4f69a943029a61e3d
BLAKE2b-256 checksum
How to use checksums
c85e30b7fe14f16e331ccc68331dda83567200e691baffa5ccc60aa326499034
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp312-cp312-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp312-cp312-win32.whl
Size 250.3 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
2b00d31897ce5c88362149a5651048e594a5c0f7db7b85f0ace7767604bf004f
BLAKE2b-256 checksum
How to use checksums
09bd390672f54d60c7f8094bdab68eca586e062fb97b622db9da3e97cc17fc2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kdepy-1.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 686.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6e5d59f51dd1797b7729e09993986f2920f45e62609c3704c5946aa5f05171f1
BLAKE2b-256 checksum
How to use checksums
8ca17d3ab60c558d70fef89b92f27f51f361d8107b2b5f7ec2fab0d20531a1ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kdepy-1.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 676.2 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f6a98453558eb39fe093601dea19769ebb13e371e11a212be516b27b4f059a55
BLAKE2b-256 checksum
How to use checksums
0d4595c70b4934690e69ab74b4f165b6c87609399253f2fa57d13b9441aa0975
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 725.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
97213c678837e5baf2840e9e2f0e7ed64901c2758e80dccffcb1caae1c9b254a
BLAKE2b-256 checksum
How to use checksums
504a38afaaf5e8fa20c46b292412beb2b4d944444bc345f191da5f8451f6b908
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 712.3 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6f4c80ef3e3f76d7106e538ae55b49c23e952a38eb34eba244bf82dd4dc98601
BLAKE2b-256 checksum
How to use checksums
039a98cb054c590e6d54f734630e4b6741fe0710127b74f6f0e7b0cfd1acc5c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp312-cp312-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp312-cp312-macosx_11_0_arm64.whl
Size 266.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e9ffa424aa96988a9b7f0154168c17cf64cba46ad691a556e77e51cae7992864
BLAKE2b-256 checksum
How to use checksums
f72e5e4eb6fdb929f293b6e3db55eb021d09b51bafb71104ea0e73acd6f21b7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp312-cp312-macosx_10_13_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp312-cp312-macosx_10_13_x86_64.whl
Size 271.5 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
35bdfc7f046014b6bdf83d6d14b2adbd8f08c1d3b83d63a91d74970dc8085972
BLAKE2b-256 checksum
How to use checksums
80ecb27b63a6fe7165d6679bfc6f62e73b56d8b6ad0377d0703c53493649a5a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp311-cp311-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp311-cp311-win_amd64.whl
Size 262.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
ff6a4db7b40a63b9accde48ebfd25e664138f37eda56ad1be34fe37f60ce3d84
BLAKE2b-256 checksum
How to use checksums
08f4b83f74465c9923e32b0c0bf038aa50551908fde7c95865ba63101c781c2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp311-cp311-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp311-cp311-win32.whl
Size 249.4 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
1089bbdc007c0495556d6409f7c9235abfc79071c7147781ca6f644aad4e5eb4
BLAKE2b-256 checksum
How to use checksums
6e76570c619625ac546fcbb5b4d7b1d8d928dd9eaad7dba03b07898e7b710d33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kdepy-1.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 691.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e1928bf44c9ee7f78239461d5670e8515f5d4a201eff5622547967c7c20fa82d
BLAKE2b-256 checksum
How to use checksums
db40075110da71dd4240205803d8533ea588e6ed929d42d96c08764b5eecf93e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kdepy-1.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 686.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9e5115b65531d36ab48b9e9dd952221bb7789999f95c7b44564367f885f5ade5
BLAKE2b-256 checksum
How to use checksums
24ab83658a77d77de77e72785bebe3c26a3c99583bca269223a805b19c6eaa95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 717.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b20ba0cc6e2864b0b831baa71f556ccc21005c5cc63a608cb21e0aa6c8317d64
BLAKE2b-256 checksum
How to use checksums
916f0e5bfbe6bdf53850494ef7a5256dec72a431bdf003fa583ed2516eddbb23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 712.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
59bd3d7b39ca3f7fb98dac7f72ea537b552f48ea008523ab862c38077f90c1b6
BLAKE2b-256 checksum
How to use checksums
564b2c80748ddc64a01d1019b3ad1048d5544a90ed1b6e8e512094c299b0434c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp311-cp311-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp311-cp311-macosx_11_0_arm64.whl
Size 265.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b2f04a95a6d706ab6fcfba104c49b97e4b6ade40212bcface291e4ab6747eed0
BLAKE2b-256 checksum
How to use checksums
26a67559ae97ec9a178899469eb8d5fff49ef9cff53bbabacf2a986ef9e6dd03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl
Size 269.8 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4f7deb921bbe944247bf8c4d2b2078dd67be8130d3be4a32f947766daed60095
BLAKE2b-256 checksum
How to use checksums
6661211c8c0e63943c2274ea87c15f3a1e18d253eb71b783166a3219f66c8ec9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp310-cp310-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp310-cp310-win_amd64.whl
Size 262.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c7c5b091e3034d026bcf718a5efecbe2a1eee5100d1328621387d7fadb164dd8
BLAKE2b-256 checksum
How to use checksums
086c459fbef9332423af790bc03d9cfccb2e3868b09cd17c71da8b12216bcc05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp310-cp310-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp310-cp310-win32.whl
Size 249.7 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
d3839f95cfd45084901a0d9c98b4ac83a5eb57449a6be7004d422cf29d9eedff
BLAKE2b-256 checksum
How to use checksums
5b48c7f11143dc2e158ea4f814debc22d1cdcfae3406f05bdb82ea56a1a7d486
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kdepy-1.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 656.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f3fccc80e33e291752d2cee7686628c19f066806b9b3f62d7d007c09c252c8fc
BLAKE2b-256 checksum
How to use checksums
635a596c179ca5cfc6d137b6d2b2b48106371ba475c1b264834d8097707f4721
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kdepy-1.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 652.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ff27b711d3e914da68a80bdd8044d7992a9a48be090378be246f6b39d91b6e46
BLAKE2b-256 checksum
How to use checksums
eeb278d97b9b291a34a9905e5796a6830e984de843de1570cd8002796c4e2566
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 690.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3a6421b24c5b11b700a7281c750c2ef170a75facb2c38a3aecb2cc77b1095308
BLAKE2b-256 checksum
How to use checksums
5dd14c1bb8cf8e4d73a7094d3a731df9b153cd23d32781d977daa66a7eec9c4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 687.2 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
35b09bf8bded71ff5c90b03495529aa26b8c469ac8dc8cb1186f95999e4eef36
BLAKE2b-256 checksum
How to use checksums
b718b53890d889f45836685d21ed5315152a515266df11874af9f38849522106
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp310-cp310-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp310-cp310-macosx_11_0_arm64.whl
Size 265.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
64a837b0c552d681ef7bdfa5b0e18bbbc66e3d5dac7ad7fc9919c881e0f16498
BLAKE2b-256 checksum
How to use checksums
de249ca4380a635ab07b41522e9a8146ddcfa9c6a2d3330c721fa32bf4c3f64e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl
Size 269.6 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
aea3587396e458b53c63c8a070505bcd7fd7e60756f99d3390ee344e22d08f41
BLAKE2b-256 checksum
How to use checksums
9b525ff42853ade0365d4f7a1335c829d037c2b95a24e44db2a781379a8f5e76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp39-cp39-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp39-cp39-win_amd64.whl
Size 262.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
8fd2a55b71e07aac63b8c8614a8f3e44268eabb9d4282e7bb78a11e840b20268
BLAKE2b-256 checksum
How to use checksums
027fe6aefab02d2a4402626fa18a7b059802eb7da43939a98b2105ddf6099857
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp39-cp39-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp39-cp39-win32.whl
Size 250.2 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
94b555ec63d953ea3fb3b5a00fe7e7efadd7881cc6fe817551df913d38796de2
BLAKE2b-256 checksum
How to use checksums
f668765751673c9e18e21695a9787b4b2e20095ea749dc27df9716b7babf0ce1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kdepy-1.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 659.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3d9a4ffcf155f4fa7e45e3ff33a8436e16a8e405fa8bd610803a697dc0dd6392
BLAKE2b-256 checksum
How to use checksums
92078b8bf172b2eb09458801536ec3cdb4a79654ef18c729115f31a9f85ca810
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kdepy-1.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 654.9 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6e22ea5a38278e86be531e87da07026a7aaa0450fdf7b8f6e8813ef9c04e5de0
BLAKE2b-256 checksum
How to use checksums
f9a9348cde6a0123f6f09d53119bbb91b687b396f3f1c54093e98a0b6f6e1f26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 689.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
444ee4eb41ad31c605a7216f863ddbd20db3cff9069f7f3113f56d20714482c6
BLAKE2b-256 checksum
How to use checksums
52c5c3a4bbd4e5845802c43a104eedc76f12fa46a9007273538cbb049a3214e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 685.7 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e154db86db4046c8603a80c841b31d603de85ff8341440c6229b4f1d09ea22f1
BLAKE2b-256 checksum
How to use checksums
51403e89b46fa689d3d318868ab6fd64f5e2463d34954d20c9c57f9d3636a09e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp39-cp39-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp39-cp39-macosx_11_0_arm64.whl
Size 265.6 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b0cf62dc5a255075a5813965a58ac16b8b1144d538760bccf06ac529720db61e
BLAKE2b-256 checksum
How to use checksums
1bbd8cd77fca66031f1ed236a32686b739c3030d6cf48010a27d43b1b4f68e16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl
Size 270.2 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
34ba64f462127e2dc6a1de9ae4a742785cc97acf9fc9922a1378e3087e19c494
BLAKE2b-256 checksum
How to use checksums
8b2b765a30a636fbe7e87aa9ca96dd500fc8596369fca9157c5963ce31ac35a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp38-cp38-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp38-cp38-win_amd64.whl
Size 262.8 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
3bd8bff8b5d18ccc253c22dcfa6ab1aa8098df62fbb8899fa6d25579f0ff0b8f
BLAKE2b-256 checksum
How to use checksums
bc86e4c00406ed4beb48fa0ffbdaa92d68f5c45c42163f687595d0bced276780
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp38-cp38-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp38-cp38-win32.whl
Size 250.3 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
0fe3784dd2bfaa4d6278f2fcc5e0140dae0b643f0ad9b15c5bed35d3e368c7a4
BLAKE2b-256 checksum
How to use checksums
588055b4b93373b6b25455612b0a773ee82a35e36e564639cb6288b6c7b1d94c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kdepy-1.1.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 671.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
878cfcfefa32dfd464b0a87b2ecc90239ade075528285ba8893b3c559dc6e132
BLAKE2b-256 checksum
How to use checksums
beadb58b04a98702b0b2822670abb275c8deac5bb5a109bb3891c2e2f0f97a6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kdepy-1.1.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 667.0 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
78f319dbaafe44d8583e5f1ff3dcff14124d9718ff5bdf5b38128180fbbe4c06
BLAKE2b-256 checksum
How to use checksums
d28197a6b7cd55ce12b9ad87e2bc3e70efc1cd31f4f7952799709b17034c98ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 707.6 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4da25e7515c888af1cd04e939150e63a889486f465c79966e12b9e34d5fe85ce
BLAKE2b-256 checksum
How to use checksums
9f9cceef32bd7615d8139cd87d3d8bc4e2f72f7b29c483bbb98016fa9f9a31ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 704.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
86ea9c3078c83194ca1dda2725f411d2d307bab2be9815e0ab3a9540c81e5a7c
BLAKE2b-256 checksum
How to use checksums
b28893bb45088f649cd1de4637924f24c402d898bd1eae4d7e5180f10eccdff9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / kdepy-1.1.12-cp38-cp38-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp38-cp38-macosx_11_0_arm64.whl
Size 265.4 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aaa900fbf3fe66bb30a6e1069bd90940f00a02abc15fd6217b63df2fd07204a5
BLAKE2b-256 checksum
How to use checksums
1c617630f2a7949878afde2b5cc9c38f756aa4861016786f0bd29cc2e5c0a53b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / kdepy-1.1.12-cp38-cp38-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL kdepy-1.1.12-cp38-cp38-macosx_10_9_x86_64.whl
Size 269.8 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8f26a6a8deeed57a0f52a35fbf0033acedb5935c3a9ae028209a3758bc45d86e
BLAKE2b-256 checksum
How to use checksums
23f37175f60932a34678c8f0cab7d33f4d201712c5b01033ea3902cb4402b212
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release history Release notifications | RSS feed

This release

1.1.12 This release

55 release files

1.1.9

26 release files

1.1.7

13 release files

1.1.6

13 release files

1.1.5

29 release files

1.1.4

29 release files

1.1.3

29 release files

1.1.1

35 release files

1.1.0

66 release files

1.0.9

15 release files

1.0.8

15 release files

1.0.7

15 release files

1.0.6

15 release files

1.0.5

21 release files

1.0.4

9 release files

1.0.3

15 release files

1.0.2

18 release files

0.6.11

7 release files

0.6.10

1 release file

0.6.9

10 release files

0.6

13 release files

0.5.6

11 release files

0.5.5

2 release files

0.5.4

1 release file

0.5.3

1 release file

0.5.2

1 release file

0.5.1

1 release file

0.5

1 release file

0.4

1 release file

0.3

1 release file

0.2

2 release files

0.1

1 release file

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