Skip to main content

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:

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.18.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.18-cp314-cp314-win_amd64.whl (485.2 kB view details)

Uploaded CPython 3.14Windows x86-64

coreforecast-0.0.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (349.0 kB view details)

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

coreforecast-0.0.18-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.18-cp314-cp314-macosx_11_0_arm64.whl (264.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coreforecast-0.0.18-cp314-cp314-macosx_10_15_x86_64.whl (291.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

coreforecast-0.0.18-cp313-cp313-win_amd64.whl (470.8 kB view details)

Uploaded CPython 3.13Windows x86-64

coreforecast-0.0.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (348.7 kB view details)

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

coreforecast-0.0.18-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (318.1 kB view details)

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

coreforecast-0.0.18-cp313-cp313-macosx_11_0_arm64.whl (270.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coreforecast-0.0.18-cp313-cp313-macosx_10_13_x86_64.whl (290.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coreforecast-0.0.18-cp312-cp312-win_amd64.whl (470.8 kB view details)

Uploaded CPython 3.12Windows x86-64

coreforecast-0.0.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (348.6 kB view details)

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

coreforecast-0.0.18-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (318.1 kB view details)

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

coreforecast-0.0.18-cp312-cp312-macosx_11_0_arm64.whl (270.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coreforecast-0.0.18-cp312-cp312-macosx_10_13_x86_64.whl (290.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coreforecast-0.0.18-cp311-cp311-win_amd64.whl (467.8 kB view details)

Uploaded CPython 3.11Windows x86-64

coreforecast-0.0.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (344.9 kB view details)

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

coreforecast-0.0.18-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (312.7 kB view details)

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

coreforecast-0.0.18-cp311-cp311-macosx_11_0_arm64.whl (268.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coreforecast-0.0.18-cp311-cp311-macosx_10_9_x86_64.whl (292.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coreforecast-0.0.18-cp310-cp310-win_amd64.whl (466.5 kB view details)

Uploaded CPython 3.10Windows x86-64

coreforecast-0.0.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (344.2 kB view details)

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

coreforecast-0.0.18-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (311.7 kB view details)

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

coreforecast-0.0.18-cp310-cp310-macosx_11_0_arm64.whl (267.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coreforecast-0.0.18-cp310-cp310-macosx_10_9_x86_64.whl (291.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file coreforecast-0.0.18.tar.gz.

File metadata

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

File hashes

Hashes for coreforecast-0.0.18.tar.gz
Algorithm Hash digest
SHA256 2712aa23699302faf602253e413b6900eff395ddaebfed19ed4f9d9323ee7443
MD5 75b625860f1dc06655ceb68e34c3027f
BLAKE2b-256 7b7fadf447b42c90ecaaf3edaf1334ce75e61a3e8f737a437aed9fd3fd008f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18.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.18-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8c5f42fd675bb21d1b0e9cef54a02bb19613f11e6f45798bd45e4c57794af91d
MD5 b0734df9635b2d3ca563f44a8f8e91b2
BLAKE2b-256 8ac0902e935b054c197767d11af3c55d64acb0203a296f2ea0ae7dcddc10f2cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09217d20ea94c8f2db8727d27458524d7770307adebc9ec7c467d6b4b8a16190
MD5 554b78b1cb0e930ff16e83479942d575
BLAKE2b-256 fc56bfdfaeb3711a13872920f39164ed03c5b53cd7c39a9be2408ec18650f72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88a53503347c2c1e862192c74462dca82bbd5612650c834470bd2f6fdff953fe
MD5 789742aab8ea2e9574a7434cc92e39f6
BLAKE2b-256 c9fb1353487c73a27fc3d9f1d075ae79f80c6856cbb197bc0c303f7fdad93094

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9714f5f7254e95be7f2f50bd525344e5ba00de5ac0b95769c57a600879f4ce6e
MD5 f870fb8a88a97f5a2104a41344d1fe2f
BLAKE2b-256 889f80db74c073bb99f7cebc9a7d4b1c06c3973ca1f6f12b96942170537024f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 efce165e59bfa2247f3ad25a3312695ea88e99b945c86ff4853c2ed765ef3253
MD5 4603b381993583b8eb9a6594d46070b2
BLAKE2b-256 f0c6cae60ba6455631b1bc7d4f548f615e5b7ca9ca8ac7b6c8f64263cb5da8e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a00e72d8ec09611b60c00c2b36befb437023093ef176a7e15610495a6592a959
MD5 c75b594556c4f70cfbcfe112c0b66e72
BLAKE2b-256 42d84cbc2f9c9d81afbc7981eb8411b0e01f29a58cdb889a8e31a1c6f40d5ed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2d8520150fe9d768483181bf8debd5529904f1b4dc8e30bcf69fa04f5d6a66e
MD5 a23f60e59bae4f8d30f8c91b5f5dd2fc
BLAKE2b-256 34c42f1fd1db605e99ea0f2172d402b766f0bd67f02530e56384b0a06dee2544

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c610a456d223925eb3a52b3e5c98b3bfeebc499f6538287ceb62fbe1bcb29aed
MD5 8fc6343dfa9197f12e3a92fa6dabaabe
BLAKE2b-256 d25100063b012da535b1664e65980e2d8873060d36222560d8ae113c9fed19e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c4d13f2ff2e86ac05cd581e75bee96663f3b404cb1f50845c50b0d3b2a52fca
MD5 4427cc2e15984258711abb2b4c370fed
BLAKE2b-256 10adcfc697e7aaf0586e836730610782868294b4916a025c6ad8509d1bb06163

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 82a7aa34fd67166f688dd26bc4b44d207162d636b17e1bd321b7ba297fcb1cd2
MD5 e3e02b6db98a3e3c46f2ac7006b2316d
BLAKE2b-256 5febdb26198cc9be3d63f52ea20bd622d1fa1e701aace07f29c3f0e0c7e89711

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c37074116875d28376292dd635bc06bc17813bff8d3b1aa711fe1e746291d9dc
MD5 59b01b5c85e9fa66ab49ba97587d52d7
BLAKE2b-256 94d5ff0a0fbf18e86f5377ef01531da1e7b54ca9ca88bab4f5fdf20294e5b11b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1bd994e9429863a71a7010d4f484e93a5f304b6422da062c0e2d8ef821d1ec2
MD5 48f2266d0b7008b970316c5b20c73994
BLAKE2b-256 28f4e150f5547db08d5477ab900bac0962de8224562a048dddba5ecacc0a339e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3bea50757e3bcfdecc15b5c04d8aca41fac48f559fe6d2c80b9c87924acfc3c
MD5 ce8718b41723de325bbdfcfce60b5760
BLAKE2b-256 8cac93f69a022dc32184b5bd47358cf31f4e8d1bc4d8e300f713900e6e0f99cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65db72f6cdac458931c74b280e5e53867e85cc84dd29d9a296ad75d5f51c84a1
MD5 36cc11ea8464b7eba0a7a3afda4deea1
BLAKE2b-256 83b87dfbaece66a6df5a49cbd281408046bcb1a2d0dbfeeff61b75f23c6554e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f20dce0b4583e7d1d4c4ab23e8c1acddac636130f070bc34df53e4ff307056d6
MD5 1f73b58de2c3d46f7c02129fe9b92621
BLAKE2b-256 8b5052af7f6227ec96fb336201ba66b4d4dea045f94dcf71ac532bdecc291f8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 da233e5eb16f57547cb862a125edc1c168af28cfa624699d1d4a009da8a3403a
MD5 937efe18d73fd0d9305ac2efe32ab834
BLAKE2b-256 10400eee126e28dff51af9611072033e0b56bb390d443792fc02a6e8e37ebf94

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82b4e991b209543d849340871497197bd92062791f0f98940d54c39e698e457f
MD5 4f17139cc0b9c545762d630ec64d3b25
BLAKE2b-256 d1ccee83ebeed649d7c4dbcdbe0e9f0c20da439c8dfda5037cd765ced544bc03

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5c79671a5f03e6ce30883b0a08d48090935c2ae20f323247a60c146cae1e7a3
MD5 e45531ff1bb39ead6197ffc4f4e3a6ab
BLAKE2b-256 78f49342bc101fec07d12b01518a06d03667c225a8fde4aa1d98b3da5b7b9540

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b38407bbf7b84dc3b61ed0226b1f84e70bf0be3b6fe9b3fcd586a3b78e1d3cc2
MD5 3623f044d76d283cfc09c747a45c9761
BLAKE2b-256 db4e37544f7097a32c99255cac53749d85523b78762dbc7eb8a852ccce802482

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 939dd6c81384399bb931c1fc61e77ee8a0ba67b0aa90f5044dd233be261d983b
MD5 f312e40725c93934622ad07ed1f8f4c6
BLAKE2b-256 e3fb7d3171896f850c566c0df1938d8a29332a34bc5c4217d4e33ed00bbed95f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e1a245c5b3b0ad29e9337df6dfa731fbcff5e17c11bb16cc84e6a01598e65be
MD5 93cdaf3589e9c22702d7e95685e55e5a
BLAKE2b-256 b5bfe717ce75953385abe093306030b72cfe7e5f868edc2a25a3a9a153b6141f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a68a4a1e02de3d4349a6d539b5dfcadd059c9c8e261e25dede1835519ce7a94e
MD5 bb798c3297864b9196da25d2e7a5486a
BLAKE2b-256 a8887a388aaf21f3ed023af6af86be08726e38951ea1bf7e4dcfdb774b626d16

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9333664ccb28ea00e8101d51f50be208f6574b3132bfd01ef9217bdfcb78a6a
MD5 7640e4cb96ff45eb1d760d5ccc73eab7
BLAKE2b-256 ca63d49ffc718d3c90107178f323384f7c4f688233bbbedf3b3e28b8552ed8eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c58ee162c0d619125cc32e055415030709deee80a36968fff12fd1ef334a62a
MD5 a69e23d40d7d6bfc9a33134a9feb10f9
BLAKE2b-256 d0c18e156cbb4a932acbc0b016e004ce635b34cbf4c167412009ea4a7ab14a92

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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.18-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.18-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fca7cd7c0a18eafd58fc19be6db8062f1c621b017c342b56ad6e4100073ff11
MD5 ab2aa95ac1025c255053a5d55ef683a1
BLAKE2b-256 50410cacccdf2efb78cdd4f1066ea150288a9775942998aaf0e095de0e77501d

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.18-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 Sentry Error logging StatusPage Status page