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

Uploaded CPython 3.14Windows x86-64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

coreforecast-0.0.17-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-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (317.9 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

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

coreforecast-0.0.17-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-cp312-cp312-macosx_11_0_arm64.whl (263.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coreforecast-0.0.17-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-cp311-cp311-win_amd64.whl (237.4 kB view details)

Uploaded CPython 3.11Windows x86-64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

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

coreforecast-0.0.17-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-cp310-cp310-macosx_11_0_arm64.whl (261.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: coreforecast-0.0.17.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.tar.gz
Algorithm Hash digest
SHA256 80f85deba12deb6153e36a127c2781eeaa09918de07393428923b537e2f7d259
MD5 6398bc51b55b47a06e7b7bd471978276
BLAKE2b-256 62609b0393ab1e29fdc8669962824982b6b875551d271e99b50c2e7ebe1eab1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bb2b747857884f350d8a6035d13cf1d4dd826404118f75734df6a44bfd8670bc
MD5 825cc2fae91c6ea9ec66b806a55cb28d
BLAKE2b-256 6a31aefe4dd70a9e63bf17d159ef76c4a5c2b6242efbc5e4ebfe387a228e389f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7bb5692b58d5c4ac1043ae1b315eaacad9d9387d6cd83fb48cecd2b7779afb98
MD5 92f994c8ca7b819d1a801cfd3d4267eb
BLAKE2b-256 9c12b59f5b656edf03b03b3157e35195adc68a6396d99555628f80095f1917a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eefcfdbe7f1ee3af3d1050099815de44243d5e6f23762a4f2f0ba6230e04d4b3
MD5 2997fbc5e39f7190d64a350f05430fbc
BLAKE2b-256 309471692f9e5ec5801c0cca2946ff49a7ba47c45f793079b9812bf6938b5cf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c7d411333be17519ae30c9386ae9d7015352f93a3fecaa309ae0564179b3b77
MD5 927f6d63a525c5dd1df4c112062ad867
BLAKE2b-256 736930af8928b59f0650b4f477a73f8a1045e2fdc470684d308e38b98fd229d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c9396c5d80f8c8d8ba1e89cd7dd7fc904b9b819d009175acd4986e91375fe80f
MD5 2aa74bb32a05112dad6a3666f42b6a0a
BLAKE2b-256 79c06d8e7e5f5307d2863194de598c2567652971107631cb3e9eab72dd834c2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4dce06a3dec0e20d6d88a85c506a6ec2f3ac6d317549a878134a16508e0479ba
MD5 cfd8e72db9ca557212e7108952f48460
BLAKE2b-256 cf47de859c21a3bc5d959bf8af750c03486fb62cb4bb7acb71519dab636ef59e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd47c21c9c5d307518d1e5ac9033422102400ac7f7cc3b2ae2bbd8eab7808b43
MD5 0c5e7bb29a6608cb77a4b26189f3c5af
BLAKE2b-256 903e5b48c87973a6d3f340b0e8a24fcce38a1e65f6b75ba24e66a3c7472b2281

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4dcbec6c7a4197103ec0d433f6a7d95b23b226c51909b2161447e53b6da95ab
MD5 09b2d02f5d2a4c96e2e1915ee497df45
BLAKE2b-256 d32388dc70dcc483b827e58f0a0ea863d887f4bdcae7e0e5234f06f942555eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d25881dc4eef1fe6c1958ec6a683476cd82f88fa166bf2b136ccd217dc46ffd
MD5 0c326ef93e9c17542738261df2ff2a3f
BLAKE2b-256 ae03b61dc7ff53e736e1becfb704bf76fa743749b528e471e52a11c7dbd2f1e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 131240792aebfbd9c07df8d1eecec8484facb76c04c5c20888300325dc74ea06
MD5 c68e26633211e5efff7844853d771937
BLAKE2b-256 75902fef87c1515a40dda14f2cb10910eb9a038ea4f790fb8373c6e7fe83e85a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61ffbe5df741d830ba1c21f11aae9448659e20c11ba7a663734baf6f910a6e60
MD5 45384386c7bb742c521e6fcf7110b6d4
BLAKE2b-256 1ab9e0a1f1db8a4e549c5284d59bdbc1052a6848af87878deccf5cda2e8f1829

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 497ac7ad456ee4daaaf471731c39ee9692af39f760d7ef4b72fe882075643753
MD5 d0aad8e430d3c433e0bcb81437118fcf
BLAKE2b-256 86e6df4a9bd04479f069f176666da42268dc1ef037fa93724d4e1ca3ac712ba2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88126b4df1556c349cd99855dfd5380512d0af04b40fdd3d19cf3d58cea99c97
MD5 37aab33d1b481019d743482e2ab17d1f
BLAKE2b-256 54404c20d7181b4bdbc482889db090d401af7e73b58d120d08b810ef9fa37d88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eda8ccdf97f9353979c8c69e89352b98dbbf75290bb5a8a43850f08051016537
MD5 3e93ec2db849207f59f5efaea4edf86b
BLAKE2b-256 ea681e7efca384cd506b5e772a5a7aedd4b2c34aeb10cf7598b03bef6014b7f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6530eb0c1fc3fdb51697ecded87e72ba34de1b69010a4571dab846ee25e9c8d2
MD5 51b2a12ba574de7c7deab48250998990
BLAKE2b-256 263a15ca47bd01a374289e8e8332d7fb67937cc171ae9ab2b0004361d296c9eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef38951928446dea4214e971b2dc08b083a9b2ba60cbc498a91478e3c13af50c
MD5 daa4b7c7a8bfef140d28b5ba68e6c0fd
BLAKE2b-256 b3716e9992cffbfce44dce1c1a62287fd139d9fb546a91d02f9ede30dbb051ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 597442705caad5bb29bef6d13896a4f49da242bb338151ab2a3f37ca72e6716a
MD5 216ac11392a246bf8b68864afd32957c
BLAKE2b-256 cced335de0cd269c80cdd74ec85b71c62814c5c9244ed47f0294ad2cbc440d00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f29bf8344ff343e275b494ef2f9bc40bfd0f92c64e26a845663ac499e9c3c5a
MD5 0e2c9456aa6b058e332dec11808ec484
BLAKE2b-256 2292f9e7ebc0b3d6ba5c0a4a30ce90eb09e554de523605067b0191ee9dcf9f2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acc3db919ea3eae85b1d87d72e7f69c8535766b757265c4e0ec0fffcffa92e24
MD5 1d28e2c00f44e0e197cdfc1d35081aea
BLAKE2b-256 6498bd8e890648604250a906d2ffb50ae3c90d8b93c72b995c6962468d2e9cd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0baec999e923fa0b3bb385f4b3fb793a53f8a517f411e01764e7d649a4982b2c
MD5 fb22eaa5fc58f39bb5154d3e17095e03
BLAKE2b-256 e2d0d54a12847fc1731c127985ad2b53f198355a246c79258df487cd440a8f9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13d64adb41efb2b92b4ef2ddc3e94c3d28da9b0d2b918604ec6a08d7f30be47a
MD5 31994eeb3c636c1b420c9ed7520db9d0
BLAKE2b-256 9b7baf3d02d8151db2ea059b90dae553a73b14492424cab6cad5748075b8bc3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38b6e052050b828330e99b5950db6a39958c7d25a34882ffb117e49abe0babfe
MD5 498881905176ed2a5f97173139274b21
BLAKE2b-256 89591ab440f063e332bb38ac17fc149d95eccd33ae2299ebd98abc86d8dd3a9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0ab58a73907e4d9908f0b9877f2329f070daed757903e3d5d43f2ac0b81704e
MD5 cb23d582b060fdd10d6ef0b6fc081b48
BLAKE2b-256 76b3656e71f13d49797dcf1c01ae2ab7d311ae9a89df526be98443507e1d5aa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 114f45fd1462ad13716066bd28e9c9ac36caa7f4d8105d85386ff7cad7119bba
MD5 13efa6c195c224e032a476fa60c20357
BLAKE2b-256 bfb11de3590e603dbe021b7c43316b1c7a397628be9fa8162d59a1e3a59c4e8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coreforecast-0.0.17-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8bee77eb595cd6f4e64da1760c21b8216ab8282069ebb5cf9b6b7a8c37245f6
MD5 4e6727d025c275397f66ebbfd1a7a2a3
BLAKE2b-256 aeab07e7306af056823d4f222f03bde38e9b31ef696699d20ba98609329570ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.17-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