fluvio


Namefluvio JSON
Version 0.16.0 PyPI version JSON
download
home_pagehttps://www.fluvio.io/
SummaryPython client library for Fluvio
upload_time2024-02-13 20:15:13
maintainer
docs_urlNone
authorFluvio Contributors
requires_python>=3.8
licenseAPACHE
keywords fluvio streaming stream
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">Fluvio Client for Python</h1>
<div align="center">
 <strong>
   Python binding for Fluvio streaming platform.
 </strong>
</div>
<br />

[![Build](https://github.com/infinyon/fluvio-client-python/actions/workflows/cloud.yml/badge.svg)](https://github.com/infinyon/fluvio-client-python/actions/workflows/cloud.yml)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/infinyon/fluvio-client-python/blob/master/LICENSE-APACHE)
[![PyPi](https://img.shields.io/pypi/v/fluvio.svg)](https://img.shields.io/pypi/v/fluvio.svg)

## Documentation

Fluvio client uses [pdoc](https://github.com/mitmproxy/pdoc) to generate the client API [documentation](https://infinyon.github.io/fluvio-client-python/fluvio.html).

## Installation

```
pip install fluvio
```

This will get the wheel for the os/architecture of the installation system if available, otherwise it will try to build from source. If building from source, you will need the rust compiler and maybe some operating system sources.

# Example Usage

## Producer
```python
from fluvio import Fluvio
fluvio = Fluvio.connect()
producer = fluvio.topic_producer('my-topic')
producer.send_string("FOOBAR")
```

## Consumer
```python
from fluvio import (Fluvio, Offset)
fluvio = Fluvio.connect()
consumer = fluvio.partition_consumer('my-topic-while', 0)
stream = consumer.stream(Offset.beginning())

for i in stream:
    print(i.value_string())
```

# Developer Notes

This project uses [flapigen](https://github.com/Dushistov/flapigen-rs) to
genate the C static library and
[setuptools-rust](https://github.com/PyO3/setuptools-rust) to bundle it into a
python package. For cross platform builds,
       [cibuildwheel](https://github.com/joerick/cibuildwheel) is used.

Running the tests locally require having already setup a [fluvio
locally](https://www.fluvio.io/docs/getting-started/fluvio-local/) or on
[fluvio cloud](https://cloud.fluvio.io).


Add python unit tests in the `tests` directory using the built in python
[`unittest` framework](https://docs.python.org/3/library/unittest.html)

You should probably stick to using `make integration-tests` which will create the [virtual
environment](https://docs.python.org/3/tutorial/venv.html) and install the
package in the site-packages in the venv directory. This makes sure that the
package is also packaged correctly.

If you'd like more rapid testing, once you've got the virtual environment
activated, `python setup.py test` will compile the rust as a static library and
put it as `fluvio/fluvio_python.cpython-39-x86_64-linux-gnu.so`. This filename
is dependent on the host OS and python version.
FLUVIO_CLOUD_TEST_PASSWORD` to your fork's secrets.

When submitting a PR, CI checks a few things:
* `make integration-tests` against a fluvio cluster in CI.
* `make macos-ci-tests` with no fluvio cluster present (the macOS github runner is flakey) to verify linking is done correctly.
* `make lint`. This checks that [`cargo
fmt`](https://github.com/rust-lang/rustfmt),
[`flake8`](https://pypi.org/project/flake8) and
[`black`](https://pypi.org/project/black/) are all clear.

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.fluvio.io/",
    "name": "fluvio",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "fluvio,streaming,stream",
    "author": "Fluvio Contributors",
    "author_email": "team@fluvio.io",
    "download_url": "",
    "platform": null,
    "description": "<h1 align=\"center\">Fluvio Client for Python</h1>\n<div align=\"center\">\n <strong>\n   Python binding for Fluvio streaming platform.\n </strong>\n</div>\n<br />\n\n[![Build](https://github.com/infinyon/fluvio-client-python/actions/workflows/cloud.yml/badge.svg)](https://github.com/infinyon/fluvio-client-python/actions/workflows/cloud.yml)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/infinyon/fluvio-client-python/blob/master/LICENSE-APACHE)\n[![PyPi](https://img.shields.io/pypi/v/fluvio.svg)](https://img.shields.io/pypi/v/fluvio.svg)\n\n## Documentation\n\nFluvio client uses [pdoc](https://github.com/mitmproxy/pdoc) to generate the client API [documentation](https://infinyon.github.io/fluvio-client-python/fluvio.html).\n\n## Installation\n\n```\npip install fluvio\n```\n\nThis will get the wheel for the os/architecture of the installation system if available, otherwise it will try to build from source. If building from source, you will need the rust compiler and maybe some operating system sources.\n\n# Example Usage\n\n## Producer\n```python\nfrom fluvio import Fluvio\nfluvio = Fluvio.connect()\nproducer = fluvio.topic_producer('my-topic')\nproducer.send_string(\"FOOBAR\")\n```\n\n## Consumer\n```python\nfrom fluvio import (Fluvio, Offset)\nfluvio = Fluvio.connect()\nconsumer = fluvio.partition_consumer('my-topic-while', 0)\nstream = consumer.stream(Offset.beginning())\n\nfor i in stream:\n    print(i.value_string())\n```\n\n# Developer Notes\n\nThis project uses [flapigen](https://github.com/Dushistov/flapigen-rs) to\ngenate the C static library and\n[setuptools-rust](https://github.com/PyO3/setuptools-rust) to bundle it into a\npython package. For cross platform builds,\n       [cibuildwheel](https://github.com/joerick/cibuildwheel) is used.\n\nRunning the tests locally require having already setup a [fluvio\nlocally](https://www.fluvio.io/docs/getting-started/fluvio-local/) or on\n[fluvio cloud](https://cloud.fluvio.io).\n\n\nAdd python unit tests in the `tests` directory using the built in python\n[`unittest` framework](https://docs.python.org/3/library/unittest.html)\n\nYou should probably stick to using `make integration-tests` which will create the [virtual\nenvironment](https://docs.python.org/3/tutorial/venv.html) and install the\npackage in the site-packages in the venv directory. This makes sure that the\npackage is also packaged correctly.\n\nIf you'd like more rapid testing, once you've got the virtual environment\nactivated, `python setup.py test` will compile the rust as a static library and\nput it as `fluvio/fluvio_python.cpython-39-x86_64-linux-gnu.so`. This filename\nis dependent on the host OS and python version.\nFLUVIO_CLOUD_TEST_PASSWORD` to your fork's secrets.\n\nWhen submitting a PR, CI checks a few things:\n* `make integration-tests` against a fluvio cluster in CI.\n* `make macos-ci-tests` with no fluvio cluster present (the macOS github runner is flakey) to verify linking is done correctly.\n* `make lint`. This checks that [`cargo\nfmt`](https://github.com/rust-lang/rustfmt),\n[`flake8`](https://pypi.org/project/flake8) and\n[`black`](https://pypi.org/project/black/) are all clear.\n",
    "bugtrack_url": null,
    "license": "APACHE",
    "summary": "Python client library for Fluvio",
    "version": "0.16.0",
    "project_urls": {
        "Bug Reports": "https://github.com/infinyon/fluvio-client-python/issues",
        "Homepage": "https://www.fluvio.io/",
        "Source": "https://github.com/infinyon/fluvio-client-python"
    },
    "split_keywords": [
        "fluvio",
        "streaming",
        "stream"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a01cc81e9208a7566aaf8db487f4db4a93128578906986a123a26421df5d8579",
                "md5": "0d6df994dde68cf8b8fdb7fc439f0c0c",
                "sha256": "62072c53a80356c4e99ee78a4ca113fc5433f956b876940a4de730135c8a6952"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0d6df994dde68cf8b8fdb7fc439f0c0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 9489006,
            "upload_time": "2024-02-13T20:15:13",
            "upload_time_iso_8601": "2024-02-13T20:15:13.989552Z",
            "url": "https://files.pythonhosted.org/packages/a0/1c/c81e9208a7566aaf8db487f4db4a93128578906986a123a26421df5d8579/fluvio-0.16.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0011e27f6303c68f18e02dbdd301abea1f4e7537bca0dd713a34320e21f8c0cf",
                "md5": "38b021f70addbbbc8f152f15ea1fb7ba",
                "sha256": "7f9b78a564ca56e714f684af1cc807f2775b9c9d623ce07275c86c16409e3633"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38b021f70addbbbc8f152f15ea1fb7ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4703610,
            "upload_time": "2024-02-13T20:15:20",
            "upload_time_iso_8601": "2024-02-13T20:15:20.973183Z",
            "url": "https://files.pythonhosted.org/packages/00/11/e27f6303c68f18e02dbdd301abea1f4e7537bca0dd713a34320e21f8c0cf/fluvio-0.16.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c7339414ea767b6c58a6398701149cae7a303da12d5b7a2f694dcc6d6969104",
                "md5": "44576b02ddf100e5980b3ba9694bdd7a",
                "sha256": "74e7412aba2be5076b5b3a210ac3f0b12a1d7c6b005b648d5027ada7848eaaf6"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44576b02ddf100e5980b3ba9694bdd7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5934363,
            "upload_time": "2024-02-13T20:15:26",
            "upload_time_iso_8601": "2024-02-13T20:15:26.128699Z",
            "url": "https://files.pythonhosted.org/packages/1c/73/39414ea767b6c58a6398701149cae7a303da12d5b7a2f694dcc6d6969104/fluvio-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1a48f3c322f598e9dbea11cf0bcfe8c5cae71bddf76349bc4f845176360aa2e",
                "md5": "364387ddfec978a756a3b782a65050b7",
                "sha256": "edbd1dc09936c08c1025d0847b80f5bdc78d909f10eec273bd447158d9d6ca20"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "364387ddfec978a756a3b782a65050b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 9486727,
            "upload_time": "2024-02-13T20:15:28",
            "upload_time_iso_8601": "2024-02-13T20:15:28.902220Z",
            "url": "https://files.pythonhosted.org/packages/f1/a4/8f3c322f598e9dbea11cf0bcfe8c5cae71bddf76349bc4f845176360aa2e/fluvio-0.16.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ca961e6dd98c0bb3de916af7ca421ca37b8054dd1336f9ae7c1f089953e4ba3",
                "md5": "169afa11b0a06bfbbe75515d806e09d1",
                "sha256": "21b271ef30e01801fb82ddd00abc31a9523085c0a0099f4a3c4220ab9a07193f"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "169afa11b0a06bfbbe75515d806e09d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4702351,
            "upload_time": "2024-02-13T20:15:33",
            "upload_time_iso_8601": "2024-02-13T20:15:33.347513Z",
            "url": "https://files.pythonhosted.org/packages/6c/a9/61e6dd98c0bb3de916af7ca421ca37b8054dd1336f9ae7c1f089953e4ba3/fluvio-0.16.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e259f5c96e804d5c147c249aff1443924dfe8bc669102a2c093898978fff0c6",
                "md5": "8d29c114ab26bcff462caea0c3abfa63",
                "sha256": "ad2aac091148ced26792290fd498773ac2a122d2dc4824d6dceac2cb824e43ae"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d29c114ab26bcff462caea0c3abfa63",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5934290,
            "upload_time": "2024-02-13T20:15:35",
            "upload_time_iso_8601": "2024-02-13T20:15:35.804616Z",
            "url": "https://files.pythonhosted.org/packages/1e/25/9f5c96e804d5c147c249aff1443924dfe8bc669102a2c093898978fff0c6/fluvio-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ca683504a98d904868e9cdd6a6949feb9301a13bd02f856f9ac74fb446958e5",
                "md5": "daa55db34c73986a8154179b581c7300",
                "sha256": "2568ab1d50dd96c5371c95cefc1dd31aafa20b887adf84d6297fe7e6d03ddbc9"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "daa55db34c73986a8154179b581c7300",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 9487692,
            "upload_time": "2024-02-13T20:15:38",
            "upload_time_iso_8601": "2024-02-13T20:15:38.590997Z",
            "url": "https://files.pythonhosted.org/packages/9c/a6/83504a98d904868e9cdd6a6949feb9301a13bd02f856f9ac74fb446958e5/fluvio-0.16.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82c3a14a619b1cf79d7027703094411887247999f75de5ca147956b83be2f4f7",
                "md5": "6680374ad80c487b1d53bb8125ffccb4",
                "sha256": "b49c41cdd58871d9381eb1f32b78fb6d3ea9361afc8aa0524b9fb40fc3c7b204"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6680374ad80c487b1d53bb8125ffccb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4701638,
            "upload_time": "2024-02-13T20:15:41",
            "upload_time_iso_8601": "2024-02-13T20:15:41.261352Z",
            "url": "https://files.pythonhosted.org/packages/82/c3/a14a619b1cf79d7027703094411887247999f75de5ca147956b83be2f4f7/fluvio-0.16.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87f4d5413492942bf233c9af4b94858bd438dec171ab38911cd6aa25ec0c486e",
                "md5": "b06abb2fe7e620dd828e324f538a2e56",
                "sha256": "c6480f6192377a98497b18f3a149ad0117afbc01a25944c783b72bc9904084c3"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b06abb2fe7e620dd828e324f538a2e56",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5939506,
            "upload_time": "2024-02-13T20:15:43",
            "upload_time_iso_8601": "2024-02-13T20:15:43.988065Z",
            "url": "https://files.pythonhosted.org/packages/87/f4/d5413492942bf233c9af4b94858bd438dec171ab38911cd6aa25ec0c486e/fluvio-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b13f56f3ce4a3d0d3d657ef9cd5f0f96b1c4a2558fbbe5be8bdcccbd4bfd8cd8",
                "md5": "70fc2e50ee82ad3ffe1ede2b57cf2644",
                "sha256": "2f669b4145dd7a67ce11da51847aa0f38c2b746b4af80369f580f0102d37dcf5"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp38-abi3-linux_armv6l.whl",
            "has_sig": false,
            "md5_digest": "70fc2e50ee82ad3ffe1ede2b57cf2644",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5559410,
            "upload_time": "2024-02-13T20:15:47",
            "upload_time_iso_8601": "2024-02-13T20:15:47.707476Z",
            "url": "https://files.pythonhosted.org/packages/b1/3f/56f3ce4a3d0d3d657ef9cd5f0f96b1c4a2558fbbe5be8bdcccbd4bfd8cd8/fluvio-0.16.0-cp38-abi3-linux_armv6l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45e62726cbb0477db07b7100c0814b081c3a8b210da0a53401c90c6192c539ae",
                "md5": "49470699e95065c8e98c00c09d4ad38e",
                "sha256": "bef8883998f0d73bcb924fea4ccb3c0cfc6881beee9da8c9c1b7d114d09d57bc"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp38-abi3-linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "49470699e95065c8e98c00c09d4ad38e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5475722,
            "upload_time": "2024-02-13T20:15:51",
            "upload_time_iso_8601": "2024-02-13T20:15:51.929670Z",
            "url": "https://files.pythonhosted.org/packages/45/e6/2726cbb0477db07b7100c0814b081c3a8b210da0a53401c90c6192c539ae/fluvio-0.16.0-cp38-abi3-linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acb03c2fea5416a15bc4caa4b83539e19207c7c37edf04488585e0bcf5998b44",
                "md5": "ca72c1d31b7d65bb3aac0e9f3e31ff91",
                "sha256": "2fd969c28e51d09a805b3cfa3930150c833572a25ac09f374eee1ae864febe9c"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp38-abi3-manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ca72c1d31b7d65bb3aac0e9f3e31ff91",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 6111662,
            "upload_time": "2024-02-13T20:15:57",
            "upload_time_iso_8601": "2024-02-13T20:15:57.000797Z",
            "url": "https://files.pythonhosted.org/packages/ac/b0/3c2fea5416a15bc4caa4b83539e19207c7c37edf04488585e0bcf5998b44/fluvio-0.16.0-cp38-abi3-manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f3f33adc6d94c0dd14b4067ea7642146c7612f2d28c38805895cde7609eb4cd",
                "md5": "d00d1b5c27bc9f27171e0390033da3e7",
                "sha256": "86ebcf5f855ccb74940de9f2885a51c62d1ffb5e8dffed5c80f19aeee27eb25d"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d00d1b5c27bc9f27171e0390033da3e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 9488787,
            "upload_time": "2024-02-13T20:16:02",
            "upload_time_iso_8601": "2024-02-13T20:16:02.570543Z",
            "url": "https://files.pythonhosted.org/packages/1f/3f/33adc6d94c0dd14b4067ea7642146c7612f2d28c38805895cde7609eb4cd/fluvio-0.16.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61c8beb1e98b3466886d6ad415f80d5569e88fcc449677321d8d43330778e1fe",
                "md5": "0836c540710ac726c7655c13164e365d",
                "sha256": "5f88d0c198d14689652081c4281b4bdfe63cdfa069729e4d3ec38405bc9fd02a"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0836c540710ac726c7655c13164e365d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4703310,
            "upload_time": "2024-02-13T20:16:16",
            "upload_time_iso_8601": "2024-02-13T20:16:16.835090Z",
            "url": "https://files.pythonhosted.org/packages/61/c8/beb1e98b3466886d6ad415f80d5569e88fcc449677321d8d43330778e1fe/fluvio-0.16.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80b4fb1933c33ec0d9ef0f0bc504a91d4eec5b9190504245f3a1f209731bba10",
                "md5": "b7c0bcd08e060421360a8ed8cb1288cf",
                "sha256": "e97b8f01f3a0e0feaccb3d9a198296d6408219a5336c40b3e11741cc7981a7a3"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7c0bcd08e060421360a8ed8cb1288cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5933399,
            "upload_time": "2024-02-13T20:16:19",
            "upload_time_iso_8601": "2024-02-13T20:16:19.299455Z",
            "url": "https://files.pythonhosted.org/packages/80/b4/fb1933c33ec0d9ef0f0bc504a91d4eec5b9190504245f3a1f209731bba10/fluvio-0.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "215faf20a10e1210bea66359f5a86a183cf9b5ebae8dfee73ad266ecef6992ec",
                "md5": "c4bca1fcd256eb1cffacfbca03d5767a",
                "sha256": "a1c329de9a8c14265aa844acc27ffa781bb12f68e0d2228e26cd2e841ad4ac9f"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c4bca1fcd256eb1cffacfbca03d5767a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 9488841,
            "upload_time": "2024-02-13T20:16:21",
            "upload_time_iso_8601": "2024-02-13T20:16:21.987461Z",
            "url": "https://files.pythonhosted.org/packages/21/5f/af20a10e1210bea66359f5a86a183cf9b5ebae8dfee73ad266ecef6992ec/fluvio-0.16.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11e5f1573c45d48f0b9f49232568176a77e692fc5d61343c944d49e03fc6bf5f",
                "md5": "f3f476502f21e5cb43e2454233a50ad9",
                "sha256": "246b4624594b6dbae36c7a64a5cbdc0669c9f01f55474779fa7ec2ed9fe5bf32"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f3f476502f21e5cb43e2454233a50ad9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4703247,
            "upload_time": "2024-02-13T20:16:24",
            "upload_time_iso_8601": "2024-02-13T20:16:24.777261Z",
            "url": "https://files.pythonhosted.org/packages/11/e5/f1573c45d48f0b9f49232568176a77e692fc5d61343c944d49e03fc6bf5f/fluvio-0.16.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d51e23afbdbf7243a2f2991c0e966440c73ba18d8352e5958fabf3170fe7d93",
                "md5": "4b7e4e9150ed1f6d52907357e8a002f5",
                "sha256": "ba14f7f2b47df134bac803b5cb4942aef8c8712c12fa9e39817ecc45dc004260"
            },
            "downloads": -1,
            "filename": "fluvio-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b7e4e9150ed1f6d52907357e8a002f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5934345,
            "upload_time": "2024-02-13T20:16:28",
            "upload_time_iso_8601": "2024-02-13T20:16:28.180172Z",
            "url": "https://files.pythonhosted.org/packages/2d/51/e23afbdbf7243a2f2991c0e966440c73ba18d8352e5958fabf3170fe7d93/fluvio-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-13 20:15:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "infinyon",
    "github_project": "fluvio-client-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "fluvio"
}
        
Elapsed time: 0.22333s