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 cpt

Models

Bocpd

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

cpt.BetaBernoulli
cpt.NormalGamma
cpt.NormalInvChiSquared
cpt.NormalInvGamma
cpt.NormalInvWishart
cpt.PoissonGamma

Then, a Bocpd may be created:

cpd = cpt.Bocpd(
    prior=cpt.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

import random
import numpy as np

data = [random.gauss() for _ in range(30)] \
    + [random.gauss(1, 2) for _ in range(30)]

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)

print(cpt.map_changepoints(change_point_history))

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 = cpt.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

print(cpt.map_changepoints(change_point_history))

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

changepoint-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

changepoint-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (492.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (475.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (546.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (465.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (475.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (492.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

changepoint-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (548.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

changepoint-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (538.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

changepoint-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (465.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

changepoint-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (474.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

changepoint-0.3.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

changepoint-0.3.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (541.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

changepoint-0.3.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (467.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

changepoint-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (476.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

changepoint-0.3.2-cp312-none-win_amd64.whl (305.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

changepoint-0.3.2-cp312-none-win32.whl (286.3 kB view details)

Uploaded CPython 3.12 Windows x86

changepoint-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

changepoint-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (532.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

changepoint-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (536.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

changepoint-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (471.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

changepoint-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (491.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

changepoint-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (409.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

changepoint-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (421.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

changepoint-0.3.2-cp311-none-win_amd64.whl (305.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

changepoint-0.3.2-cp311-none-win32.whl (287.0 kB view details)

Uploaded CPython 3.11 Windows x86

changepoint-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (473.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

changepoint-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (546.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

changepoint-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (538.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

changepoint-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (465.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

changepoint-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

changepoint-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (492.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

changepoint-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (409.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

changepoint-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (421.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

changepoint-0.3.2-cp310-none-win_amd64.whl (305.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

changepoint-0.3.2-cp310-none-win32.whl (287.0 kB view details)

Uploaded CPython 3.10 Windows x86

changepoint-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (473.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

changepoint-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (546.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

changepoint-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (538.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

changepoint-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (465.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

changepoint-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

changepoint-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (492.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

changepoint-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (409.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

changepoint-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl (421.6 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

changepoint-0.3.2-cp39-none-win_amd64.whl (305.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

changepoint-0.3.2-cp39-none-win32.whl (287.3 kB view details)

Uploaded CPython 3.9 Windows x86

changepoint-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

changepoint-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (546.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

changepoint-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (538.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

changepoint-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (465.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

changepoint-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

changepoint-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (492.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

changepoint-0.3.2-cp39-cp39-macosx_11_0_arm64.whl (409.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

changepoint-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl (422.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

changepoint-0.3.2-cp38-none-win_amd64.whl (305.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

changepoint-0.3.2-cp38-none-win32.whl (286.2 kB view details)

Uploaded CPython 3.8 Windows x86

changepoint-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

changepoint-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (546.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

changepoint-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

changepoint-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

changepoint-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

changepoint-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (492.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

changepoint-0.3.2-cp37-none-win_amd64.whl (305.1 kB view details)

Uploaded CPython 3.7 Windows x86-64

changepoint-0.3.2-cp37-none-win32.whl (286.1 kB view details)

Uploaded CPython 3.7 Windows x86

changepoint-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (475.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

changepoint-0.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (546.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

changepoint-0.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (537.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

changepoint-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (465.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

changepoint-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

changepoint-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (492.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

Details for the file changepoint-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 feed69e77a5f0882e2c06f70c73e4350584f2533bdedf621751f66014d293170
MD5 66e66b7ad1ea7a5f3a25dee6ba891e9f
BLAKE2b-256 abb1f5fd90eead8172d9c2e30a7f08ad8b4d5e6536dc459cf3ea3d176fec61b2

See more details on using hashes here.

File details

Details for the file changepoint-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6a337fb43186934e1af4d11eb0d4050d16e0e4168f37de573ed9260e1a79cf5
MD5 90592624a1746ceee97000b94939319a
BLAKE2b-256 054ea73153b410f9296f2149652812837d17e557732c1bdb81c371824e8b0ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6014b46ee1ba9758fdf56936bf94a97044402c073260ebd4a9a203053c74801d
MD5 fec4e3d90f5cced9ad5f996b5590d8d8
BLAKE2b-256 b3519f25b7233dc12891fb0888b51a8600bfd30970e0bfeef61b258002b644af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ecb61f069b0521194e45278b93f8cb75952d17483473df8fef75d3a0cf9e489
MD5 b372bb2be4725d5076c27d9e2be53d69
BLAKE2b-256 2b99bc689a54858b3939abbd59d128a9f26ff3a3e4b1808d86005351766400f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 34f6787158771eb248171da00e1416e3d1a5da00194ba554be39874da71189a2
MD5 9f3aaf74327199ae40694dfa88b77215
BLAKE2b-256 b6ab264d2e265c7b4e827df7b22cda46616f1c1833d6028654596d9c77b5fd75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b09972baec7439e1b979f5d32ed9c2f2e9c841389f22ebc0308c5b1ea467ff2f
MD5 00917cbc353be99abc172854ade8793b
BLAKE2b-256 da22d153e35cd873ddc1e6d2bba23aefb146b328f28d653de39e93315cc7caad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b76be896e5225f32314cc4bb10a1b7731db6a873c79d650d6c067a7a82d708ba
MD5 53d4e50f54615a7ce2aa70f951ff98e5
BLAKE2b-256 769584e99cabe79910a57339fdc20373b6ec6f35b947a4c32464f25ed3dbb527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c824eccdb478abba1ca7c5b769a1672d7c3790be7f82aa8eb00a52edde6f5824
MD5 57eac4a6c37e24ca33de9cbb73818863
BLAKE2b-256 294c5d7dfa48b68755f8609c0a1f25f8ccbfdd28ffb55265104d81f2ca2a552b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0439f78376fe3117a3d2e7fc3786b88661c11c0361e4da2591e97fc728e102b7
MD5 ff723d0a34703d31a63cb58a8b145f52
BLAKE2b-256 67c8ae5d1fdcd32d40bd0ab4dfaba5118ef7b9e35d10e8098055dffa7ddde316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b6243c2e3a5786610f784aa7a60616cb055f08d9f50800196dd3a86734939e7
MD5 c0d1dc072f6c1a872bbce8b86c979caf
BLAKE2b-256 0325b5c231cfbfcfe86be655422f8339e7ea3308a992b0e2bf878e115929e33f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b22b182b560cab48a9295fed20c99febf58dab7281a4f6b1557e6970a98cc17d
MD5 1d183eecf95883e19afdb8214001b4da
BLAKE2b-256 0b9b402fb613cc30f0c301ffac7ef99f11dcec77377225741c2b88339b227292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2db356d66db6a70b61363a0b4683270b055ae2ceb962354a7ba73c671425b8c0
MD5 d899ba31a7cb5babcc9d8714d8fa8654
BLAKE2b-256 b8a706be21c2b18730b3a01a916324d6369909eb50464910a68ab4c3d7483be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d887c792f7b81e14c223a3d9ee2e06379595d249613d589993e49ef9af93f789
MD5 b3b03680e2e17c6ebfb51c936af725a3
BLAKE2b-256 72e985a21eb4d512e09bcc9ef1a12051e8932209ebb59a371d2e0d3f56cc8547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd8f723001858ab6455dd9a979e62aeee9098ed95dc0e958de779b7e8e7b471d
MD5 6f21df241b877bd8eaa92d8aeb199108
BLAKE2b-256 00f641d75ab22fa5722e9e0f55aac6104ad69bc82a03c61dce75caa7410b336b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2446e238cf36f2f2ea0b058b91f80ecd348fbff26b5b24745b2f5e9b20948b6
MD5 c615246056727cba9f3644117ef4b9be
BLAKE2b-256 ec444fafa3e749a016d1500a9c9b4019893b92e0f94f92875a9e9d017ccce14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 679a8533547fbd9caa41c6e23076cb37532d216f0c72eb721803509546f8f20c
MD5 0d1d7c62d4af0402a1379c2dc105148f
BLAKE2b-256 290647fd43f981c0ea48c9c9c0d35fa3c22b6b743705814706217615e4314883

See more details on using hashes here.

File details

Details for the file changepoint-0.3.2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 7201d23375397ab86d3b864dc9a15841aa083ecf898778e15be331a511218f9d
MD5 118dc793170e14a59f53a3e90acde318
BLAKE2b-256 0fe0cc39883859ef4e2ab7566ad691123961ff01ad539edebfd88ef4b75f5424

See more details on using hashes here.

File details

Details for the file changepoint-0.3.2-cp312-none-win32.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d6374e2a29a1dba536cce38625cf0bcb5696277d0c28de607ea59c6997b441b0
MD5 99285437e9269836b983ddcb54e5b5f4
BLAKE2b-256 5e0300be71fda039a9af499e818d2a4fc19c7ce4a669f4eb69bf33f2a3cf8e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a55475cdc7750486f80d9165e6333976770f11108400ebc2c0780e3e505699e3
MD5 60f1e4fac3db9558cf8d64250b0fe780
BLAKE2b-256 1c30fc6c6068b24916416da40037c5bb666ba61157b87401bfacc77d52e2970d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9c928ec60e69f6f2f9ad348d53780adeb10f98357e90f5331cba0a2df2bc1d7
MD5 776d8b6c07493e4b9206c018e3955500
BLAKE2b-256 1bb233dcb6667c0f7f062075b17454f7314dcb45b45e273cd2c40bb0d20c3731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2305d464e9de4456235da4c31513d9a343dddd30b77b57a01f6656e5d86673c2
MD5 d3c839175933bba30e0525ff4fdfcd8f
BLAKE2b-256 9a1a66f18c0d6cda53702babe253f8caa2c0213f70d48a91aad1f7a240926f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f65b974eecb7d5be65e0370f31a5f78f444ac2c71d12bd6c638c5aa03d1d283b
MD5 b132f4a1f54ff5974ba3c1b538ef32c7
BLAKE2b-256 29d85a35870d04b709ce21f9e4810690287d5b06a761cd75e763933690ad19c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4acd43320946f8e5682e3b2748cbac86cdde4436a3565ea653835979bc227e9c
MD5 f8cad7670a92e48b7c2ab3490825594f
BLAKE2b-256 36ea5fb59ed495db2f2c646a16cd76b80dd9e58fb0e34d47b2183bad2c077fc7

See more details on using hashes here.

File details

Details for the file changepoint-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61c68721513d7864bf9825ea71390a1553abc999ceac49235b160e62883cadba
MD5 a936fc7121163f41037578509c23b8b1
BLAKE2b-256 d6573ac95f904214dcc3d29e175b219878dcc7b02e770fec969c0d18ce5ad999

See more details on using hashes here.

File details

Details for the file changepoint-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ed6470575166a6f39c5e8e634c44c6c02fa2f4b4d39780ae19746f7ebf78f3b
MD5 c8c6a45c6ebadc7e440c5bda88fcf7fc
BLAKE2b-256 e72dfa3db75f55ee643a7468548c8e41e55d583e11ea17cea338dff8a216973a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 22c3119fbf9623928e73bbff91d86419adff195c1348537c3be69058487b5665
MD5 dd34d3ac4ee60e384e5f9a9c66b1dd0f
BLAKE2b-256 a28fcc839b427cc5d00a322be317c50a1bd4e6842df0732f0feba5e177bd8260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 5e43b2d47f4e16d0a3d20797309e7336df2c4bb5d7d12c14fac71e236fc74742
MD5 763579e56fe10731f9cc203e3d76681f
BLAKE2b-256 a7154a8004732de34c00f9dc100ffb321c8af22eb8b2182b8d822fa7246b2f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b80b5bd8161dc4a5d7ee947d0e9b4bffa620327e26e509aad12ee9820fc82c2
MD5 c87d52676dc263212dfba0455afd7d8e
BLAKE2b-256 e8736b4568ca9d05ac8b265b2ceaf2e7ab5c4919e60e3aca3209c301990c2356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6d8fa03cfd114169188027899124dfa72105f802cc36646a3e2c670e6f8b3db
MD5 fb7cac81dd0c741feb49d33908b9c9e7
BLAKE2b-256 01ed7acb5d91cfae136909768d95433e4c6cfb230e2ec9b521574f3a3d2904ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c2cbe4dd4fffc078b87d70de2cb7b17f57f5fee35e7ddb40c5b508e2bccdd0e
MD5 e0a943977c43f69d081640589a42a15b
BLAKE2b-256 c6febab15cf80948079ba64f161d4b4d2d0921e164372c3689ef85993a30d1e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76f1171c22be89197366c1ab8843c44ecffc6461db23376eeb28e18c8ef6ac73
MD5 7a8b8cc62c2dffaf3c94bbe69c84c78d
BLAKE2b-256 67cf98f147561574f0aa32c8baf289fc42b2741439e2e8d19d8c473d94014bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d54c1b89808ff0b5d57702da85b6ff2d00b55d9438da9681fba242d6cb1af711
MD5 c5fd76ca60f3df51727e4f566a7dbcd3
BLAKE2b-256 85a09b54511d5d1759bca7c33dfb7d88b6fa7dc6ce81c4b5ab65d792eba35df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c48fb9fa599f70be4b2258515f061b162306b15fa52e4c137277c1347b59962
MD5 46626e24fc0b918ab5400f806d97efd4
BLAKE2b-256 074d3750022f7ce833952868c27866210fd280b425e4e3dd6f5c9d0899734ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff32bb94cc9a45c5a05586aa54987d9415b6cd5e0a6470732d2ad9cace09213a
MD5 b852d8aef05e9967021681b1652e52c2
BLAKE2b-256 f295d434e5d53c6a4bf3b7f4b119e628d17836c342bf27113c9b297b306d6461

See more details on using hashes here.

File details

Details for the file changepoint-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be4dbf855feec745400a704c37f6ae81b5fc4822e2c0f9743264a02b754c5820
MD5 e6f17c7d204b61bcf901ddec77a22dc4
BLAKE2b-256 3a579bf9f82e7d601fb6a090cfec12626f0e21021946cae541c4a40b2f010645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 fb02e3c501a36cc7ae4c26bced95710feef1b846a751abf774f5063302396e86
MD5 949763fc143a7ef799031dc5cb7e990a
BLAKE2b-256 099758996e16880dbc79bda0d51e53014873ecf1e3cef79e92f1cfd469a46717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 fa13d57cd1b3e8b54ec063376cdbe62f664484722d30f3f2a76f8c68796c4532
MD5 7d03d059ec0bfcaef59f7dcb405b5a8a
BLAKE2b-256 9370a3957bf6bb0362428fd814996edd0c57385634ff4ae774727f3d5feecb02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1512440fd2925587f6fbbbded3249307b9a8818de5767cebb534839b70b2376
MD5 36c39faa7ed1b15759e57dc2892af1f2
BLAKE2b-256 911322094604986dcfe575012115ee735cd5da2c082382d4c4e9993d4dfca7d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0ef1caf89963588d972059ccce0c6e9e89ae834ed71ced056bdb95eef254e66
MD5 3436c1330862e4dcb76d8d8c64e47c66
BLAKE2b-256 091e5cb3ea1244bf983dfaca9884a5e326184ccbe0da715df06bd3f7cf3f58cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 812a2409ce16e0d54ea2f65b4610a4ab8ea3fe991e8ea3e9840efbe754c6c027
MD5 e6eb5fd20e67d9e207499c7482646521
BLAKE2b-256 2e476bb7a8f7a3c0452481c27a174cf01e71644a9e597a59c89cc828914c57c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20da4683c6318b9595a5a964b56f045ff47537958aef358e6b39925261fd717d
MD5 8596b1103b7593e42ad54b6383c725f1
BLAKE2b-256 c5675b2fe57e21a1875d2dd44159ad092e08dc9491b188bae576940ba92e2260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a318dd6fa86ea7d41153699420ef672aa4ff048fad7a913cdbba0446b04ed885
MD5 cae65d43fd9bd815ac7f959432574a42
BLAKE2b-256 9fc3963984dbd1cdc3fdaa2872cf3162efad6ee8fc6c732d102000abd855b9cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 918a8ea9b1aa5641262d3ea83f24136f0f326873cfc6a2e8ebfe1dd628f185ce
MD5 e9f1f25afb48c4b901a0166966ec6e5e
BLAKE2b-256 87d94aeda3c576e6034037a0238f2ee848626d380f760563434d6593f69c234e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2aa236c1cca5878e04a494b3f3ec91c5e1cc17e32012051ed8b1c9b351339cd4
MD5 a6aaf162a8045391b563eb55baebd6ea
BLAKE2b-256 529634f99f14334027ab5df215873dab4b813c6870af075d880aff4465474f62

See more details on using hashes here.

File details

Details for the file changepoint-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69e2eade7f1400a19dacc5c19a6929ee667c7e6745b5b5d30d9a6845a8f6a60f
MD5 8fd6a87489cc4196a7349a3780e6abd8
BLAKE2b-256 d5973d7413c573fcad62621f1dd5803a697001da196d1a40dda4f80185d3263f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2f52bedbea626647b09d915f00814b4e70c18361f77821e9e72ccc433413f74a
MD5 b90f8f12a60b284d6cc422a9182c29d3
BLAKE2b-256 e388a3c9f34f7537dd64a4a42a6f7e1e219643fbaed2d0f16d2f9aa065acf7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e6d4019fe85e7f29df3530989e4dfe7218d4ee2fa4d24b0fc1b0650602c80573
MD5 f9ce5e0ba3371f182f8785265afd5ae7
BLAKE2b-256 fa12bc732300ec19742a13f6b33287a85b7517ca49ae3d68ffd8b54de773aa03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4447431abb29838cc8c23b4eb54b2bb005d1b8740e38465fe854e684ab141ea1
MD5 74d559bb3c3a968e181713f8a6aef539
BLAKE2b-256 970c2b0bb584cf3e1239ce544c1fc108454f8886d7fdd81c0a983857405930bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32978bec819f00c8690812f1f616eeb86322024122b59b119c3c72464289d78c
MD5 4185afecc33079ec92cd837f862f6485
BLAKE2b-256 93c80e98f27c887dd9cacf67021725ee10b602bcd3e5e6fe6ff8d5418c4ee29b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 235a550ca149d5a1610bdcecd1dc92db6677e2b9ca237bcaadaabc6f979cabc0
MD5 1d9d1b248de13e4bdb3f3a13d219eeb1
BLAKE2b-256 7e578595e5d239d83a0c4ede4b78e0999cb86e48d09bbd059cd40e9f0f4f6571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1962f553301bc7aa6dd4d647fc3d2c7b98e7c27d058c573dee1cda10d5e2b667
MD5 6d820fe8f865b5855ef87c49a42712d2
BLAKE2b-256 b40a28246378838693f5ff87fc990638556be0e12457cdbbb7923ce71cbbc049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5484a2d8c5d3f3c5b466916ec7788b1b8b10b7332884f71edbe18f1aa71bfe5
MD5 d3797aa690fae21c8c869fb98893d3bd
BLAKE2b-256 add983d92f2e8c23522cba75234f11e8b6ddf16bd928184acfb3eece4017f63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd7327ac27ad19b71eb5a11461ec2507e3cc2ef9e9f6a3aee8b17172cc31a4fe
MD5 5bd0e73e7f36bc7ebdf7e3d4fcb8861c
BLAKE2b-256 d424df823516c51f646dd419d3906baab04246509d2e9669a67ddab4b7f8352c

See more details on using hashes here.

File details

Details for the file changepoint-0.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa01b685447ed4c5548bd456ccc3734d462751b446d8b961d3a0d3418a4eb750
MD5 89a5a5715f5a385e05f1101c62df5a2f
BLAKE2b-256 3f325b0f5c45a2858cafdc4c183032149720c4428d3b6791644be3ec421bfc3f

See more details on using hashes here.

File details

Details for the file changepoint-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for changepoint-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c4565d136bcb57bbf2024c13b9d3cf8780888bf607c74777f0269180cfa81e9
MD5 fb9b796d8476bbda483eb706fbe3154a
BLAKE2b-256 88d27175ccfcedb364e515d6ebef6f8605e16bf94dc9c61aadaf6dafd456504e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9831ba012579981250dc884507ad1c475dda77546a3ca184cce3d35e99aa5d5e
MD5 bd71c8f581a43be97a27092d7c894f6a
BLAKE2b-256 1993c22031f778b9c86fe18169e5f8d2d470e00f149334b889f02b3f005f8001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5c7abedd2ed9b691c3960cd70b9f3ea21294a65ea1976426af9f711ccc55a808
MD5 27ee115a252f8379aef3315b0c1afc36
BLAKE2b-256 4546b1066bbc8c97a372e37d1b59ced66625bb51991f845bd8cfa7941446ea5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8bf159206ecf135263b2af1eb437c3676d1bdfcdc9ef1ced2c1479ff63cc317
MD5 bf904875b0bf235f0c54ab08e2b47dad
BLAKE2b-256 985d5b1bf198f3d194cfb296147d3f1875b9fd2dfef428242e262aad38f71a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84815167027f4be43eb3a5cf86b231ac5daec8a8c6dfe038b8cb38f1c660a9e8
MD5 3c97ad208e971c79ed5140df63a3dc5a
BLAKE2b-256 991ff46e652989d966254ea9790aedf469b2ef9d8818a30606232643d23318c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a160db10d49732f53f4b3d728b2d0b77cc4b48e8bb24be21c84ef235a618f17
MD5 252f65517757e1042794ded1bb83e039
BLAKE2b-256 d2ab00421981b36f279c0e8e6795f5690a5dff8f19cdd8fd5e767a41f9c14b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cdfe40da1644f60cb385f5d15d452e2089b739a2e1d8f4e5d483359564fe348f
MD5 f6c6610e5dcb2e115c54803df08ab39e
BLAKE2b-256 c9c68fe83c298386fe53f3038ca36b7d404012818327dc173f51c64a1cf7e709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78ac485b7118dc1a45ecbbfac8ec4893081bde63d1c0709ab92a2efa9a7986b7
MD5 07d65058d757a474c97d842a8555ef72
BLAKE2b-256 f48def8f14a68f899a0c26adffc14f05bcc16cf592cf2154687380462676635b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e049f37c23d18e50558f13555168195e73285a4a76d0facad2539035625359e0
MD5 fb4b31db30a9c128e0d38d3bacda3239
BLAKE2b-256 7236c8844ce18bdb325cb15a391a6d67dfd8abd5b7daa6c5eef786f2bab09d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 a80c422d3307176effc954ee0b40643bbbbceed842477fe334c6c88e2e27c6e8
MD5 cf639349ba3e9fc952413aafa6c67ae6
BLAKE2b-256 32103bee7b51411e366eefa30ab743d25a8bd4e19d3c42ca4bb3cf6b9f1c88e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 b0a756b5c38f7c45d13dd21e1e7d56c52542501193aa8979a08994355d3e2926
MD5 0a648cb317508654df022ae433321d7a
BLAKE2b-256 3e71bb16ad8ca54723a8ae4805018121d18af8f6bde25e0d5730afea93620daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a4db8693f4b00855f70d48a3e34ac00730b49911c8f2b1f2f2a6e5d039e8c4d
MD5 e55e9a6ca7d2bc9ba802275ac7dde87c
BLAKE2b-256 322b5197291031490a4609a2ab4a506e5d5bcac8e255b8311ff0784820c36ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4171def1d7c55c146b3704f5f491c002a9b4a63becd02b2b8875b3b824c6048b
MD5 cb64db787e51590f0c820f2ba21eb65b
BLAKE2b-256 a61abfc3a462c382c0c9a4057f0d3084b9d8c967fdaca4e25055613787560c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7723d0061d54a7402ad49ec854b8a07a9f7b2a3f336a99d610c13f35a66f7004
MD5 17a12c4efeb1c07f97f7f4d9b09e2c04
BLAKE2b-256 fc1a4b84cb407c2b788368bc32109e9957db07e5de65a6728903d2c75b3e8ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0aa4acda04f59413bcb166e6f8ccf62175057af80918f76cf57fc85909bbb1b
MD5 080091cf02f46c453f7376eda22f50d7
BLAKE2b-256 aa2f541a3956056d884604a1368c9d15b0d16140d3c7a22943a4d7631a25cca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81692d74301652e43075f04a9a1317ef661a080b6b6dda4da656ec891e1bc73f
MD5 ed64e063e69edae423f723d9c38d3dcb
BLAKE2b-256 964ae0efe9e142711f38313a32a1aef93aa8dcb38cb57ed320b63c688f185655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for changepoint-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b0b3c77dd00bae425e0b0009bd1458cdfa3d0af16171486a2fc962e2a0f4819
MD5 9ac6d2aed18796a70aba88065fef3dd8
BLAKE2b-256 d0fcb3da5b3c4775588fa11d2a8546efc70090e877244a3681cd5f63815e8647

See more details on using hashes here.

Supported by

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