Skip to main content

Collaborative Filtering for Implicit Feedback Datasets

Project description

Implicit

Important note about this fork

This repository is a fork of the original implicit. This fork aims to provide Python 3.13 and 3.14 builds.

We don't plan to add any new features or fix any bugs beyond what is necessary to support these Python versions.

Build Status

Fast Python Collaborative Filtering for Implicit Datasets.

This project provides fast Python implementations of several different popular recommendation algorithms for implicit feedback datasets:

All models have multi-threaded training routines, using Cython and OpenMP to fit the models in parallel among all available CPU cores. In addition, the ALS and BPR models both have custom CUDA kernels - enabling fitting on compatible GPU's. Approximate nearest neighbours libraries such as Annoy, NMSLIB and Faiss can also be used by Implicit to speed up making recommendations.

Installation

Implicit can be installed from pypi with:

pip install pm-implicit

Installing with pip will use prebuilt binary wheels on x86_64 Linux, Windows and OSX. These wheels include GPU support on Linux.

Basic Usage

import implicit

# initialize a model
model = implicit.als.AlternatingLeastSquares(factors=50)

# train the model on a sparse matrix of user/item/confidence weights
model.fit(user_item_data)

# recommend items for a user
recommendations = model.recommend(userid, user_item_data[userid])

# find related items
related = model.similar_items(itemid)

The examples folder has a program showing how to use this to compute similar artists on the last.fm dataset.

For more information see the documentation.

Articles about Implicit

These blog posts describe the algorithms that power this library:

There are also several other articles about using Implicit to build recommendation systems:

Requirements

This library requires SciPy version 0.16 or later and Python version 3.10 or later.

GPU Support requires at least version 12 of the NVidia CUDA Toolkit.

This library is tested with Python 3.10, 3.11, 3.12, 3.13 and 3.14 on Ubuntu, OSX and Windows.

Benchmarks

Simple benchmarks comparing the ALS fitting time versus Spark can be found here.

Optimal Configuration

I'd recommend configuring SciPy to use Intel's MKL matrix libraries. One easy way of doing this is by installing the Anaconda Python distribution.

For systems using OpenBLAS, I highly recommend setting 'export OPENBLAS_NUM_THREADS=1'. This disables its internal multithreading ability, which leads to substantial speedups for this package. Likewise for Intel MKL, setting 'export MKL_NUM_THREADS=1' should also be set.

Released under the MIT License

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

pm_implicit-0.7.3.tar.gz (70.9 kB view details)

Uploaded Source

Built Distributions

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

pm_implicit-0.7.3-cp314-cp314-win_amd64.whl (679.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pm_implicit-0.7.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pm_implicit-0.7.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pm_implicit-0.7.3-cp314-cp314-macosx_11_0_arm64.whl (683.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pm_implicit-0.7.3-cp314-cp314-macosx_10_15_x86_64.whl (708.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pm_implicit-0.7.3-cp314-cp314-macosx_10_15_universal2.whl (1.3 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pm_implicit-0.7.3-cp313-cp313-win_amd64.whl (661.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pm_implicit-0.7.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pm_implicit-0.7.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pm_implicit-0.7.3-cp313-cp313-macosx_11_0_arm64.whl (676.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pm_implicit-0.7.3-cp313-cp313-macosx_10_13_x86_64.whl (704.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pm_implicit-0.7.3-cp313-cp313-macosx_10_13_universal2.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pm_implicit-0.7.3-cp312-cp312-win_amd64.whl (663.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pm_implicit-0.7.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pm_implicit-0.7.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pm_implicit-0.7.3-cp312-cp312-macosx_11_0_arm64.whl (680.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pm_implicit-0.7.3-cp312-cp312-macosx_10_13_x86_64.whl (708.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pm_implicit-0.7.3-cp312-cp312-macosx_10_13_universal2.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pm_implicit-0.7.3-cp311-cp311-win_amd64.whl (679.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pm_implicit-0.7.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pm_implicit-0.7.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pm_implicit-0.7.3-cp311-cp311-macosx_11_0_arm64.whl (675.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pm_implicit-0.7.3-cp311-cp311-macosx_10_9_x86_64.whl (704.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pm_implicit-0.7.3-cp311-cp311-macosx_10_9_universal2.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pm_implicit-0.7.3-cp310-cp310-win_amd64.whl (679.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pm_implicit-0.7.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pm_implicit-0.7.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pm_implicit-0.7.3-cp310-cp310-macosx_11_0_arm64.whl (676.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pm_implicit-0.7.3-cp310-cp310-macosx_10_9_x86_64.whl (709.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pm_implicit-0.7.3-cp310-cp310-macosx_10_9_universal2.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file pm_implicit-0.7.3.tar.gz.

File metadata

  • Download URL: pm_implicit-0.7.3.tar.gz
  • Upload date:
  • Size: 70.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pm_implicit-0.7.3.tar.gz
Algorithm Hash digest
SHA256 87cfb2a0b1a2e1ea6bafddc76eeea2b076b0a80cfe71d52a2c0c77ad397671ab
MD5 3ca5b2ee7e8b33b4a14b0385f79e5ffb
BLAKE2b-256 a6ba1d011d4fb1222c9ee446b7ae89cb7e7f6e4169dabe12f6cb9bf0925d2554

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3.tar.gz:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pm_implicit-0.7.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 679.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pm_implicit-0.7.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 caed9ddba6681a843f9b4386cd75f72e09536d9f66901fe50fa8189686853cf9
MD5 efb38dd861196b2159563bfe37b3c7b6
BLAKE2b-256 5e9e2a0495a4f2475e8e6481a3659cd4db8abc5f3ccdcc3d68f59be646f8e69d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp314-cp314-win_amd64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21bd367ec455524d1a9fb6f58ac276a14a90631dbc05f9f6e89a69abdd89d132
MD5 6b43ef4a96e73287bcc48c7dc18be6f1
BLAKE2b-256 ad7f20da7a86be52213fcda89923e6776706d6184c8b9b437715e19d35b237a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fabdb6f8b676413959fe2a3b4b2607ae72d02087ce466eeaeb070c279d50b52d
MD5 6ffbb90281157276f7fdf90762cff86f
BLAKE2b-256 c5b2066fe05258834f7380ae9e81072716acf9a886d8625d8ade9a495e96e83c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad97118f6009f5c11a6a1503c2289326c40d95957d70d1d1779592f4ec51fa0c
MD5 5548a3f1692b89144a49329d76c59c9e
BLAKE2b-256 1eb55159e7e3f1ea7cb886fd917d9c1a3ccb605cfcf40838e3c7d501cfa7e8de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 16a004a29605c0ad932a4d20295176cfb1ca36e6acaa34928fc5eba87c0dfa4f
MD5 42e9a0deff7b07731a2585ece93afe8b
BLAKE2b-256 a7005f094e809d6f5f8964af2fae921bf31cc6fe36e70320294132fac4f68f15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 72dd6bcab1dc52a31e6e9f2aaa7c447d75ac86d3a3d92b227cc188c814da0afc
MD5 15b027744c6c00b816fc7a306133509b
BLAKE2b-256 221d0c73b95289c595ef55a5c2c414a8350bc6532228b35512085bbf043dcc56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pm_implicit-0.7.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 661.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pm_implicit-0.7.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 55ea6b2186e29aab38d42ba2c4e1e406027f4cb49b7407183af5fdd61c7a0550
MD5 972d7e9905dd5b07ffb2fde92d8577fb
BLAKE2b-256 3d3dbba0b3dbfdfb4cbcacd4b6e34fe97586f57115e3f761e3bb48a56ff6f4a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp313-cp313-win_amd64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf56a01887b271f28d188d992ffd1283d6049126080f7cee7bc63cf22fe1beb4
MD5 72e1b09287f4ebd9f4e51a0fa6950f84
BLAKE2b-256 e9baaf82e85cd9d7b094a13aa00ce10dfb11374fd76ec1552b0802ee9c69dd04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c03bab78646de506eb75042663336d39f60f6239089cb6a59fb8fe681394e95a
MD5 af1f529bb26182d48c272a4e553ee17d
BLAKE2b-256 f070ae4e6fffff32820a60d0d61141960b1abaed0d1215d23b86d5c9d8cd6360

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5712c6674176b11f9373f5f978956faba0ee56c128d3adc21ad9bf6269fb16ad
MD5 b9962e0aa32e42fe394155edc9dcca4c
BLAKE2b-256 21c49d0d3b6f16cbb898a0bbf99e7690e1a5b1025e536191e87b8d9112c3fe8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 01d010a1326ee9a04ea92deadea679a3541f7da617ce549469a8d225f3ba91e4
MD5 4d2a753cf617003605fdea1bf15f3f3a
BLAKE2b-256 09d22e3e2efaf7166c0e44c1a09d7987dc85565528590b461bb42366a38632b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e5b4fc568a90d1e3ea46db14819145be022c754ed5c58af39b74594c0b6f9c92
MD5 7b107aa28038d531a1cf63ea94a1a8f8
BLAKE2b-256 e058984948c4f770f4d3990e187724164e8e954ea6b3695f084e66598650a0e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pm_implicit-0.7.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 663.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pm_implicit-0.7.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 efd98d65ea1e0a7315f971f51868645d537543501810dc9a46fbdf4882a58fb0
MD5 bbbec0521bd276935066151a8152ea6e
BLAKE2b-256 6dae514d6803093f6e490d6faca17122cf27ea593a60f330c3aa0c3c4f5e1a7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp312-cp312-win_amd64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f041af1b2d23e5082137acf299c526038b76ab9053f33c66bae4cea2a33122f
MD5 516d6681f08580196b34a9a10cf0a995
BLAKE2b-256 e8187fc026c796505bc71c51e647d80338ff257f20ab2727bc9781c8e3bb98fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5bf95993d2e7a4b8c7ec720f7dae294987ec2960a84d35d441a03a7e440a91b4
MD5 e83d60fb0e24434874c3e5824eec417e
BLAKE2b-256 4a42894761f5b374595dc2f2f3494fb598644fad1717aa4d07cce993907c85af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1655d7ca67413cd41019d54abcd4868ca0e1683653f4942e10a4d74c72baa71
MD5 ce6e547483cb629b67d372c5ef09b4bd
BLAKE2b-256 88ff47590ed149d8de6b72519c59558fe9dfd5365be471686fda9553e937b822

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fff48cb1e07f8ef7c332b97662e05928feb8d9f40dd0d27e6bb949dfd77a6a64
MD5 15cc4dc205a194dbcb65387cc68bb4be
BLAKE2b-256 1722e0e71db6a78c1c84ecf5cacb78b77cb60587d9bdd4fd69c2ccefa600a27b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 1cac181cc84cb942b484f7fd7de4a79203075bc72a3745cd5e7de51625c92c00
MD5 878422a8091d4523b8fd56169374c284
BLAKE2b-256 a7f442a8e02327e3c666c381d4990da62026b16ecf04f1b4366b2ce42b3bb13c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pm_implicit-0.7.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 679.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pm_implicit-0.7.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 97c2fed8257ce52d61ec7a62e8a2dd9d0a86b38a8eac99901368366992edb86c
MD5 a4ab08c1395ecd70c7cbc0c824aaa7f4
BLAKE2b-256 21bd185028b0fd03066d05c20ee607c7ff7aa920a26c44acaed366c8e79ab468

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp311-cp311-win_amd64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ceec1f2ed4be0e7fb57daf4da01ccf6bcbc8936648314e4c3402fb731e0a2a9d
MD5 b16dad45634ad07a3bac67afa013fc73
BLAKE2b-256 9707c8916d14a76fb14223af3fad8affd79a5c0b06d7907661cd97fb7f5bca20

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9239631293f7a68a8c6ad8eb5b1dcb2fab9a32fea7fbbcb8678ab2b89be9b1e2
MD5 ad7d58d44b838882fa4fc042f4bb5314
BLAKE2b-256 5eebb4caf05b41d03877a8de2bc005b00f57b126dcaed91df423aaea4d005ca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a280525c3364d0b3079b473f71e8491c8f2a9793bc6359d6db727c847588db7
MD5 6f1e4d2370108aa814a4469b744a4a9f
BLAKE2b-256 55c3f2f308a86e5cca0e70808be09aa883535ab26f7000d0ac2cf7fc23c37500

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7f1859aec6abf2d3c13609bf36322becad7f31a967978787489b17f03d03c52
MD5 3108a9415e4aabb086e97a1d8efd422f
BLAKE2b-256 61840fde2bd01fcfcf117ef88e10911015a38c08b80eb8039f25feb44a777283

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0545ee456875d12e7d969f10aab8588286b289fe2f870c5e8482f788b1045bf0
MD5 9731777e0f26cf977def21c253cac6f2
BLAKE2b-256 09403272a7fd588f1baa280d77fff2ab1b1849a10a968c0eab01e82cef487bae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pm_implicit-0.7.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 679.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pm_implicit-0.7.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 980727d83c739695073b779b805ef9108a5f024ab99fd0074517072d61dc0948
MD5 47070cef8d5d0b723f9fb9082108f77b
BLAKE2b-256 7fb8c6c091340202c7f0e01873ef670c432cad68c092a541ed1d8b4aaec7a5e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp310-cp310-win_amd64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6074d0d6d61b557327a84302fb459c10ad62022e9a215fccaed5061998584b88
MD5 d63653b66d9bebb161683604212c103a
BLAKE2b-256 66aae53bfd8c68a4afcd972df1f3e3c6af69a77fee9e51df7df67c0a0a6e7990

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 989815ad55dcdfc76ee3b2436dbd6a6b1fff3b08008e09e869ebb3c19d59600f
MD5 a1122884f88b3ccc2eeafb003a523356
BLAKE2b-256 c9f0465d1be194b5b145c41fcf3956271c0de5d29253e5096f55422475cd1fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d985c4d97f0a78449e8f4b11a1f55ba670c8e3bf5d3b4b50405e26f8b7253453
MD5 98e7c5755a15c3eab8ded0e0fa194e32
BLAKE2b-256 3f37d9921a32c4a41f16af97bef035e837ecfa2b9e727fbb149287aed0a3e669

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 633fa93860280966783a071e36f012c7ff22b9cecc99099ae61281f42a7314c5
MD5 7061d507542f82398d160731c00ecffb
BLAKE2b-256 b7d8829403a3cb0e0c6c65783c6dc7367245a5ec5b3d6916eed2757303c5aaed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pm_implicit-0.7.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pm_implicit-0.7.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 26ad78fd2669b66fba27a545efda5d371488ac2a349dc6cbbeab6a16961080dc
MD5 a84c066377e7d0e155a868bb04800c32
BLAKE2b-256 976f99fa121f8ad256c4aa3764bb6bbe69c19d048984a92f7e730733f8fc454b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pm_implicit-0.7.3-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: build.yml on chezou/pm-implicit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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