Skip to main content

river_logo

code-quality documentation pypi pepy mypy bsd_3_license discord


River is a Python library for online machine learning. It aims to be the most user-friendly library for doing machine learning on streaming data. River is the result of a merger between creme and scikit-multiflow.

⚡️ Quickstart

As a quick example, we'll train a logistic regression to classify the website phishing dataset. Here's a look at the first observation in the dataset.

>>> from pprint import pprint
>>> from river import datasets

>>> dataset = datasets.Phishing()

>>> for x, y in dataset:
...     pprint(x)
...     print(y)
...     break
{'age_of_domain': 1,
 'anchor_from_other_domain': 0.0,
 'empty_server_form_handler': 0.0,
 'https': 0.0,
 'ip_in_url': 1,
 'is_popular': 0.5,
 'long_url': 1.0,
 'popup_window': 0.0,
 'request_from_other_domain': 0.0}
True

Now let's run the model on the dataset in a streaming fashion. We sequentially interleave predictions and model updates. Meanwhile, we update a performance metric to see how well the model is doing.

>>> from river import compose
>>> from river import linear_model
>>> from river import metrics
>>> from river import preprocessing

>>> model = compose.Pipeline(
...     preprocessing.StandardScaler(),
...     linear_model.LogisticRegression()
... )

>>> metric = metrics.Accuracy()

>>> for x, y in dataset:
...     y_pred = model.predict_one(x)      # make a prediction
...     metric.update(y, y_pred)           # update the metric
...     model.learn_one(x, y)              # make the model learn

>>> metric
Accuracy: 89.28%

Of course, this is just a contrived example. We welcome you to check the introduction section of the documentation for a more thorough tutorial.

🛠 Installation

River is intended to work with Python 3.11 and above. Installation can be done with pip:

pip install river

There are wheels available for Linux, MacOS, and Windows. This means you most probably won't have to build River from source.

River's core online interface (learn_one / predict_one) has no pandas dependency. The mini-batch interface (learn_many, predict_many, predict_proba_many, transform_many) is built on pandas and is opt-in:

pip install "river[pandas]"

You can install the latest development version from GitHub as so:

pip install git+https://github.com/online-ml/river --upgrade
pip install git+ssh://git@github.com/online-ml/river.git --upgrade  # using SSH

This method requires having Cython and Rust installed on your machine.

🔮 Features

River provides online implementations of the following family of algorithms:

  • Linear models, with a wide array of optimizers
  • Decision trees and random forests
  • (Approximate) nearest neighbors
  • Anomaly detection
  • Drift detection
  • Recommender systems
  • Time series forecasting
  • Bandits
  • Factorization machines
  • Imbalanced learning
  • Clustering
  • Bagging/boosting/stacking
  • Active learning

River also provides other online utilities:

  • Feature extraction and selection
  • Online statistics and metrics
  • Preprocessing
  • Built-in datasets
  • Progressive model validation
  • Model pipelines

Check out the API for a comprehensive overview

🤔 Should I be using River?

You should ask yourself if you need online machine learning. The answer is likely no. Most of the time batch learning does the job just fine. An online approach might fit the bill if:

  • You want a model that can learn from new data without having to revisit past data.
  • You want a model which is robust to concept drift.
  • You want to develop your model in a way that is closer to what occurs in a production context, which is usually event-based.

Some specificities of River are that:

  • It focuses on clarity and user experience, more so than performance.
  • It's very fast at processing one sample at a time. Try it, you'll see.
  • It plays nicely with the rest of Python's ecosystem.

🔗 Useful links

👐 Contributing

Feel free to contribute in any way you like, we're always open to new ideas and approaches.

  • Open a discussion if you have any question or enquiry whatsoever. It's more useful to ask your question in public rather than sending us a private email. It's also encouraged to open a discussion before contributing, so that everyone is aligned and unnecessary work is avoided.
  • Feel welcome to open an issue if you think you've spotted a bug or a performance issue.
  • Our roadmap is public. Feel free to work on anything that catches your eye, or to make suggestions.

Please check out the contribution guidelines if you want to bring modifications to the code base.

🤝 Affiliations

affiliations

💬 Citation

If River has been useful to you, and you would like to cite it in a scientific publication, please refer to the paper published at JMLR:

@article{montiel2021river,
  title={River: machine learning for streaming data in Python},
  author={Montiel, Jacob and Halford, Max and Mastelini, Saulo Martiello
          and Bolmier, Geoffrey and Sourty, Raphael and Vaysse, Robin and Zouitine, Adil
          and Gomes, Heitor Murilo and Read, Jesse and Abdessalem, Talel and others},
  year={2021}
}

📝 License

River is free and open-source software licensed under the 3-clause BSD license.

Download files

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

Source Distribution

river-0.26.0.tar.gz (5.1 MB view details)

Uploaded Source

Built Distributions

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

river-0.26.0-cp315-cp315-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.15Windows x86-64

river-0.26.0-cp315-cp315-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

river-0.26.0-cp315-cp315-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

river-0.26.0-cp315-cp315-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

river-0.26.0-cp315-cp315-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

river-0.26.0-cp315-cp315-manylinux_2_28_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ppc64le

river-0.26.0-cp315-cp315-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

river-0.26.0-cp315-cp315-macosx_10_15_universal2.whl (3.1 MB view details)

Uploaded CPython 3.15macOS 10.15+ universal2 (ARM64, x86-64)

river-0.26.0-cp314-cp314-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.14Windows x86-64

river-0.26.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (2.5 MB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

river-0.26.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

river-0.26.0-cp314-cp314-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

river-0.26.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

river-0.26.0-cp314-cp314-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

river-0.26.0-cp314-cp314-manylinux_2_28_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

river-0.26.0-cp314-cp314-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

river-0.26.0-cp314-cp314-macosx_10_15_universal2.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

river-0.26.0-cp313-cp313-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86-64

river-0.26.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (2.5 MB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

river-0.26.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

river-0.26.0-cp313-cp313-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

river-0.26.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

river-0.26.0-cp313-cp313-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

river-0.26.0-cp313-cp313-manylinux_2_28_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

river-0.26.0-cp313-cp313-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

river-0.26.0-cp313-cp313-macosx_10_13_universal2.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

river-0.26.0-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

river-0.26.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

river-0.26.0-cp312-cp312-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

river-0.26.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

river-0.26.0-cp312-cp312-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

river-0.26.0-cp312-cp312-manylinux_2_28_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

river-0.26.0-cp312-cp312-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

river-0.26.0-cp312-cp312-macosx_10_13_universal2.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

river-0.26.0-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

river-0.26.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

river-0.26.0-cp311-cp311-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

river-0.26.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

river-0.26.0-cp311-cp311-manylinux_2_28_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

river-0.26.0-cp311-cp311-manylinux_2_28_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

river-0.26.0-cp311-cp311-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

river-0.26.0-cp311-cp311-macosx_10_13_universal2.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 10.13+ universal2 (ARM64, x86-64)

river-0.26.0-cp311-abi3-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11+Windows x86-64

river-0.26.0-cp311-abi3-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

river-0.26.0-cp311-abi3-musllinux_1_2_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ppc64le

river-0.26.0-cp311-abi3-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

river-0.26.0-cp311-abi3-manylinux_2_28_x86_64.whl (2.7 MB view details)

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

river-0.26.0-cp311-abi3-manylinux_2_28_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ppc64le

river-0.26.0-cp311-abi3-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ARM64

river-0.26.0-cp311-abi3-macosx_10_13_universal2.whl (3.1 MB view details)

Uploaded CPython 3.11+macOS 10.13+ universal2 (ARM64, x86-64)

File details

Details for the file river-0.26.0.tar.gz.

File metadata

  • Download URL: river-0.26.0.tar.gz
  • Upload date:
  • Size: 5.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for river-0.26.0.tar.gz
Algorithm Hash digest
SHA256 8f0f876a966ae8034b6a06fa395bd76938a8dfa666808910c67487eaf70d2a5a
MD5 7037b778cf696d15839a8a584425549d
BLAKE2b-256 9087ff2cd569527c97a18ac99bcdda5a86dc4d56ffc993f67e1a097ee622d73b

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0.tar.gz:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: river-0.26.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for river-0.26.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 204deadbd5baa62f3431d43b011106b8880386c9cf777f934b0716dbaa425f61
MD5 f9e17eb2f7068e16cc017555ac630a80
BLAKE2b-256 7cfe30921c70dbfca987e9e5c24baa7e3dbc9f7d770ef39d157aeaced618762c

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp315-cp315-win_amd64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 789b0ca65440068804c8e19cefc5cdf104e969282964ba6ffad1ac5a089feab9
MD5 39fa8b3cd8c7841cd28e7ead3716c2ee
BLAKE2b-256 7ac6d3237de758a6cd9157f28b23702f38cf38ec6940ff7652d8fe45b8d733d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 875b02a13f998df4cc46902fcf4dc615545727d399c194508ec9a0b61341ce75
MD5 33cb87fd68912f27d8ed80235191750e
BLAKE2b-256 af78a36f516a3345f4a909b1861bc6ed5c30068f242bc050cc8c59fba24ec55e

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp315-cp315-musllinux_1_2_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58eac1726c3600c652358095f7ffcf320f77fe6daa37d0504d372ff8bb7994f4
MD5 7c05a83bbcedf27939cfe4c3b55f3b64
BLAKE2b-256 be341b4633d771782ab8e51076e94a8990249050a4be86f9eaf0cf5e0d5c2d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 924395d023c12a8dec7ac3bb800124deb652652ca81bb1b8c02d0eaac66a3aac
MD5 55b6a3ca7d07c59ee542395ba2b66065
BLAKE2b-256 0b0f3728e375772113b5c849587d762aa68be794e946d046e0ec3a09b7158989

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp315-cp315-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp315-cp315-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f69168c57fc8b756be3f494ee29456fee334e8c8bd5b146c4f4ce93a95cde17b
MD5 2f1f730dc00981de55118958bd879850
BLAKE2b-256 d084e05a69628549ee634b1bb208ccebbd08f09d6e7a943dcd60729cbc8e7155

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp315-cp315-manylinux_2_28_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3014752b032d378e0f9d2e2d7d2cade4dcd5d7575fca8a04cf6354efedaa36b2
MD5 c3d95022f282e618caa8d52ed1261f78
BLAKE2b-256 ecaeeccf83c62596bda2f1ae6557101ba613b53274fed676a15d616f2675c3d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp315-cp315-manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 7a91046220563a9b90c75086151fa70db540a8b78a903f95637db36d9d9355e1
MD5 e03b47467b4e552c91494047e077bacf
BLAKE2b-256 21c56e586ce1dc9449b4b834498c6fd8b74291c938f7f6cd49a55e14b8ffb650

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp315-cp315-macosx_10_15_universal2.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: river-0.26.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for river-0.26.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7f2539da6cc9465fc262e63f053f9465b830a4160846d80b5595a3f3de58b25c
MD5 ddf7b6a167d9b4b9cf787475333b4a61
BLAKE2b-256 36fe3c2499c5676ebd1b39dc485e2cddc8a12186facebfd490cc484d84ae4272

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp314-cp314-win_amd64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 789b25c48832fa1fa9cc2e3fdb69b8ccca2794241d4a2e444c760c9b53c09059
MD5 db665807a08130972c75ef324a99e8fd
BLAKE2b-256 55b6ffbf9c9339d40fe476242b905638409587d5a74f76b6e68d88919aa9d8ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c181f958bff7cc09c77f9816339e472ddcce1073554fd9b77f1977870b3673a
MD5 f3f3f5c8ca95020fd57d1e98b30b09d4
BLAKE2b-256 f5bb78ff7f5a2918fd13714738c33c9799d705ba1bac2b1f5e6a97efa7fe9188

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2ec9a39fe6ae7fc65ae1604d8efecd94a195bf905eda67345edee5c93c81c878
MD5 805d7fd0a27fa414b2070152902142b2
BLAKE2b-256 6b8a3b04bd6fb1354ae18b2aa88f74bec79fd2dcab03d5c89dd9be3a80d555bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d17e31df02d974d3eefe013557e2c592d9fc29b594f5db4ad9b71f535115da77
MD5 13b33137baed1c7f5b3bd2d4fe6d34b3
BLAKE2b-256 860bc95d5fa5d2d4b05aac8adf1c6821d9388c32518430d17def2397bc720b9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ec6700d1511f7e662af82fb25bad63958a52f6ab00117561be003eedeb57d4f
MD5 89aca8af4818194b7bd1470bf4aaebd1
BLAKE2b-256 ad993a7b09a64e219308207a8fe09492cbcba44deb1d1b41363ce693fb33d81b

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9b1d9a7e80d359562195774e0eccc80616c4fbb7800b6848abee81ad86e76134
MD5 383f75d67d771dc7a85e42e171c41e2f
BLAKE2b-256 a3612a27d2b5b8a12c5bbf98ba6164f4b097ad1ab358b84a037689b9b9616e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp314-cp314-manylinux_2_28_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ce5406b67a0153877bc29ee18532e8b846fa8fb128556181309568d5397b277
MD5 1ef86f2dc9c8bfe728b8b3c144c0806f
BLAKE2b-256 0e72d11eec879228d893f9c8bc1b49e3b1f9cda8cd14f92c065c258856801b27

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 80afa51e12aef9bb49b84e9299bda601219aca1ab0c9aeba6c9b5aa6eda31d05
MD5 438f4aee1bd86bf31e9c54024d3665da
BLAKE2b-256 22b6663a64dd9525b256fd48198c7e9c31f028eebb3fe1239aa13cc1b1b9ba9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: river-0.26.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for river-0.26.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 21fe6b798f19c0ee4ad19bd5880e2c3cfb03ac361eae50468d0856784ebefd13
MD5 89ec54795ad95fcae372b50fc5c877ff
BLAKE2b-256 be0ea394cc39774834967b799758093a04a1004287d8080f268d70680e19c326

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp313-cp313-win_amd64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 f118ff589c3d284bbe6a74e0fb514ba9a0d81685e12116ade0a0e87c5f86bfe9
MD5 c76561fb2fd62af135ea38f2fce39a5a
BLAKE2b-256 c57bd7424a94ed391bc0b06bd43a9e6959b482940726fa157559c05440c93bf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f0e55266de312a3ebf00f1d00f02a478df5e6aaea81abda3a3b81dae281e95c
MD5 55663958ee37c2cf9702401e2ab60944
BLAKE2b-256 6e6f5f997ae30f6aea2b9dc326b622a867e0fe2a64ad8c35d4043762c781170e

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ad288c2ef0590ecf24ae0e1b0ce09d6a4eaf9b3048a15c2dbf30d24b9d5e7fdc
MD5 80670d921ffa0e4847a36c93eec6c2ab
BLAKE2b-256 cff6c8ccf3b1d44929951ef11e174aa204b7b4cf56a80ca2a6e4bf2b05ed208b

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f226f03f15f85f7a93d0ff1f67dffc6fd56d45f77ac6be8fa89c0a2e08c0df44
MD5 fbf26c5ae21b5ee1d1a44ba1a5b1a6af
BLAKE2b-256 cc435f4d2bb832295aedafb2d69274047b667157d80f3f30605b436173641a91

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93b12716049ca6656c3fb9dc9409400f775d41449079b65d9d8d9cfca7864032
MD5 f129bb7a21633ae995fc9fe37ac717e5
BLAKE2b-256 4e8fa0cf04911c8397104e6fac0acb843a7b5474f750d34ad7a50c7565bfd8a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cd91187763114a249e8fcd009344a98f25533cb66cc8c6505b29a28a0c3dd185
MD5 777e6a52588fb5dd2d73ed7d799d8fe5
BLAKE2b-256 036f81a959a62ec7c3746762e90c9aa0e2da58d5361ea5883b6de7efa6e342c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp313-cp313-manylinux_2_28_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e040afb605cb7bff02787f28379de22e134cb2cd289498ee1293aee056a237af
MD5 d8a50338cd468dcac0b1e3690d510e63
BLAKE2b-256 87d52e4cdbb9d2e4a6c5ab39c34c8cb99fef54b906a70415a8bb61978f2cb2d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6bf8a5b1425097ace6a845171140f6d028e3dbc82ea57f510cb6da90eb2a9119
MD5 fdd3878007711d02793680a7ef36f9bc
BLAKE2b-256 3a3ca18852ec269c8a2a5c3ea92ef4dc34be6e56d11a6a568cf3dac977858573

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: river-0.26.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for river-0.26.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9cfb0552a45de44f0e0e7b8a17489ef8a1ae51348d0b0fdc283fe85fda22e0fe
MD5 8e0eafde21477ded367cd6fc998524b8
BLAKE2b-256 654fa45fefd077de50148e26d62826ec54642cf3ae483a0aa7bde16e989f73e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp312-cp312-win_amd64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfcd82f6b98073160ddda2261ae6d2e7c17edc053e1d8f29f1e88425cf8e68c8
MD5 2e4cd052664099a5fa2e571d5bf15845
BLAKE2b-256 d7b74ddbc3f5fdbb9627b0632b1716bcb3e07c850003cccf376197c9b7426bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1e960f7d5c3f353393c9dc8b71f25cf12a087d5a30313cc570192629528feb09
MD5 47574446b3ff8438f93167104ca4feba
BLAKE2b-256 4f3ebbc6f6158a5d8c35460e729fb81c0773ea3884cf95cb1e7a2b0b24cd59f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7575d9f7691b036584f40ab562668079965f8c0863b68b68d8c10b59c5512585
MD5 6099bd4a5a6c010ebef584125f4d24d4
BLAKE2b-256 f69c8322e1e07de88d4b5da6dfc6ad92373a33b1494ebec4f12822d980c06df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4bef184ab30c2c1c6f8db910953d0fb2d73c56443dd95050e0f9edc2565fda5f
MD5 1893bed64e9ae0733bbb1efba7183fcb
BLAKE2b-256 05f0eb5222c297f671615bf65ae31f0caf5ff8c55fb293e5a3befbabfb4f2dc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a22101d5aac6767f9e514fa139e526bda5a12c17b588038242e7b4f4a3b5e398
MD5 b02bf3ca2b255fbfaf542a2b5353e7ed
BLAKE2b-256 847a9c04016405275e3f6205102236e248eebb228596cf0563186d18218bdb8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp312-cp312-manylinux_2_28_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f415b387e98f457afd401f5d7cf04683895ea949890e0282ee1f3f8347c9ccf
MD5 e186ccea23c130fd2714e6b9b1276237
BLAKE2b-256 055a1b8449fb3af261a94ac068c06a4a410973dfe887f118e5b69982dd43d243

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9b46aa0b2d7751ca5413b603968dadf9c315b285d847da295abdbdcf9870a28a
MD5 71b4169beec13f60e992854e3910d97a
BLAKE2b-256 51d9ce211628f0a24c3c97321465bcf9cc8d22a7810c959ece03e4c20e0f189d

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: river-0.26.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for river-0.26.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48332fb7761804d3651a2cc2249a353bfa3633ee048d64dc8064614291c3cf3a
MD5 cd1fccc64f68939bc60c7b9dc1a266aa
BLAKE2b-256 c970c25444029eca050db685701b7fffbb454fe778812031df970692f7648306

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-cp311-win_amd64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19bc2198987e732dce52ace8af42a20bb9ebd8a1a398382d2a51ef9d8ee3fc5f
MD5 dafb6f25bb14dd90725c4e6c9b1078ef
BLAKE2b-256 2943a067c01c69dc5f708e98300cfe237344b033ea71d7879492928716c4afe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e283d58f865fe1b723459d3f27f477f158da36db414144b48711ba053dee9119
MD5 652f9ef90e2f083ddcc43ee2257aaf1b
BLAKE2b-256 15bb70e8d229630431b21d2e88e38331d485158c6523e9d8f6793a10a7ad8cbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3dc527d6e0d81b804b86078da9ce4e026b28dfa14dc0d15e3aa0e2c69486246
MD5 bd873cdee50dde646f82d8382b97a64e
BLAKE2b-256 8010414d744403962d936651eccf326fb04e85a49357f501075fb3fce52a8778

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbd351ed6177066e76a8fc903228e342d17fc917aa03f209a963cd5a32b200a3
MD5 f36bd535dfae6c95fa17381fa84319b1
BLAKE2b-256 92b90d4ef893eb7eba62bf31d4628b72e1166aedec8b8a14671da58cce165967

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a6698610776808ad5f2f2ca1fbff600003ecf95e97c022689ff122dab9a5c690
MD5 1cfb907934e1859d1d4f6375663cb318
BLAKE2b-256 f2de9f2c9d9640a4abec0d0389bb58117bc1bdda8abdf58d775f41eff64f04c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-cp311-manylinux_2_28_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0882ac731dc7c454bdeb529b850e2a4eaa941e50c2fdbca44016d74a0eca17a4
MD5 a7e1acc2ee1016a7ea54692a6e7b97db
BLAKE2b-256 dbf17b374a8001019ff0ff79ca7157fb9d0ed7a8bc6150b7b2227591033ba55e

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-cp311-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-cp311-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 06f6768fa8e8c7440fcafc19b784b3a798a837bdd5acca217662943d417ed82e
MD5 35c41b3716b38c320e5f68ae6c4cb3d2
BLAKE2b-256 cb325fc812c7ee9293159e4d43ade55876de8eff6fba650485a3691179ce9066

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-cp311-macosx_10_13_universal2.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: river-0.26.0-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for river-0.26.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 d482227b208ea37e1a60e51c4092beda512cffffc363778589bc1974816f1f5e
MD5 ca2620bee8d34e01c737f83d455c3a3c
BLAKE2b-256 be2bfeaff0e97e0916a97440c304923cb070bffd6390f5a6cc8a6342ae331f93

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-abi3-win_amd64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c821e4146b0faf5bfac4dbe9393f06961cb25ae105ae941c96dfc1b209803ab3
MD5 f636422dfea96b00017b226213f4b16b
BLAKE2b-256 fcfdddf3a219735a6b4a4ab778fb2a155cb528251b71770c189638a7b0040002

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-abi3-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-abi3-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-abi3-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 634518aa5b9e2c26c0d15233be6c023818906199151f43b2830649945a22fdc8
MD5 cb38509015de76a5aa2681b09fa0d970
BLAKE2b-256 fd27c718db9d74102c261c886ef829173a4df9bd1ad42d297ff2ac7c58fc7a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-abi3-musllinux_1_2_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40ec0c091ebdf144a198813b57f17e81f5016542b5e9626d07588aa033b451d5
MD5 1af647ef333da430db9fb21fae87a2bb
BLAKE2b-256 53471779c6e5d2fb66f7dae7963352125baee903eb3582a657392feb398619a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-abi3-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 029bc51385d6fc687741d9c7d77b04d653a13e72edea7c7cb842663c2b3a329e
MD5 8add6f26389210dd5b031c37e4575f3a
BLAKE2b-256 d3722dbe1373e39fb828bfdebf4ad04b6ef3d48fd4a2ad462c921f2c45ab7d1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-abi3-manylinux_2_28_x86_64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-abi3-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-abi3-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c9cf49c6e72c04d1ee1c91958a7cbc8beeb0f8cb0cb56b94e6aecbc590fae0eb
MD5 29cdfd3592fc8e96c0e162a4a2eaab88
BLAKE2b-256 32f4b6ca2ec9a7d4b58f00843d3e5b6abff75d4ba143e6119489b2f944b3e7cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-abi3-manylinux_2_28_ppc64le.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 703f06b2ef3f87b3b1c36c06a310fc0dd653feb1ca8acfdaee7ed697a2fe24e2
MD5 3a7ae4e6ee58a9abc22a455bd1d4a7c7
BLAKE2b-256 4cd40a22d6f77c7b15539f55476840108a287a9a7bfe3a05cd230d0646540025

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-abi3-manylinux_2_28_aarch64.whl:

Publisher: pypi.yml on online-ml/river

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

File details

Details for the file river-0.26.0-cp311-abi3-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for river-0.26.0-cp311-abi3-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9937d2f9175d19ad2997a41ca143952eb184318c0116ca2f7e65fa66884249e8
MD5 cb3cb2132c6ee537903da72638000f5c
BLAKE2b-256 99140c986538301ed4e2cf7f32b4d9bf21f78c2a727645f5d8cbaf742429b8ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for river-0.26.0-cp311-abi3-macosx_10_13_universal2.whl:

Publisher: pypi.yml on online-ml/river

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

Release history Release notifications | RSS feed

0.26.1

51 files

This release

0.26.0 This release

51 files

0.25.0

25 files

0.24.2

25 files

0.24.1

25 files

0.24.0

33 files

0.23.0

25 files

0.22.0

37 files

0.21.2

41 files

0.21.1

49 files

0.21.0

45 files

0.20.1

19 files

0.20.0

16 files

0.19.0

29 files

0.18.0

29 files

0.17.0

29 files

0.16.0

29 files

0.15.0

28 files

0.14.0

28 files

0.13.0

28 files

0.12.1

22 files

0.12.0

22 files

0.11.1

22 files

0.11.0

22 files

0.10.1

22 files

0.10.0

22 files

0.9.0

22 files

0.8.0

16 files

0.7.1

16 files

0.7.0

22 files

Supported by

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