vowpalwabbit


Namevowpalwabbit JSON
Version 9.9.0 PyPI version JSON
download
home_pagehttps://github.com/VowpalWabbit/vowpal_wabbit
SummaryVowpal Wabbit Python package
upload_time2023-07-19 17:16:24
maintainer
docs_urlNone
authorScott Graham
requires_python>=3.6
licenseBSD 3-Clause License
keywords fast machine learning online classification regression
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Vowpal Wabbit Python Wrapper
============================

|ImageLink|_

.. |ImageLink| image:: https://badge.fury.io/py/vowpalwabbit.svg
.. _ImageLink: https://pypi.python.org/pypi/vowpalwabbit

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

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:

.. code-block:: python

    >>> 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:

.. code-block:: python

    >>> 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:

.. code-block:: bash

    $ 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.

.. _issues: https://github.com/VowpalWabbit/vowpal_wabbit/issues
.. _repo: https://github.com/VowpalWabbit/vowpal_wabbit
.. _pytest: http://pytest.org/latest/getting-started.html
.. _tox: https://tox.readthedocs.io/en/latest/index.html
.. _installation instructions: https://github.com/VowpalWabbit/vowpal_wabbit/wiki/Python#installing
.. _troubleshooting guide: https://github.com/VowpalWabbit/vowpal_wabbit/wiki/Python#troubleshooting

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/VowpalWabbit/vowpal_wabbit",
    "name": "vowpalwabbit",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "fast machine learning online classification regression",
    "author": "Scott Graham",
    "author_email": "scott.d.graham@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/76/cc/675efe785e0f38f069002de97f821ec9c4ccc27107a2c3403933add76e5e/vowpalwabbit-9.9.0.tar.gz",
    "platform": "any",
    "description": "Vowpal Wabbit Python Wrapper\n============================\n\n|ImageLink|_\n\n.. |ImageLink| image:: https://badge.fury.io/py/vowpalwabbit.svg\n.. _ImageLink: https://pypi.python.org/pypi/vowpalwabbit\n\nVowpal Wabbit is a fast machine learning library for online learning, and this is the python wrapper for the project.\n\nInstalling this package builds Vowpal Wabbit locally for explicit use within python, it will not create the command-line version\nof the tool (or affect any previously existing command-line installations).\nTo install the command-line version see the main project page: https://github.com/VowpalWabbit/vowpal_wabbit\n\nThe version of the PyPI vowpalwabbit package corresponds to the tagged version of the code in the github repo that will be used\nduring building and installation.\nIf you need to make local changes to the code and rebuild the python binding be sure to pip uninstall vowpalwabbit then rebuild\nusing the local repo installation instructions below.\n\nInstallation\n------------\n\nSee the `installation instructions`_\n\n\nUsage\n-----\n\nYou can use the python wrapper directly like this:\n\n.. code-block:: python\n\n    >>> import vowpalwabbit\n    >>> vw = vowpalwabbit.Workspace(quiet=True)\n    >>> ex = vw.example('1 | a b c')\n    >>> vw.learn(ex)\n    >>> vw.predict(ex)\n\nOr you can use the included scikit-learn interface like this:\n\n.. code-block:: python\n\n    >>> import numpy as np\n    >>> from sklearn import datasets\n    >>> from sklearn.model_selection import train_test_split\n    >>> from vowpalwabbit.sklearn import VWClassifier\n    >>>\n    >>> # generate some data\n    >>> X, y = datasets.make_hastie_10_2(n_samples=10000, random_state=1)\n    >>> X = X.astype(np.float32)\n    >>>\n    >>> # split train and test set\n    >>> X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=256)\n    >>>\n    >>> # build model\n    >>> model = VWClassifier()\n    >>> model.fit(X_train, y_train)\n    >>>\n    >>> # predict model\n    >>> y_pred = model.predict(X_test)\n    >>>\n    >>> # evaluate model\n    >>> model.score(X_train, y_train)\n    >>> model.score(X_test, y_test)\n\nTroubleshooting\n---------------\n\nSee the `troubleshooting guide`_\n\nDevelopment\n-----------\n\nContributions are welcome for improving the python wrapper to Vowpal Wabbit.\n\n1. Check for open issues_ or create one to discuss a feature idea or bug.\n2. Fork the repo_ on Github and make changes to the master branch (or a new branch off of master).\n3. Write a test in the python/tests folder showing the bug was fixed or feature works (recommend using pytest_).\n4. Make sure package installs and tests pass under all supported environments (this calls tox_ automatically).\n5. Send the pull request.\n\nTests can be run using setup.py:\n\n.. code-block:: bash\n\n    $ python setup.py test\n\n\nDirectory Structure:\n\n* python : this is where the c++ extension lives\n* python/vowpalwabbit : this is then main directory for python wrapper code and utilities\n* python/examples : example python code and jupyter notebooks to demonstrate functionality\n* python/tests : contains all tests for python code\n\n**Note:** neither examples nor tests directories are included in the distributed package, they are only for development purposes.\n\n.. _issues: https://github.com/VowpalWabbit/vowpal_wabbit/issues\n.. _repo: https://github.com/VowpalWabbit/vowpal_wabbit\n.. _pytest: http://pytest.org/latest/getting-started.html\n.. _tox: https://tox.readthedocs.io/en/latest/index.html\n.. _installation instructions: https://github.com/VowpalWabbit/vowpal_wabbit/wiki/Python#installing\n.. _troubleshooting guide: https://github.com/VowpalWabbit/vowpal_wabbit/wiki/Python#troubleshooting\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "Vowpal Wabbit Python package",
    "version": "9.9.0",
    "project_urls": {
        "Homepage": "https://github.com/VowpalWabbit/vowpal_wabbit"
    },
    "split_keywords": [
        "fast",
        "machine",
        "learning",
        "online",
        "classification",
        "regression"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "806e2f35908b147db288b4f21a3e49b9ef67ed5602465304ae0beed984eae09b",
                "md5": "417a0cd515ce65c993998244d5ea8fea",
                "sha256": "d7741daf1a4d68976bfce01c6d722e1a9c1de65234f82718848f7d7969a540cc"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "417a0cd515ce65c993998244d5ea8fea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2921788,
            "upload_time": "2023-07-19T17:15:55",
            "upload_time_iso_8601": "2023-07-19T17:15:55.227188Z",
            "url": "https://files.pythonhosted.org/packages/80/6e/2f35908b147db288b4f21a3e49b9ef67ed5602465304ae0beed984eae09b/vowpalwabbit-9.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6efba66e2b3847858ab1b86068933124b02d4acdc2d68f31557b2756c416b5a",
                "md5": "5ab8a39a91c94865b1da9cd5f5c3f409",
                "sha256": "5b3ffcd1f8e26dbd311a0f142bcbd06ae44780e81d696aa180ec174a0a46e05f"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ab8a39a91c94865b1da9cd5f5c3f409",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3408284,
            "upload_time": "2023-07-19T17:15:24",
            "upload_time_iso_8601": "2023-07-19T17:15:24.745146Z",
            "url": "https://files.pythonhosted.org/packages/e6/ef/ba66e2b3847858ab1b86068933124b02d4acdc2d68f31557b2756c416b5a/vowpalwabbit-9.9.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b07ffec2e9daa714c2e5650c83c1387af17e2b0ce8db7ad559dbba1038dae32",
                "md5": "03d0922f3d05ecf87dd11dfe62c5827b",
                "sha256": "150819d66537ecf10f33f0d4cc15025b3779269de0b329abcff00932f17aff70"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "03d0922f3d05ecf87dd11dfe62c5827b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3240829,
            "upload_time": "2023-07-19T17:15:29",
            "upload_time_iso_8601": "2023-07-19T17:15:29.643372Z",
            "url": "https://files.pythonhosted.org/packages/7b/07/ffec2e9daa714c2e5650c83c1387af17e2b0ce8db7ad559dbba1038dae32/vowpalwabbit-9.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07703a75a4cfdb1a84d12757d591d0f0f5aa7e582ed38b241a9d156d95664fd3",
                "md5": "5f62ef3333a93827ea658b1defbafb28",
                "sha256": "1d595eef464bc59af3f4034fabdcd18c5263bb4ee97a91a710882bb5c3e70adf"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5f62ef3333a93827ea658b1defbafb28",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3942121,
            "upload_time": "2023-07-19T17:16:08",
            "upload_time_iso_8601": "2023-07-19T17:16:08.025382Z",
            "url": "https://files.pythonhosted.org/packages/07/70/3a75a4cfdb1a84d12757d591d0f0f5aa7e582ed38b241a9d156d95664fd3/vowpalwabbit-9.9.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d1bd35c303639773534c01f230287b4c290990393300c0852abc8371469d8d1",
                "md5": "dc2d04404e7fe27277956e5e61c233c4",
                "sha256": "e6455d384b788b92f9dfc24e27d3613627190ce4bce2f900b9e8ff62c9c46f46"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc2d04404e7fe27277956e5e61c233c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 2914992,
            "upload_time": "2023-07-19T17:15:37",
            "upload_time_iso_8601": "2023-07-19T17:15:37.292575Z",
            "url": "https://files.pythonhosted.org/packages/0d/1b/d35c303639773534c01f230287b4c290990393300c0852abc8371469d8d1/vowpalwabbit-9.9.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdb3ff2c33b371ad14b2f18a5b4aaacbb3234c4206cd4f3554b14d321b9a42f4",
                "md5": "f2f6d45e11933f638a283184429dba23",
                "sha256": "577395f5bc4df58944d91dff0c854b4abaca54129882c4c48a9a8f6ee787e621"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f2f6d45e11933f638a283184429dba23",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 3400399,
            "upload_time": "2023-07-19T17:16:02",
            "upload_time_iso_8601": "2023-07-19T17:16:02.553111Z",
            "url": "https://files.pythonhosted.org/packages/bd/b3/ff2c33b371ad14b2f18a5b4aaacbb3234c4206cd4f3554b14d321b9a42f4/vowpalwabbit-9.9.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3b414b50b37015b69c3f808642b10c053d7cef1bbc38f9a4614e9893e02b2c5",
                "md5": "5b6721ac3ae7359381e2558335030d02",
                "sha256": "b4e8ab09810d7f779beeafc0ad60179f4d8fe571c65de7308ff1351e97cc9709"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5b6721ac3ae7359381e2558335030d02",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 3757290,
            "upload_time": "2023-07-19T17:15:58",
            "upload_time_iso_8601": "2023-07-19T17:15:58.036702Z",
            "url": "https://files.pythonhosted.org/packages/d3/b4/14b50b37015b69c3f808642b10c053d7cef1bbc38f9a4614e9893e02b2c5/vowpalwabbit-9.9.0-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d63f2bee87e60e78024dcbe03fcc771ab85c0f910d5bf0fd5aac83bc835cb62",
                "md5": "05881495f45d2c8bab816723d9787d0e",
                "sha256": "5a73576e876466be38282a4dbe91114d995f478536a0fa73318ea01c147afd69"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05881495f45d2c8bab816723d9787d0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 2915537,
            "upload_time": "2023-07-19T17:15:19",
            "upload_time_iso_8601": "2023-07-19T17:15:19.189446Z",
            "url": "https://files.pythonhosted.org/packages/3d/63/f2bee87e60e78024dcbe03fcc771ab85c0f910d5bf0fd5aac83bc835cb62/vowpalwabbit-9.9.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8d5ef7419e5381e977c4e7fae0f0076c4f5f92ad6b310b23c2a5e092ee4db04",
                "md5": "0d79b7bdbe98fbcac34f9662087db4e5",
                "sha256": "3a75eb0efaa277ca2f59e455809ca8f82813292871c14568b4c9b3590bfc0058"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d79b7bdbe98fbcac34f9662087db4e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 3400400,
            "upload_time": "2023-07-19T17:15:27",
            "upload_time_iso_8601": "2023-07-19T17:15:27.020263Z",
            "url": "https://files.pythonhosted.org/packages/f8/d5/ef7419e5381e977c4e7fae0f0076c4f5f92ad6b310b23c2a5e092ee4db04/vowpalwabbit-9.9.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cc2aa514446954dfa952841cb996b3c55f0515ce9d018ec30753c1385c8f932",
                "md5": "1739c4c6b7b5b0a66110f2e4199b7c84",
                "sha256": "a3f5e4387fd438b9e1431dc3f38f72353c2ab4fffbe4b5a1276705164598bd33"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1739c4c6b7b5b0a66110f2e4199b7c84",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 3233969,
            "upload_time": "2023-07-19T17:15:22",
            "upload_time_iso_8601": "2023-07-19T17:15:22.096477Z",
            "url": "https://files.pythonhosted.org/packages/7c/c2/aa514446954dfa952841cb996b3c55f0515ce9d018ec30753c1385c8f932/vowpalwabbit-9.9.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "535c511443de0b8647372e68e811adc36018019baaee504ac5f169aa20a6985f",
                "md5": "cd8453e0aaab63ea3821ba18000fc3c8",
                "sha256": "6a3c4ea13b07fff5f6f96f189ece93e9f3ec7148a5acdc6237200a88e7fe15aa"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cd8453e0aaab63ea3821ba18000fc3c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 3794767,
            "upload_time": "2023-07-19T17:15:49",
            "upload_time_iso_8601": "2023-07-19T17:15:49.520509Z",
            "url": "https://files.pythonhosted.org/packages/53/5c/511443de0b8647372e68e811adc36018019baaee504ac5f169aa20a6985f/vowpalwabbit-9.9.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e84b8a426a41042dce9f629c3a7585f99da89b0f9b9af5c3db6618b985bf0a98",
                "md5": "e2cee6b71f983ef498df857d6d3d7c2d",
                "sha256": "5fe72b86b832c5d8b562c510b47a66ed1b3c0fb810b48a1d1ce415436cabcf55"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2cee6b71f983ef498df857d6d3d7c2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 2921879,
            "upload_time": "2023-07-19T17:16:00",
            "upload_time_iso_8601": "2023-07-19T17:16:00.559993Z",
            "url": "https://files.pythonhosted.org/packages/e8/4b/8a426a41042dce9f629c3a7585f99da89b0f9b9af5c3db6618b985bf0a98/vowpalwabbit-9.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cbb859635995ee657191e65c739f526f48ca711df0b293947f6c9193ebb90e6",
                "md5": "8561b4f2557bc9ad1dffaf05997519af",
                "sha256": "279538058aff8ad64d1c0d42cfcec0b90c60c1c94bbc466c8f6cef077b75db00"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8561b4f2557bc9ad1dffaf05997519af",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3408528,
            "upload_time": "2023-07-19T17:15:44",
            "upload_time_iso_8601": "2023-07-19T17:15:44.758089Z",
            "url": "https://files.pythonhosted.org/packages/6c/bb/859635995ee657191e65c739f526f48ca711df0b293947f6c9193ebb90e6/vowpalwabbit-9.9.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe7545a9f3bd6a1d28dd98646bb3429b4d89406227216e1d43268f8c1c1d35f9",
                "md5": "fe231a4f2f6d606bd7070362a0b2c1d9",
                "sha256": "e8459798cf7ae091ca53a6b734708376672320b441ab32a0e3c87b01d531dfdd"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe231a4f2f6d606bd7070362a0b2c1d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3240687,
            "upload_time": "2023-07-19T17:16:05",
            "upload_time_iso_8601": "2023-07-19T17:16:05.374229Z",
            "url": "https://files.pythonhosted.org/packages/fe/75/45a9f3bd6a1d28dd98646bb3429b4d89406227216e1d43268f8c1c1d35f9/vowpalwabbit-9.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbc357092a356f567ae111f78fc5925c339c9dabbf41775f4029b67b8e86cbe3",
                "md5": "435b23425e307aeda7cdb2d8c10d902e",
                "sha256": "9aba19814561f4905ba0fea2853bf06bfc578e206f0b052ac27dfc1b6de0c786"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "435b23425e307aeda7cdb2d8c10d902e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3962905,
            "upload_time": "2023-07-19T17:15:39",
            "upload_time_iso_8601": "2023-07-19T17:15:39.749602Z",
            "url": "https://files.pythonhosted.org/packages/bb/c3/57092a356f567ae111f78fc5925c339c9dabbf41775f4029b67b8e86cbe3/vowpalwabbit-9.9.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90b5ddf5ed687bf116423194db1f9a35b2c1162dba290956c36aa945b65ec07b",
                "md5": "22df32abeb1af68e7ff88a76ee3e4aff",
                "sha256": "07b234d5d1bc0499904c9a99202fcfdf07d8a43c913f1b8b1dbd38bb11eb95f4"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22df32abeb1af68e7ff88a76ee3e4aff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2921872,
            "upload_time": "2023-07-19T17:15:46",
            "upload_time_iso_8601": "2023-07-19T17:15:46.993647Z",
            "url": "https://files.pythonhosted.org/packages/90/b5/ddf5ed687bf116423194db1f9a35b2c1162dba290956c36aa945b65ec07b/vowpalwabbit-9.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7d4fd498514e817e19290a6258fe217c5fecc87d3dee93cdd555c383d175598",
                "md5": "df3d6bcf66ac956b5f168d929ece464b",
                "sha256": "414a7455b0726292dfb1907d1b1dc3a30aa211572db67fc6f5d0e7c0dd585507"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df3d6bcf66ac956b5f168d929ece464b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 3408259,
            "upload_time": "2023-07-19T17:15:32",
            "upload_time_iso_8601": "2023-07-19T17:15:32.323687Z",
            "url": "https://files.pythonhosted.org/packages/a7/d4/fd498514e817e19290a6258fe217c5fecc87d3dee93cdd555c383d175598/vowpalwabbit-9.9.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e0725df92ff58abbc7e0eb8c5765c8d28d370315862de05cd3e4a55017959f0",
                "md5": "50cfbef7af79a362f8fb7a89cd92f8f0",
                "sha256": "921d580c945b9be5a71d7c277f62b92388dee6c79e6353ad3bd3acff37b5de5a"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "50cfbef7af79a362f8fb7a89cd92f8f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 3240848,
            "upload_time": "2023-07-19T17:15:42",
            "upload_time_iso_8601": "2023-07-19T17:15:42.651773Z",
            "url": "https://files.pythonhosted.org/packages/1e/07/25df92ff58abbc7e0eb8c5765c8d28d370315862de05cd3e4a55017959f0/vowpalwabbit-9.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "459bc7813d76c17fb3cb0c5d6397878c3c8b2cd8d9b96cca932bcb5cf92b8628",
                "md5": "33456bff35146216699947a9bce2be60",
                "sha256": "26a158c2631f9661b7c2e232a0f9434563baf104e14c408a6535586e45ddd8ac"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "33456bff35146216699947a9bce2be60",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 4138622,
            "upload_time": "2023-07-19T17:15:34",
            "upload_time_iso_8601": "2023-07-19T17:15:34.544691Z",
            "url": "https://files.pythonhosted.org/packages/45/9b/c7813d76c17fb3cb0c5d6397878c3c8b2cd8d9b96cca932bcb5cf92b8628/vowpalwabbit-9.9.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76cc675efe785e0f38f069002de97f821ec9c4ccc27107a2c3403933add76e5e",
                "md5": "d2fb0632f9ce81771f48dab3fa9b4b71",
                "sha256": "602836108e2b844330715133c7d112f19dc2a0275d794155938959d27b902547"
            },
            "downloads": -1,
            "filename": "vowpalwabbit-9.9.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d2fb0632f9ce81771f48dab3fa9b4b71",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 32878215,
            "upload_time": "2023-07-19T17:16:24",
            "upload_time_iso_8601": "2023-07-19T17:16:24.726894Z",
            "url": "https://files.pythonhosted.org/packages/76/cc/675efe785e0f38f069002de97f821ec9c4ccc27107a2c3403933add76e5e/vowpalwabbit-9.9.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-19 17:16:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "VowpalWabbit",
    "github_project": "vowpal_wabbit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "vowpalwabbit"
}
        
Elapsed time: 0.10217s