Skip to main content

A Bayesian change point library

Project description

changepoint

Python bindings for important functionality of the rust library changepoint, a library for doing change point detection for steams of data.

Installation

Install via pip with

$ python3 -m pip install "changepoint"

Note: If there is no binary distribution for your OS, architecture, and Python version, you will need the Rust compiler to build the package and install a Python tool called Maturin:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
python3 -m pip install maturin

See rustup.rs for instructions on installing Rust.

Quick Docs

By convention in these docs and examples,

import changepoint as chp

Models

Bocpd

The Bayesian change point detector, Bocpd, takes a prior distribution, aka one of

chp.BetaBernoulli
chp.NormalGamma
chp.NormalInvChiSquared
chp.NormalInvGamma
chp.NormalInvWishart
chp.PoissonGamma

Then, a Bocpd may be created:

cpd = chp.Bocpd(
    prior=chp.NormalGamma(),
    lam=12,
)

where the prior is a NormalGamma and the characteristic run length is 12.

Each step of the data stream, data, can be processed by

n = len(data)
change_point_history = np.zeros((n, n))
for i, x in enumerate(data):
    change_point_history[i, : i + 1] = cpd.step(x)

ArgpCpd

ArgpCpd has an implicit prior as it is a Gaussian Process of the form X_{i+1} = c X_{i-l-1, ..., i-1} + ε where c is the scale, X_{i-l-1, ..., i-1} is the previous vales in the sequence (l is the max-lag parameter), and ε is a white noise parameter. It behaves similarity to the Bocpd class; for example,

argp = chp.ArgpCpd(logistic_hazard_h=-2, scale=3, noise_level=0.01)
n = len(data)
change_point_history = np.zeros((n + 1, n + 1))
xs = []
ys = []
for i, x in enumerate(data):
    cps = argp.step(x)
    change_point_history[i, : len(cps)] = cps

Example

An example IPython notebook can be found here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

changepoint-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

changepoint-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

changepoint-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

changepoint-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

changepoint-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

changepoint-0.2.0-cp311-none-win_amd64.whl (273.7 kB view details)

Uploaded CPython 3.11Windows x86-64

changepoint-0.2.0-cp311-none-win32.whl (250.9 kB view details)

Uploaded CPython 3.11Windows x86

changepoint-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

changepoint-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

changepoint-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

changepoint-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

changepoint-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

changepoint-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

changepoint-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (385.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

changepoint-0.2.0-cp311-cp311-macosx_10_7_x86_64.whl (412.9 kB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

changepoint-0.2.0-cp310-none-win_amd64.whl (273.7 kB view details)

Uploaded CPython 3.10Windows x86-64

changepoint-0.2.0-cp310-none-win32.whl (250.9 kB view details)

Uploaded CPython 3.10Windows x86

changepoint-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

changepoint-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

changepoint-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

changepoint-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

changepoint-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

changepoint-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

changepoint-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (385.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

changepoint-0.2.0-cp310-cp310-macosx_10_7_x86_64.whl (412.9 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

changepoint-0.2.0-cp39-none-win_amd64.whl (273.8 kB view details)

Uploaded CPython 3.9Windows x86-64

changepoint-0.2.0-cp39-none-win32.whl (251.0 kB view details)

Uploaded CPython 3.9Windows x86

changepoint-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

changepoint-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

changepoint-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

changepoint-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

changepoint-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

changepoint-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

changepoint-0.2.0-cp38-none-win_amd64.whl (273.7 kB view details)

Uploaded CPython 3.8Windows x86-64

changepoint-0.2.0-cp38-none-win32.whl (250.7 kB view details)

Uploaded CPython 3.8Windows x86

changepoint-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

changepoint-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

changepoint-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

changepoint-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

changepoint-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

changepoint-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

changepoint-0.2.0-cp37-none-win_amd64.whl (273.6 kB view details)

Uploaded CPython 3.7Windows x86-64

changepoint-0.2.0-cp37-none-win32.whl (250.8 kB view details)

Uploaded CPython 3.7Windows x86

changepoint-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

changepoint-0.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

changepoint-0.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

changepoint-0.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

changepoint-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

changepoint-0.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

Details for the file changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7187849fdb7235493b2d491822fc814c09fdcd2d31977802e067341a7a8e124
MD5 4d1217ac5e7b1339367fbe11a70a6705
BLAKE2b-256 7d0d167f18b1af640b60e628b44cfb432e2433b00c45f28f0fdd22734a30a043

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7589ab29d422cfa16f3c8d51b278f75926e7ae4924b474b07fbe98de9b500f57
MD5 ad482a7828b553753a70c27fdbc484b8
BLAKE2b-256 ffafefb03feea631ed4a2b994e42d04dde53557f7316c0605ea3113986120cf0

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 460447cbf60569170e6a09b93192907b53958bc8c1731454b06981033aac0456
MD5 1f9e81240d06a856c7adb6fa1c0cd927
BLAKE2b-256 40387e40bfb5b54909da03d0ea7074c6c7c7bf33939f49b89a85fcc5bc13d09c

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5b83e14db7845d4a1cdfe897149361daf7b4b48d1cd7408a905936e7a80cff2
MD5 b4aa89f1ccc5c30f96d7540855b9acf8
BLAKE2b-256 c57e04b771cde3f1b02dff55071828a61b529f79c60c2382785c488b3c764e12

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa5af9c81d7a2198390dac0fcdc0aed92f20054398943fac26180901a7540f16
MD5 f31fda6ec40de269da6d57e157ee708e
BLAKE2b-256 eaa4e1c7ff12ce0031f5d2fe4cbc1b90bfea6eb9318be8edaa8fb21bb5d46bbb

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97cfeb7ca5811b88c43d4f1b298a4f041293f0b96ad8f557b0ac81abcbefd89a
MD5 4551905e2824fda55a6a87b36d6718f1
BLAKE2b-256 f129c6c72bfa95cc227a0cd5375adc863a59bb6ad6a808a0fc15d84bb195e04b

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f8bf9547668f073615d6177cfc51c2a88db1d275ff2239222651922128c1cc8
MD5 dc8670623ecbdf7793461f4e713c7b8f
BLAKE2b-256 c02e1bddc1f484c55b20a3fdd3792e5b0a9768bcb73a529876932c55c6b899f3

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 495bd6d51301af143ffb806e6ce15437e3c4faff9d45370d9ef4abf1fec89c75
MD5 f101667c1638f25f6b9f17ae7746e342
BLAKE2b-256 40ad81aa96456af795f334467ed6fc7012a59cad4f1e66c02e5f7d295c08041c

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a3179cbfa67035bb1fefc94556f0a2d60b0be86556b3bddc949c5a2aab32853
MD5 edd6c6f4ebfc44b031b6d391b87578aa
BLAKE2b-256 4c7179cf9383fcfa6de4382066c91d6720a3ed74bc652882e3015927c185a497

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8401e2941e2f9a08eca833681d00d7616730d31050f2ea8743c1d497c8c12766
MD5 887fd08c4f4e37970acec075b539321d
BLAKE2b-256 891b72a6e5211d8ae5c028e605d28fbeebf0ee86b4e78fb84cde9ca7856dd848

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c9f9bf152e08f5789f3976de7730d82f86011c7cdb98c1436ae74b32bb1adb8
MD5 033baeb06a2b2ed3e5830a9aab63f831
BLAKE2b-256 7506d5ed7fbbead2933c36f6d3de8bb4f268a9074e44aeb85f0626a2d6660522

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b14475ecf978f26907715e2ea4b1fe9cabb0bcaf3d97c59c25a143a2fd5c1fc9
MD5 890eb7c45dfd692af63e244ca7ece37f
BLAKE2b-256 e13b4e88eae2cf734726a9ecd9c47daa31e3563a13064cadbee1f48c75b03c58

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 314a51a4732e238a1e91292b1debb5c72ac2402adde8c77e525ff0d9b7467956
MD5 dfa63975986f0f8b238f3b20c4220adb
BLAKE2b-256 9af0cacf9fc8eaa11aa6c2a1ebd2b234f7ac2b6cf26a40d1fcc75a7680c01bba

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d3f4bc2ea6cb1226792b28b664b9536daced77b82a331c38310f63e6ea78354
MD5 d2838e378e341f8cdf1f196f8e00eb87
BLAKE2b-256 4f5f57aac6022d835c98021af8485a554e5be29e6b2a796bc9067fc2d6fbbc30

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0defe24d8162c60ead81e5b17d9ae02df82b0135f1a18424cc92624f95c016fe
MD5 9473b341229875370a8fa79e44152a4d
BLAKE2b-256 ac574d83c2904ebd7687c866e1de304a7387bd6ab0f9c35cecf4dde844ae24cb

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 190205e140d0334b13c46217823b9b6d7f9da5a8a8af3bb9969ca2843a663c31
MD5 e3ec6ad5416f74d4623cbf8ba230ad97
BLAKE2b-256 2b5e1c143bf50c106356dc8f866e41204bd5fa8b7029f5db3dfd2293610e2379

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b53620aa15b873ee07582e00adddad81dc006b3e237342439e39b7455cbe1c5b
MD5 3051f4d18865106a740adf6a78b07a1c
BLAKE2b-256 4233e13fa09b5a1d223a876d51d37f60c8c29f18f5c9a13a09b19e9d7199c17c

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0fb67b3e83206a84f3e3951d1bf642e00bf1e930a1b964539e46d9a524002e77
MD5 8114a68de4214da05dfc27f3161fe43f
BLAKE2b-256 a39c399df8976b3d1845e352357eec267dca00be6dcf9219e21c700ac330c968

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5c43478c5d070f2ce6f1d45a27cbb0fd3f58509a4a8b47a05525a6bcc6555cc
MD5 01d6893e8afe3b268a1d87c6173d8a76
BLAKE2b-256 6a3dfe1ae1cfba0a071f40d341a1a4990e2ff040e2c6fda7ffc29a1c03b52aef

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d9bcf8b97759e76d3a5b9b8ccbe14182b3dbffeefdadc19ffd5c7fa4954c8d4
MD5 8edaae1e518e897dab2ced29c1cd2f37
BLAKE2b-256 621326c6aa2a46574718a212da0f630dc09d872ead4998e261f28e346512a0b4

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b935142928ba6ef2d528ac12761e4be42f1a60dd02baf9db45b0b83cc7c4a124
MD5 6eb0299ecd8c40706d5bc46d9bcbab74
BLAKE2b-256 c895bd9ee54de66c0a6757c03982401ca97f6ab985802870fffba04ac946a56b

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 294abe97a3fed9b57458947ff86265cbb17419fdd2684a091fde9176c88d1474
MD5 afc46f48130ccc946ac3a3d2bfb3ef65
BLAKE2b-256 d7f427eac156be7be85806a2df6bd281a7d7ce08ab973586eb9a299b4acfaedb

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cae6ac4ea9d798e8b34ad5b41e587ded952d1cd08f50530667ae18147838fb60
MD5 d3851bc385080abe9ab1ead1ea77db52
BLAKE2b-256 a1ab1a8bc2fd75090b50c745143e6ea49ab106158a52712d7cdfcb64a24a4ed2

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b01b5e048669b862f4e5a516779479e0e2a36d660bfbc44ca526476eefbfbba4
MD5 bd2b279779c2f2a1a1b5680765c5f969
BLAKE2b-256 f8ae6d42443848cf2f9aeb85b3e5963873093e96dc22b8c8040018fff2a60a0f

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-none-win32.whl.

File metadata

  • Download URL: changepoint-0.2.0-cp311-none-win32.whl
  • Upload date:
  • Size: 250.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.14.14

File hashes

Hashes for changepoint-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f0a923db9120682a894f621e022cd53a009e3f0c1766e55afee978bbf9c45f14
MD5 92c0d29b68d662d5b48541fe2f42f622
BLAKE2b-256 00f6543bdeb7a5e929ad87ef41e4dbfbe81fc126ce73cbe94bbfbad506b53ecd

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a78258d6d4f742100c180cd5abb056447c071e82b7ec22c89048d0a864a1ea61
MD5 b43af53764be6b03dbbdd9307b7279cc
BLAKE2b-256 7ac6dd4e2863d3a3538b08d2f021dc95d2e562a0b846bb7027e3fed8fecdf288

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a25c6f1a35bf4bd053651706fba6100db9f9b6ffd8b06336982b0b7d23d2f55
MD5 cd2c1ca38c442088a10950802fffcd5f
BLAKE2b-256 da7752a3a014ebfd8f6ce8de08045eddaafa108890471d50422c348bd9151b01

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89309e204c2d2c6b9ac573e64f42bdc03f5c62d4273acacfb473b594278a1b19
MD5 203f5c37ab94a60416c885c472214ad8
BLAKE2b-256 eb42a906ebbec36eaab12edca2fd331d0b2df4b7dcc8f8ec5efa1b3a6a6d47d3

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7648169cb9ba7e1900a4302df526ea1b9cb7867dd5279d66c6c73cc57e0cf8ce
MD5 c0b0d292e2e8d3d39b81d2ee5569b305
BLAKE2b-256 ccc50050cfaa06a1fdeefb8d90ec46fc1216000b818dbfcda223a6b9bab84faf

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b2a85266eb40b6baa1b79f1a71a9cca5d6bd848f3e7afe6d24a1614200d2e28
MD5 2642c996f948b8dc8b5b96f87602f4f7
BLAKE2b-256 f4500f86a2215299a9d67c0fd85ecac6acf31fac2008694b912ee42d4b63cd2b

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ad241cb2ca6e104e5796b7a27bcbabd04b0307acb601e611144069d9f1a102e
MD5 04adaf246774e49dffb66495a7a92724
BLAKE2b-256 af5bc99493a47cd44870fea6f4927708dc04b1acbeb5f3194a2881e647bd13a6

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6e014798a7d657fa9326ff676bf6afb18ba23ea70c63a435967e36d6a750ea3
MD5 3b5e9d963549d0fcd787651b0f31313c
BLAKE2b-256 6b50b96be66ad6359dd96ab34bab7ee334bbc102f8b75d1c8e4e20a9add22c4c

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fa4193dc5df225c83ba6dd6e6a13e488d06162f5a1a3e28b0919fa77ffcfc8db
MD5 4913cb980051de2da3089161338949f0
BLAKE2b-256 c1d26a3897511398ba7711235c872985a9c901c0bcd4cb55244241202eacc3a4

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3dea77d38540427c92861c575f9ae8d986db24d344fb46c49f9ec577d14e8495
MD5 cb28c5dee0f2b4280d5d7193fc59b37a
BLAKE2b-256 3a2c5df6a1658e6377651e350ddb7a47473342c00697d41c5ca6c483cc86c740

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-none-win32.whl.

File metadata

  • Download URL: changepoint-0.2.0-cp310-none-win32.whl
  • Upload date:
  • Size: 250.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.14.14

File hashes

Hashes for changepoint-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a007737a2e1eb82c74754f833ed40c02a1567229a9792a6a803106478e4d3406
MD5 3bf5e3205d86721dba3e91632281ccd0
BLAKE2b-256 3dd5befebbc8678e3352664fe25766c3efae9e6ce19916c1d77a928347354341

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 621e0821475fda1b93cb3c2815dcfb19974dc49e6aececde0344566c5d1bc081
MD5 ca4a523f644d3528ab5e315f1d53f339
BLAKE2b-256 6906292cacec2167b58ef932e4e79dce2ce57afbbb8a5e0e5560646ef9f2884d

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 564b0a68141264b95acd8513ad90b9eb1137f0fcff725b28a4900a21ea2ef485
MD5 6f88ad3e6cb37d33a37d5a260316c3ab
BLAKE2b-256 80d6a130c27bb0ba408c6d4f2cea08537604f09a34a1ccec4e5af232e357dc77

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b09e6a23f7b1163a0a0bd0e53d726d6fa50dd1b3b587850c13e6072e6021a2f
MD5 f6a328bbafbbbe8b5e22d476b3861527
BLAKE2b-256 72909158732865c0fdf43db40b5826191953bdd6c10ea0bbe2f6600c5892c68f

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 892842b78d69664d1ef1951e702c854b2639b1f3a0099404f7820db9d0c0ba84
MD5 843f29bbb8d6e6c733e03ccadb025a5a
BLAKE2b-256 645e380b2bd6c0cc9ebcaf0e2db2240601bbf5e38c812769669dfaa06a8b14fc

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eef60d60b7323d3cc4ad41e77697b17f37f6ada4388caca962f5a2daae1480a7
MD5 bcaa9dd4718b042325b82e8742f5e5d6
BLAKE2b-256 e87aae81a2cc1d5ad0c1ce34d0e13caed170326de8cf9d1e527a2a6c7da96dee

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 96136d05f0d69f0c4efa06097326cc2cd7d24cfbc4c3db726e54c0412435ac51
MD5 dc9b1fb63d9483fbcd1a2f82db83cd00
BLAKE2b-256 ccff3ffeaa94425ce3b222259c8dc94e4027e55f43cc85d410c86ff1057394ac

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba8f12b1bd32233357cf26c8eafbed98326a580b919669fd42b96b99031d9b85
MD5 30154e6ca3bd828c8140f470357dbe68
BLAKE2b-256 f4cc143987b905aab04dd1b4469979f4577543e08c147312a1d380c98069ba46

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3c0d6d65668cfb2ab9bab4e376f6fc235964cdd80115accf977d92f282ef0783
MD5 e9274ec0e9c45a6d42c8cbaad03c7a42
BLAKE2b-256 c83e59bdc27c7cbb45a012e25f6a224c639cb6b0d187b97b3f25ad846892bf81

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 22b697bd501a08afa14d51f3300d24cd284210b0c4d5c32668e06bee3b7fb85c
MD5 319b4d85f43c2fc79283a5b516eabf28
BLAKE2b-256 dd3d2f7f7d4362af2d68d2b6fdcb466580cdfd334ed4377ed65e8ae1e682b184

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp39-none-win32.whl.

File metadata

  • Download URL: changepoint-0.2.0-cp39-none-win32.whl
  • Upload date:
  • Size: 251.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.14.14

File hashes

Hashes for changepoint-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e3ae0e5a6df4cb65639cd1d0dc1b7f9d311dd3a2927a442bc66fd6a9f5c664d7
MD5 ecf259d7753f50296d8c73231662c85b
BLAKE2b-256 39f08359d05a56e12ae94b5b70b12c9d31412d776653e1ef1e11e33b7cf5a506

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6340b1ac15580ad232895364b9cdc24b02fa5adb890bb5b716fb9c72d496d19
MD5 3fb33c5072912a22fbd7bf5832e8bea8
BLAKE2b-256 43e1fc6cf58e4375e2e467f829f57410f15c0d172ac6e5f61e1d10f859c97f0f

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6caf8ce1dd8657a6eaa0ae105218f0e5bac4665438016cbc6a0f0c2cd500d30
MD5 12d5bb7eff9c96894eb1f6c6afad4132
BLAKE2b-256 02f36ea6b16ac2fa0b8caba44638c6d504fd39566df143d4666ace65bfcf3669

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0d3d5309ea30822b8297376287cb93ca3dec24a7ffd745398b7d844b42ad1c2
MD5 eed49ff4293914574219f58a6cf84f53
BLAKE2b-256 2ff347507e5ea26fc6fd40921f0b850fc7954f7a3984a937901b5de2d19aaae6

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc3ab6d79fcf1ed5eef74974f400861be40eba408c03e1db4e2da2e552b0d8d6
MD5 e3b026251bc66b5b94603eaa92b8a84b
BLAKE2b-256 74da7428b71c7ae4c0ba966ec6cb048240310c815dc83dc0167e4b7d1ba71ea2

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82e0db0b7f93e63b1d2d89710a778c8f374e6353a7b547d1921df98c5ba45166
MD5 865ccf0b51c57c564378a497be10f345
BLAKE2b-256 ecf1b76f82c4b3f3ed4629197159a119dec927bf740a8924142d1b1aef12b8fa

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ad00e4db1b3c3b27be290d90231ce8789fb2e908f9f8b5572a7fa55884bff38
MD5 2fc07eddc1180145350f6a4b70effbd3
BLAKE2b-256 e8f535c356ddb6dab0210633c1c6022ae050be1e6b242cc8faa89b4e432d5aaa

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 bdec946b9ec4fdaea48c88976542739932aebda1d7abe5eab93ec7d84d41d624
MD5 68a9e96e9218473e06ddfafe4e3a98c8
BLAKE2b-256 cdf61452678981e3f2fdd343556c6326105a15d6d065dc390437ba61b035a7bb

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp38-none-win32.whl.

File metadata

  • Download URL: changepoint-0.2.0-cp38-none-win32.whl
  • Upload date:
  • Size: 250.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.14.14

File hashes

Hashes for changepoint-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 64b3044eba14b0537970538784ca977136339d2626a96a3fce2149abfce0e519
MD5 350408398b85c38e14d51b36b59c094c
BLAKE2b-256 b9585a54e6bfc2ae87991fc645e9bcda8b2408faacc11d6c9ea3572f1291e7ea

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 821fde3842146d7574db36c35886ce95cf56c9f1cdbd6feca79d127c5e5d28c5
MD5 b96e4dcfe02f5f2fbe8b1e7f6de1372b
BLAKE2b-256 5694334d800776c3973c44d1c570f7a2f1cd384151095f9e48567c360ccc2bdf

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eeb5d7956dc878139f12e5180b27556a5acb94420b9e2d6ad7d53be1fcb92a18
MD5 d9195faa69a29dbe4420aa479618998f
BLAKE2b-256 a67ed426e083c9f1811a9f7b6535335df70a66027e7905ceeb373bae1e11d2d5

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc6a197c8c25752e4bd842872d2dad8678892a7862ebae683c93fee22e8c13ab
MD5 9244177f58bd5443e5353f58cd0109c1
BLAKE2b-256 50335b471150c877a1730b6df330a7e3f82023e4cb6b9cd89bafaa2a3f33cb99

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 864ca6990153e17fc668c1256570c4333990a58f799c62e82ddd9355cfbc994a
MD5 edf717c92788c552810994ea34bf79b8
BLAKE2b-256 c1f614266392df6f37ff3608025dffd17ee7fea0ce1dc83a754b4dc47d980de0

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b5a7ee1d111dafd22db7a25b33ed98370dd022f89666c6c138caae69efb28a8
MD5 acea217d27e09aacc5db06c2fbd7502b
BLAKE2b-256 c79a63b3ae0f1f9c6ca65b54236a6cfba06ca2801b04a99865441565bd74a6bd

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 30b7eff029847388d04fc01a2b4af5435630ae8f5b83dbd21053dabbb868490b
MD5 884d1c2cbe4b90f5a5d4427c7b7ec871
BLAKE2b-256 15e7e3b4b70d79bf6d8e52e39f41554fb5b4cfa54281927377baf95b510633eb

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 85cd54beb91983ae814bf476e1ae9e18fec083509dcf8e53482d05b0934ac3b8
MD5 66e7f2f98051c3b58d846c26558a81c0
BLAKE2b-256 2932325d282d8834deaedb4ff0617310ca6d8a51cb9abf949dde999862b4dc9c

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp37-none-win32.whl.

File metadata

  • Download URL: changepoint-0.2.0-cp37-none-win32.whl
  • Upload date:
  • Size: 250.8 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.14.14

File hashes

Hashes for changepoint-0.2.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 7aeff09d0d9f08933cc0262d1cbf394e1fe05d78e03aaced7b4cf53b38d0a516
MD5 b77da75c2280869ee17ceabb39d4a692
BLAKE2b-256 52e982d34bd923d35166ead8010013ce0a52eeee219a467b99f310a2a36b532b

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d993267adbf0f4b91f75160bbf1e97a81f5a4f7b92183e06a616e742623aa075
MD5 5f1194d02aff28d56dd11fec32a791d5
BLAKE2b-256 ac0b5cb945884dfe124bcbb199a72e0beed6ee79efae6097b47e32d30f94bd4d

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87a15d7a91fa6f447e9a753baae36ddd119e6b2e10d593adebaa8472675e914d
MD5 8827ad961ce7df368cc16eea72bc9aa5
BLAKE2b-256 c3196c3de291c5f0891fdee56e9183691e2410fee35934f755c039bf930a8f45

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2774338aeb84a1586a1516b677763f4ea18d96711badd3fcc116e015d6d341f6
MD5 a5bbc8c60285bca595ff1a8e10d9b0f8
BLAKE2b-256 ff8a341b872bb85574bf6bad7add6b2b749a75ab09c671ccb7ca31690a7ddb75

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e13a7d4761b9c0ab45f34fd99b4d4818e43bde007c37e0f73bd9fdf53ef1ca39
MD5 046b92a6c8ba93fc793a0e323713db33
BLAKE2b-256 0f83433d4cf6dff60094b121b9db7ee2fec5197195c2af8e7ed5cca02639b137

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e379115459ed65e741db96f539485bbce00af7fc2bb65cde3c933cbf16fc3115
MD5 1cb2e5552d1316733753e0292f443145
BLAKE2b-256 152b6d64a8654a1efb115c654abeae605940408e177e690bf71b587fe11e54a6

See more details on using hashes here.

File details

Details for the file changepoint-0.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aca555c7f99f6ec5261958493db78032383c1039ce3a25e8673a9c7de443651c
MD5 3cdcde242242697b6b605ae5a4f9fdf7
BLAKE2b-256 bad61e72f7fed52dea6c8405d953f686aec1e849ce10ef5e6b771679753aa236

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page