Skip to main content

Vowpal Wabbit Python Wrapper

ImageLink

Vowpal Wabbit is a fast machine learning library for online learning, and this is the python wrapper for the project.

Requirements

Python Version: 3.10, 3.11, 3.12, or 3.13

Pre-built wheels are available on PyPI for:

  • Linux (x86_64, aarch64)

  • macOS (x86_64, arm64)

  • Windows (x86_64)

Installing this package builds Vowpal Wabbit locally for explicit use within python, it will not create the command-line version of the tool (or affect any previously existing command-line installations). To install the command-line version see the main project page: https://github.com/VowpalWabbit/vowpal_wabbit

The version of the PyPI vowpalwabbit package corresponds to the tagged version of the code in the github repo that will be used during building and installation. If you need to make local changes to the code and rebuild the python binding be sure to pip uninstall vowpalwabbit then rebuild using the local repo installation instructions below.

Installation

See the installation instructions

Usage

You can use the python wrapper directly like this:

>>> import vowpalwabbit
>>> vw = vowpalwabbit.Workspace(quiet=True)
>>> ex = vw.example('1 | a b c')
>>> vw.learn(ex)
>>> vw.predict(ex)

Or you can use the included scikit-learn interface like this:

>>> import numpy as np
>>> from sklearn import datasets
>>> from sklearn.model_selection import train_test_split
>>> from vowpalwabbit.sklearn import VWClassifier
>>>
>>> # generate some data
>>> X, y = datasets.make_hastie_10_2(n_samples=10000, random_state=1)
>>> X = X.astype(np.float32)
>>>
>>> # split train and test set
>>> X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=256)
>>>
>>> # build model
>>> model = VWClassifier()
>>> model.fit(X_train, y_train)
>>>
>>> # predict model
>>> y_pred = model.predict(X_test)
>>>
>>> # evaluate model
>>> model.score(X_train, y_train)
>>> model.score(X_test, y_test)

Troubleshooting

See the troubleshooting guide

Development

Contributions are welcome for improving the python wrapper to Vowpal Wabbit.

  1. Check for open issues or create one to discuss a feature idea or bug.

  2. Fork the repo on Github and make changes to the master branch (or a new branch off of master).

  3. Write a test in the python/tests folder showing the bug was fixed or feature works (recommend using pytest).

  4. Make sure package installs and tests pass under all supported environments (this calls tox automatically).

  5. Send the pull request.

Tests can be run using setup.py:

$ python setup.py test

Directory Structure:

  • python : this is where the c++ extension lives

  • python/vowpalwabbit : this is then main directory for python wrapper code and utilities

  • python/examples : example python code and jupyter notebooks to demonstrate functionality

  • python/tests : contains all tests for python code

Note: neither examples nor tests directories are included in the distributed package, they are only for development purposes.

Release files for vowpalwabbit 9.11.8

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for vowpalwabbit 9.11.8
File Size Uploaded
vowpalwabbit-9.11.8.tar.gz 35.9 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for vowpalwabbit 9.11.8
File
vowpalwabbit-9.11.8-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
vowpalwabbit-9.11.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
vowpalwabbit-9.11.8-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
vowpalwabbit-9.11.8-cp314-cp314-macosx_11_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 11.0+ x86-64 Details
vowpalwabbit-9.11.8-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
vowpalwabbit-9.11.8-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
vowpalwabbit-9.11.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
vowpalwabbit-9.11.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
vowpalwabbit-9.11.8-cp313-cp313-macosx_11_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 11.0+ x86-64 Details
vowpalwabbit-9.11.8-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
vowpalwabbit-9.11.8-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
vowpalwabbit-9.11.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
vowpalwabbit-9.11.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
vowpalwabbit-9.11.8-cp312-cp312-macosx_11_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 11.0+ x86-64 Details
vowpalwabbit-9.11.8-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
vowpalwabbit-9.11.8-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
vowpalwabbit-9.11.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
vowpalwabbit-9.11.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
vowpalwabbit-9.11.8-cp311-cp311-macosx_11_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 11.0+ x86-64 Details
vowpalwabbit-9.11.8-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
vowpalwabbit-9.11.8-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
vowpalwabbit-9.11.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
vowpalwabbit-9.11.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
vowpalwabbit-9.11.8-cp310-cp310-macosx_11_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 11.0+ x86-64 Details
vowpalwabbit-9.11.8-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 102.4 MB

Release files / vowpalwabbit-9.11.8.tar.gz

Download URL vowpalwabbit-9.11.8.tar.gz
Size 35.9 MB
Tags Source
SHA-256 checksum
How to use checksums
7158e2d1d33139826fa9ff52f2d2ff5a258cebd403e4b31f2bbcc96f3f310214
BLAKE2b-256 checksum
How to use checksums
2ee589edd28fc1e811b8ca749a8d2eeeda5ac4b9fd4a3ef18e0347d7f2e9bbe7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp314-cp314-win_amd64.whl

Download URL vowpalwabbit-9.11.8-cp314-cp314-win_amd64.whl
Size 2.0 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
77454f687adf5cc3931615251cfb42c3a87b695c9fb39832e43742a4a98a4796
BLAKE2b-256 checksum
How to use checksums
d116a4dd0e279650269433f0ecc906f4326ccd01e8be7386524ae4343ccbc1ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.5 MB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1de11bae4068ea1584ee038fbdb01cc38ba79f2723efd9a8254de184c09c0142
BLAKE2b-256 checksum
How to use checksums
9846873ed4bef271e223d275ce87fd284755ab1d8695e85c79b0c755d4dbff2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL vowpalwabbit-9.11.8-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.0 MB
Tags CPython 3.14 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c76db05b9565af90207a2baffd467fdcf55d0a74d8ab4c2041e5892a3473d2c1
BLAKE2b-256 checksum
How to use checksums
2e30e186cf78fa754c28528ce5f24b228561137b4d92865b82fdd45a66444f5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp314-cp314-macosx_11_0_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp314-cp314-macosx_11_0_x86_64.whl
Size 2.5 MB
Tags CPython 3.14 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
aa3491f926dd4a38a873d69a9c211580bdff0e4aa9e25f6b4bc788c5ba636385
BLAKE2b-256 checksum
How to use checksums
1356dd015e0ff3f10f5c5c9254bfdddd06d1e3a7db6c5754211f9b00a04d58fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp314-cp314-macosx_11_0_arm64.whl

Download URL vowpalwabbit-9.11.8-cp314-cp314-macosx_11_0_arm64.whl
Size 2.3 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1786644f09c4a61b9efc55f6bc4f3185053d4622dce8f1e27fc56d862bf603d6
BLAKE2b-256 checksum
How to use checksums
07741f6e1ff1ede3ffff6154d875e8a49e8fd80e49303c26cd307efd88a95ca4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp313-cp313-win_amd64.whl

Download URL vowpalwabbit-9.11.8-cp313-cp313-win_amd64.whl
Size 2.0 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
42e63750e63a2727c46de4ae152f396d1fdf43b9b447aecb3d96631fb9a37021
BLAKE2b-256 checksum
How to use checksums
7e923bce6e132c6275d0327d9e34cfe95deb92514a052330e0207b302f71d5a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.5 MB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f283934d441125f7f12e5b97c98b12a82fa340491174a58b31b408d68b0d9a6f
BLAKE2b-256 checksum
How to use checksums
8f46dc7175dfc92b88e20205d52b0ad15f353331531cc55ad662981a4aab0090
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL vowpalwabbit-9.11.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.0 MB
Tags CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f4ab517fd42e1bebc4d7133e2a7745b4a813a80666df3a571ec8b2cb75c1ad50
BLAKE2b-256 checksum
How to use checksums
13b32a0f89569f893472372b9e6e6727d794de1c9832e2d96839d4e728e26bb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp313-cp313-macosx_11_0_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp313-cp313-macosx_11_0_x86_64.whl
Size 2.5 MB
Tags CPython 3.13 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
24a2f031bb0616e2b67f188ec749550e3620ad1f198d756d73c0faf6430f689b
BLAKE2b-256 checksum
How to use checksums
1db11e8e791da31fc5522ba4640a20385f6dc70cafff68c152176c234a837477
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp313-cp313-macosx_11_0_arm64.whl

Download URL vowpalwabbit-9.11.8-cp313-cp313-macosx_11_0_arm64.whl
Size 2.3 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2e327ec47977a0380bfcca0564cc5d74ef287fe60f69361e424ec4e37dd0bab3
BLAKE2b-256 checksum
How to use checksums
b0ded6d9deec5512fa9cd80c5ca4dc53b652cc2ea0fde5edc0c18c6e44c89c16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp312-cp312-win_amd64.whl

Download URL vowpalwabbit-9.11.8-cp312-cp312-win_amd64.whl
Size 2.0 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
20086efca00ec02eec270e9e5f59d64ed18259cde5edc2f6b5d49eb228ef5b89
BLAKE2b-256 checksum
How to use checksums
13cb154210b028c24f9d24fa907f3f9561e7da3630d509150ff12ae39a21a33b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.5 MB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a35103de42e3d9742d975c037afee4b7758d95dc178fc993ea95cc71ec4a394a
BLAKE2b-256 checksum
How to use checksums
e564ecae27baa951005885489a3e0f2bbb6105c7c93c56ba3d0aabe78afb1107
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL vowpalwabbit-9.11.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.0 MB
Tags CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f62c0ff9f36d6fd0d2df79e377d194345ed3ebd6924e02f74474b0884c729faa
BLAKE2b-256 checksum
How to use checksums
b6e468ae9dd1cd0c93c5eb1ab929a6a4c9ecd0e82c2c0d659a027ad945b5c000
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp312-cp312-macosx_11_0_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp312-cp312-macosx_11_0_x86_64.whl
Size 2.5 MB
Tags CPython 3.12 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
6a717a4093baf41acbed0249d56b665588de4f0dd34e79192ef4448f60bd27b4
BLAKE2b-256 checksum
How to use checksums
f5caa94a3bf924e68ee402dd8f2ab276099cbc88fc5b14bf20a377af68cebbc8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp312-cp312-macosx_11_0_arm64.whl

Download URL vowpalwabbit-9.11.8-cp312-cp312-macosx_11_0_arm64.whl
Size 2.3 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cfa1509ddfb480321ca038c59d37ea0d1d0d0731883dd0b403d6e2d4452363a6
BLAKE2b-256 checksum
How to use checksums
d585903e343d6ee384c747e5007f3cc8e8957fbc4bcb108881b44811da89e2a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp311-cp311-win_amd64.whl

Download URL vowpalwabbit-9.11.8-cp311-cp311-win_amd64.whl
Size 2.0 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
7753bc03e22c5c9ce1599954f362f1828aa3cdc78c25d8b782b91d9d4587df9e
BLAKE2b-256 checksum
How to use checksums
e148450eb36bd03e37c2b020830ab9e708931c655cface95233304b053e4ace0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.5 MB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
58f620fe3cc43b0c595c1756781835da36b82cc53e26b9791dcb24da288e810b
BLAKE2b-256 checksum
How to use checksums
c730b966e31a6187512dc736143ed8669029b4705cdd38f072f04e2126cb60ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL vowpalwabbit-9.11.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.0 MB
Tags CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
367374e3409b1b61e7c16b1bdf56b88849a27f8df842e5c002af19b6963a12f0
BLAKE2b-256 checksum
How to use checksums
dd6e11710790be03da968cdb5452f0ec6128c3953192783e950380fad83637ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp311-cp311-macosx_11_0_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp311-cp311-macosx_11_0_x86_64.whl
Size 2.5 MB
Tags CPython 3.11 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
bddf506ae78220e6fe4cba040dbbb565853594ae6af873cc01f1989ac522d618
BLAKE2b-256 checksum
How to use checksums
309be84453cf6783a7e410bb36b29621a87dd46693eea5a41b15e9e453435c26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp311-cp311-macosx_11_0_arm64.whl

Download URL vowpalwabbit-9.11.8-cp311-cp311-macosx_11_0_arm64.whl
Size 2.3 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3ea5d870717bcee5be8e71a90f113b6d8fe34bd18d64e29a5de45d695392e558
BLAKE2b-256 checksum
How to use checksums
040a8964cb4a18b17b803a03b7e5b4cc33e6978e597c2d903bc915639dadcad7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp310-cp310-win_amd64.whl

Download URL vowpalwabbit-9.11.8-cp310-cp310-win_amd64.whl
Size 2.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
65c5224877b8581aaa7618a0341f72668980ae99a67d311339cbfb190af9a403
BLAKE2b-256 checksum
How to use checksums
af5cd0c7e5b2bfdab9db451a61000afce22b7a65ca7e17c1cbab3d1f577c71ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.5 MB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8a872276f53911d1e2f06ef5ed9dc858c92edc26459d04dd6e1d8d54aedb6066
BLAKE2b-256 checksum
How to use checksums
2be1fddc25091cf90b58e101d9a1c74f85f4557a77ac264f583e5210c8b324cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL vowpalwabbit-9.11.8-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.0 MB
Tags CPython 3.10 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c9c88dcba3e2c457fd7a20a540f43c268006e5cee87b50cbc21fa73965cbc80a
BLAKE2b-256 checksum
How to use checksums
b14e75c30148c75a765995ab8ea8bbe720723a67807a8ceb1837fbdf1d6c5d43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp310-cp310-macosx_11_0_x86_64.whl

Download URL vowpalwabbit-9.11.8-cp310-cp310-macosx_11_0_x86_64.whl
Size 2.5 MB
Tags CPython 3.10 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
17eb9e66439c476af1ec0da74c1f8a0b7a54d819f789ac871049a84883accebe
BLAKE2b-256 checksum
How to use checksums
da1626600f33024ebad0eab852c21e1140ef8e7ac918aaf312cf887db81620f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log

Release files / vowpalwabbit-9.11.8-cp310-cp310-macosx_11_0_arm64.whl

Download URL vowpalwabbit-9.11.8-cp310-cp310-macosx_11_0_arm64.whl
Size 2.3 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b585bdd0725e022e5401936e726eb6605fffc21f4b8c4992a9f9e982709978c3
BLAKE2b-256 checksum
How to use checksums
b5013662c4f503ddf8f73b091d23e386b2faa481f07490a3612ca6a45a08d9fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 27, 2026.

Transparency log
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page