Skip to main content

Fast implementations of common forecasting routines

Project description

Motivation

At Nixtla we have implemented several libraries to deal with time series data. We often have to apply some transformation over all of the series, which can prove time consuming even for simple operations like performing some kind of scaling.

We've used numba to speed up our expensive computations, however that comes with other issues such as cold starts and more dependencies (LLVM). That's why we developed this library, which implements several operators in C++ to transform time series data (or other kind of data that can be thought of as independent groups), with the possibility to use multithreading to get the best performance possible.

You probably won't need to use this library directly but rather use one of our higher level libraries like mlforecast, which will use this library under the hood. If you're interested on using this library directly (only depends on numpy) you should continue reading.

Installation

PyPI

pip install coreforecast

conda-forge

conda install -c conda-forge coreforecast

Minimal example

The base data structure is the "grouped array" which holds two numpy 1d arrays:

  • data: values of the series.
  • indptr: series boundaries such that data[indptr[i] : indptr[i + 1]] returns the i-th series. For example, if you have two series of sizes 5 and 10 the indptr would be [0, 5, 15].
import numpy as np
from coreforecast.grouped_array import GroupedArray

data = np.arange(10)
indptr = np.array([0, 3, 10])
ga = GroupedArray(data, indptr)

Once you have this structure you can run any of the provided transformations, for example:

from coreforecast.lag_transforms import ExpandingMean
from coreforecast.scalers import LocalStandardScaler

exp_mean = ExpandingMean(lag=1).transform(ga)
scaler = LocalStandardScaler().fit(ga)
standardized = scaler.transform(ga)

Single-array functions

We've also implemented some functions that work on single arrays, you can refer to the following pages:

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

coreforecast-0.0.17.dev0.tar.gz (2.8 MB view details)

Uploaded Source

Built Distributions

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

coreforecast-0.0.17.dev0-cp314-cp314-win_amd64.whl (246.4 kB view details)

Uploaded CPython 3.14Windows x86-64

coreforecast-0.0.17.dev0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (348.7 kB view details)

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

coreforecast-0.0.17.dev0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (319.0 kB view details)

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

coreforecast-0.0.17.dev0-cp314-cp314-macosx_11_0_arm64.whl (264.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coreforecast-0.0.17.dev0-cp314-cp314-macosx_10_15_x86_64.whl (291.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

coreforecast-0.0.17.dev0-cp313-cp313-win_amd64.whl (239.5 kB view details)

Uploaded CPython 3.13Windows x86-64

coreforecast-0.0.17.dev0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (348.3 kB view details)

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

coreforecast-0.0.17.dev0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (318.0 kB view details)

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

coreforecast-0.0.17.dev0-cp313-cp313-macosx_11_0_arm64.whl (263.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coreforecast-0.0.17.dev0-cp313-cp313-macosx_10_13_x86_64.whl (290.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coreforecast-0.0.17.dev0-cp312-cp312-win_amd64.whl (239.5 kB view details)

Uploaded CPython 3.12Windows x86-64

coreforecast-0.0.17.dev0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (348.3 kB view details)

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

coreforecast-0.0.17.dev0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (318.0 kB view details)

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

coreforecast-0.0.17.dev0-cp312-cp312-macosx_11_0_arm64.whl (263.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coreforecast-0.0.17.dev0-cp312-cp312-macosx_10_13_x86_64.whl (290.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coreforecast-0.0.17.dev0-cp311-cp311-win_amd64.whl (237.4 kB view details)

Uploaded CPython 3.11Windows x86-64

coreforecast-0.0.17.dev0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (345.6 kB view details)

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

coreforecast-0.0.17.dev0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (313.0 kB view details)

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

coreforecast-0.0.17.dev0-cp311-cp311-macosx_11_0_arm64.whl (262.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coreforecast-0.0.17.dev0-cp311-cp311-macosx_10_9_x86_64.whl (292.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coreforecast-0.0.17.dev0-cp310-cp310-win_amd64.whl (236.6 kB view details)

Uploaded CPython 3.10Windows x86-64

coreforecast-0.0.17.dev0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (344.5 kB view details)

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

coreforecast-0.0.17.dev0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (312.2 kB view details)

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

coreforecast-0.0.17.dev0-cp310-cp310-macosx_11_0_arm64.whl (261.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coreforecast-0.0.17.dev0-cp310-cp310-macosx_10_9_x86_64.whl (291.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file coreforecast-0.0.17.dev0.tar.gz.

File metadata

  • Download URL: coreforecast-0.0.17.dev0.tar.gz
  • Upload date:
  • Size: 2.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for coreforecast-0.0.17.dev0.tar.gz
Algorithm Hash digest
SHA256 b3fb0d241db8a1277e8599c64a9176ea85d9d250583c002a60a9d4e60fe4ad1d
MD5 5233f677e45b3121c7e2bd8ea9fe163c
BLAKE2b-256 bd345b21a1ea3e44a9d6c23a9084aeba82835eaa32135c7e688d474396fe0319

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0.tar.gz:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1e1a872cd064d4933e9e7dc5a6daa7a66c9f7d2a06daa2cc9c826bc326d8f71e
MD5 29616dc38ab1b2e104ebe27bdb69d094
BLAKE2b-256 a93571e949655aaddad9a4ea06801eae04364a982924637b10b483c9cb4aa671

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp314-cp314-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 960f4b9f569555798ced255477c9c8f2447edf1e862b74118807eb41fbbe4e02
MD5 3398555a9e6bc712d2eaaa98ac1779dd
BLAKE2b-256 0ef9a67b730391a3c7959ffb22e198a75fb76ba4f74e3b1ac0481abc1f556a2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ea18e64d12529ea098eaf0fe072cf24a316ae1ad2932f8a856dd02a690398be
MD5 ef7ef250ef3ba52454dde072196993ee
BLAKE2b-256 f6385cca8040d7dc9793b58e19b0ad8b2bedca80039a0eaf655757bea0c92ee8

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb90520e692c4ca172444fea22f2249d57a92ac27c0bb7741270c7deb8b85733
MD5 d80a2957c1dda563c528afa95ffd09f4
BLAKE2b-256 b8f1c32d7f09616306e11ae9cd4a09d56fa2782dcf46482e2f33313601bd6fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d8a21bffe29186898e4e7ef4857d482ccb0fbe5f026680b23ff1b1eb218e2e44
MD5 789003a0ac5a98a841794c69671767f6
BLAKE2b-256 054b417492a86a48177acb28e733e17c96c69300514a99bb31c11897a8871457

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ab475e9b4beba1467a8e39c375906a11f31bef7412175541de2200ef9f1d235f
MD5 2242c16f4f76a60ac26a6b3184f271b3
BLAKE2b-256 0ad9a0a39942a2edd668ed0d7a3331b1aa6c64335a1786076d95570c5f38329d

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 209835c6068f35bad3e522209a3b858c3f09a306e46a7a18a7436ab5078053eb
MD5 397e514e3571fe1a3ac5e505c3fad8d6
BLAKE2b-256 91bda877e1d164817b4a7e79870ad33b844a86e1f23464a42736d2c7a0898720

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ecb6ec8672e2aecddd9f83a52a7829f7003d2c61690b568b59643f5606d004a5
MD5 3c3b4152f8e24c35caa6b1b98f02b75a
BLAKE2b-256 e33bfa6ef021a84410ab070a4faf742d78f3d262e295dcb04abe290088e59373

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ed73b1dc37023c659a2dd3c61f455527e0123a362a340cc2d1560e2f76d5f47
MD5 00ad0411994f526cda6cbf7d7d28f577
BLAKE2b-256 d41a2365c2bc039447e9b0d4b7ef373630a33675300a2fe1d27d9376df69ef92

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cf09163154ec937f14d6c37a980220075274231ac6675e81d97ba22d5e085ca8
MD5 0dbca25ec395793513f4b8f8a52c1e4e
BLAKE2b-256 13b6f21f7544b6423eade74ec7956c0963b83695e8e78d233ea58bdf41b3f724

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a686d5d419d50c99dc9a6b39b243d53a90d62a53d69ea347db8449c193b81e16
MD5 4d27a6c2c76e8afd60402df3af2e3f5d
BLAKE2b-256 a7eb94a955967667bf1c994ae6a8036b46fb02b11bf2dc7e4ac91fca990205a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ff77a6d6cd7825e10b5bac67f34be42c38ab663db2d7db2944c6081f2c5c845
MD5 609268a07deafd300ba1041a39347057
BLAKE2b-256 4edec1fa0bea5992e3a0287388a144c3273ceceaa9fa00c5df2acad8f240fcd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b41807e15e94650ec43f70b39f05da818ccd1a9681c963a6cd534a3ce51d1f1
MD5 8dfad7af57d661ad7bcc81144a36dd85
BLAKE2b-256 f4ef45bcfea23b0231e851a3e84630e4e24844c264e6880fc6548b9560859c1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9f363a95ebd5f832cf58c629a9c94bd83d8fd8aec9ee89d5671fe1ce5f9a5f7
MD5 30b715cded9a4fbe4d3777edb8c79d16
BLAKE2b-256 8024153769a4061b9a06735e85fad4cddbc0ab8ece6092d03b79a45e9970e6a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 af7d03a4d1ccc36e525f15ce32bab6fac17bae45ec8fbfa5d928b3614649be52
MD5 30875eabde818e99100b7ddfbfc8b4cc
BLAKE2b-256 25ab5c0ca86aa23324f2b6f1f524e52ce237e368186b3256cb3dcd741aa7ea48

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca4a793bd29922adae5d470c79d027569b348a848d3e152b5ffd671697fc0879
MD5 92ad4da6f8426b134ee2481a7bd04e5a
BLAKE2b-256 d3045a67e65b0a78edd15191dda93fff37c591b46393699657e52f9d444765ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ec9200fdcf6b8a43e7dda68975431ea10b5c331bb055867593f83e445ef1dc0
MD5 460326f6a446b499c1c38d220edd1a19
BLAKE2b-256 80e9319d8c33929b37b5bcb2700134bbb3e3fc6d1648168422ff5f0b8a7fd8d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51b5100d9005d1faa91605fed85edff59c127f97f51298531742104d3fa48a82
MD5 3dfa04b490f5d93c637522caf138567d
BLAKE2b-256 c4d5962f88ad273885ca06c17444646effc2d39356ebc38be80567134082838e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab63dd90f713fc2c39dc3fe6646c3dc246644faad1880a53fc185e2eb39e6de2
MD5 0a34ff9fef64353282db545b8d1d1bd6
BLAKE2b-256 a89e1d66fe8550538d2134425d4a5bdf925b34c882a503fb4ce0d4142debf208

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0e2f9b87f3917f726bc043951c9bdef6818c1f6fc423f84f03ce0e11fab9561
MD5 7b3fb26506daf53e4f501214850f087e
BLAKE2b-256 0716f745b51a8819789e5d93a580b54e3b53f3e3fcda6eee9e44ca89773d292a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8a45e3a8cb9f60172562e6987b03e638e9047c88e6a422f0899665492cd358a3
MD5 65492236a057f8657b80080190520f76
BLAKE2b-256 3e04276c1dda8959637f359b1ad2cc865507a4cabc40d6d4863401b8cb037756

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 365d078493da92e72114929952805fc60cfcc8c6e8aed1963a2ad77e7cc207b8
MD5 72a056e30912c2cf866096512f483ac7
BLAKE2b-256 a67f6c2361ec9220a80c25b92688f7b4063ab0ac165acba9223eb02f858a95ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3055f749453c3a36bbe68fac8501478f9eb8c51a2e29f17431cf47a6cffaef9
MD5 41e7ac2f15f2ce6272766e881e2cc9a5
BLAKE2b-256 72cf1468285ce11cb9073f509f2238103f83ff914f919771820e59654b27ff1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75c2aa100716ef702a8c681b898e384bcf8dee4b0d217309c320b2c093dd7eec
MD5 6aa74b107fcb4b5cbb643edbf4b690ef
BLAKE2b-256 ca485e7ec76ae49dd5f6eff5b28fd8b4d07b1a7d23183206c3c80a0872d70443

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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

File details

Details for the file coreforecast-0.0.17.dev0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.17.dev0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6accdb886b1909a6b0064b33fbd596e9a2d8ede352bd37305073fc50dd227574
MD5 bfc10ee6e99bc69f45878aa5b621e238
BLAKE2b-256 8ffebceb0b01886cbe33a87926ca4ce8af4fbaa0764cc91e55972a65b5907881

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17.dev0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on Nixtla/coreforecast

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