av


Nameav JSON
Version 12.0.0 PyPI version JSON
download
home_pagehttps://github.com/PyAV-Org/PyAV
SummaryPythonic bindings for FFmpeg's libraries.
upload_time2024-03-21 11:17:51
maintainerNone
docs_urlNone
authorMike Boers
requires_python>=3.8
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            PyAV
====

[![GitHub Test Status][github-tests-badge]][github-tests] \
[![Gitter Chat][gitter-badge]][gitter] [![Documentation][docs-badge]][docs] \
[![Python Package Index][pypi-badge]][pypi] [![Conda Forge][conda-badge]][conda]

PyAV is a Pythonic binding for the [FFmpeg][ffmpeg] libraries. We aim to provide all of the power and control of the underlying library, but manage the gritty details as much as possible.

PyAV is for direct and precise access to your media via containers, streams, packets, codecs, and frames. It exposes a few transformations of that data, and helps you get your data to/from other packages (e.g. Numpy and Pillow).

This power does come with some responsibility as working with media is horrendously complicated and PyAV can't abstract it away or make all the best decisions for you. If the `ffmpeg` command does the job without you bending over backwards, PyAV is likely going to be more of a hindrance than a help.

But where you can't work without it, PyAV is a critical tool.


Installation
------------

Due to the complexity of the dependencies, PyAV is not always the easiest Python package to install from source. Since release 8.0.0 binary wheels are provided on [PyPI][pypi] for Linux, Mac and Windows linked against a modern FFmpeg. You can install these wheels by running:

```bash
pip install av
```

If you want to use your existing FFmpeg, the source version of PyAV is on [PyPI][pypi] too:

```bash
pip install av --no-binary av
```

Installing from source is not supported on Windows.

Alternative installation methods
--------------------------------

Another way of installing PyAV is via [conda-forge][conda-forge]:

```bash
conda install av -c conda-forge
```

See the [Conda install][conda-install] docs to get started with (mini)Conda.

And if you want to build from the absolute source (POSIX only):

```bash
git clone https://github.com/PyAV-Org/PyAV.git
cd PyAV
source scripts/activate.sh

# Either install the testing dependencies:
pip install --upgrade -r tests/requirements.txt
# or have it all, including FFmpeg, built/installed for you:
./scripts/build-deps

# Build PyAV.
make
pip install .
```

---

Have fun, [read the docs][docs], [come chat with us][gitter], and good luck!



[conda-badge]: https://img.shields.io/conda/vn/conda-forge/av.svg?colorB=CCB39A
[conda]: https://anaconda.org/conda-forge/av
[docs-badge]: https://img.shields.io/badge/docs-on%20pyav.org-blue.svg
[docs]: https://pyav.basswood-io.com
[gitter-badge]: https://img.shields.io/gitter/room/nwjs/nw.js.svg?logo=gitter&colorB=cc2b5e
[gitter]: https://app.gitter.im/#/room/#PyAV-Org_User-Help:gitter.im
[pypi-badge]: https://img.shields.io/pypi/v/av.svg?colorB=CCB39A
[pypi]: https://pypi.org/project/av

[github-tests-badge]: https://github.com/PyAV-Org/PyAV/workflows/tests/badge.svg
[github-tests]: https://github.com/PyAV-Org/PyAV/actions?workflow=tests
[github]: https://github.com/PyAV-Org/PyAV

[ffmpeg]: https://ffmpeg.org/
[conda-forge]: https://conda-forge.github.io/
[conda-install]: https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/PyAV-Org/PyAV",
    "name": "av",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Mike Boers",
    "author_email": "pyav@mikeboers.com",
    "download_url": "https://files.pythonhosted.org/packages/e7/45/282a04df72c17cc6cdd86df51b77754f61d1a8f3d68155e1821a8a76e399/av-12.0.0.tar.gz",
    "platform": null,
    "description": "PyAV\n====\n\n[![GitHub Test Status][github-tests-badge]][github-tests] \\\n[![Gitter Chat][gitter-badge]][gitter] [![Documentation][docs-badge]][docs] \\\n[![Python Package Index][pypi-badge]][pypi] [![Conda Forge][conda-badge]][conda]\n\nPyAV is a Pythonic binding for the [FFmpeg][ffmpeg] libraries. We aim to provide all of the power and control of the underlying library, but manage the gritty details as much as possible.\n\nPyAV is for direct and precise access to your media via containers, streams, packets, codecs, and frames. It exposes a few transformations of that data, and helps you get your data to/from other packages (e.g. Numpy and Pillow).\n\nThis power does come with some responsibility as working with media is horrendously complicated and PyAV can't abstract it away or make all the best decisions for you. If the `ffmpeg` command does the job without you bending over backwards, PyAV is likely going to be more of a hindrance than a help.\n\nBut where you can't work without it, PyAV is a critical tool.\n\n\nInstallation\n------------\n\nDue to the complexity of the dependencies, PyAV is not always the easiest Python package to install from source. Since release 8.0.0 binary wheels are provided on [PyPI][pypi] for Linux, Mac and Windows linked against a modern FFmpeg. You can install these wheels by running:\n\n```bash\npip install av\n```\n\nIf you want to use your existing FFmpeg, the source version of PyAV is on [PyPI][pypi] too:\n\n```bash\npip install av --no-binary av\n```\n\nInstalling from source is not supported on Windows.\n\nAlternative installation methods\n--------------------------------\n\nAnother way of installing PyAV is via [conda-forge][conda-forge]:\n\n```bash\nconda install av -c conda-forge\n```\n\nSee the [Conda install][conda-install] docs to get started with (mini)Conda.\n\nAnd if you want to build from the absolute source (POSIX only):\n\n```bash\ngit clone https://github.com/PyAV-Org/PyAV.git\ncd PyAV\nsource scripts/activate.sh\n\n# Either install the testing dependencies:\npip install --upgrade -r tests/requirements.txt\n# or have it all, including FFmpeg, built/installed for you:\n./scripts/build-deps\n\n# Build PyAV.\nmake\npip install .\n```\n\n---\n\nHave fun, [read the docs][docs], [come chat with us][gitter], and good luck!\n\n\n\n[conda-badge]: https://img.shields.io/conda/vn/conda-forge/av.svg?colorB=CCB39A\n[conda]: https://anaconda.org/conda-forge/av\n[docs-badge]: https://img.shields.io/badge/docs-on%20pyav.org-blue.svg\n[docs]: https://pyav.basswood-io.com\n[gitter-badge]: https://img.shields.io/gitter/room/nwjs/nw.js.svg?logo=gitter&colorB=cc2b5e\n[gitter]: https://app.gitter.im/#/room/#PyAV-Org_User-Help:gitter.im\n[pypi-badge]: https://img.shields.io/pypi/v/av.svg?colorB=CCB39A\n[pypi]: https://pypi.org/project/av\n\n[github-tests-badge]: https://github.com/PyAV-Org/PyAV/workflows/tests/badge.svg\n[github-tests]: https://github.com/PyAV-Org/PyAV/actions?workflow=tests\n[github]: https://github.com/PyAV-Org/PyAV\n\n[ffmpeg]: https://ffmpeg.org/\n[conda-forge]: https://conda-forge.github.io/\n[conda-install]: https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Pythonic bindings for FFmpeg's libraries.",
    "version": "12.0.0",
    "project_urls": {
        "Bug Reports": "https://github.com/PyAV-Org/PyAV/issues",
        "Documentation": "https://pyav.org/docs",
        "Download": "https://pypi.org/project/av",
        "Feedstock": "https://github.com/conda-forge/av-feedstock",
        "Homepage": "https://github.com/PyAV-Org/PyAV"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fba215bab7672c73575da3a4e25df27fcbc4dcb1c2cb715ac95de4a56eb6179",
                "md5": "28f1ed58652a2519f2dd52fca78d3f1c",
                "sha256": "b9d0890553951f76c479a9f2bb952aebae902b1c7d52feea614d37e1cd728a44"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28f1ed58652a2519f2dd52fca78d3f1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 27272332,
            "upload_time": "2024-03-21T11:15:11",
            "upload_time_iso_8601": "2024-03-21T11:15:11.828482Z",
            "url": "https://files.pythonhosted.org/packages/6f/ba/215bab7672c73575da3a4e25df27fcbc4dcb1c2cb715ac95de4a56eb6179/av-12.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d30a88384d0a01a97cf7f56f4731599a57289bc743558230e7b62cc53bfb0e47",
                "md5": "5b483ff6b85591a953b36693fca7f216",
                "sha256": "5d7f229a253c2e3fea9682c09c5ae179bd6d5d2da38d89eb7f29ef7bed10cb2f"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5b483ff6b85591a953b36693fca7f216",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 20726464,
            "upload_time": "2024-03-21T11:15:15",
            "upload_time_iso_8601": "2024-03-21T11:15:15.786397Z",
            "url": "https://files.pythonhosted.org/packages/d3/0a/88384d0a01a97cf7f56f4731599a57289bc743558230e7b62cc53bfb0e47/av-12.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22283b3c6889f1db50b07353a4b3a1a0b5216804fa46fc5e9597330620b84897",
                "md5": "3c798f0f4574d00d850c50877eb68085",
                "sha256": "61b3555d143aacf02e0446f6030319403538eba4dc713c18dfa653a2a23e7f9c"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c798f0f4574d00d850c50877eb68085",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 31937450,
            "upload_time": "2024-03-21T11:15:20",
            "upload_time_iso_8601": "2024-03-21T11:15:20.067188Z",
            "url": "https://files.pythonhosted.org/packages/22/28/3b3c6889f1db50b07353a4b3a1a0b5216804fa46fc5e9597330620b84897/av-12.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69cced8489c00cdddec6c78706bf5bf092b9705337f5a2ac33a59926f8ac6548",
                "md5": "b3a141fa4f07a2d48afb91088b7285bd",
                "sha256": "607e13b2c2b26159a37525d7b6f647a32ce78711fccff23d146d3e255ffa115f"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b3a141fa4f07a2d48afb91088b7285bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 31462934,
            "upload_time": "2024-03-21T11:15:24",
            "upload_time_iso_8601": "2024-03-21T11:15:24.200446Z",
            "url": "https://files.pythonhosted.org/packages/69/cc/ed8489c00cdddec6c78706bf5bf092b9705337f5a2ac33a59926f8ac6548/av-12.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50c381e9efb59751b7a151c213f7976ce3bfac9a7786949947afbd60eee279df",
                "md5": "d8a1941d546e4432a47448a0f42368a0",
                "sha256": "39f0b4cfb89f4f06b339c766f92648e798a96747d4163f2fa78660d1ab1f1b5e"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8a1941d546e4432a47448a0f42368a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 33807200,
            "upload_time": "2024-03-21T11:15:28",
            "upload_time_iso_8601": "2024-03-21T11:15:28.189014Z",
            "url": "https://files.pythonhosted.org/packages/50/c3/81e9efb59751b7a151c213f7976ce3bfac9a7786949947afbd60eee279df/av-12.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17cbf99d79bd829522a587e16e89409f494f40a99b77ca414c3e591ffad40489",
                "md5": "1e248dc30574ea9f395d725656fe6afc",
                "sha256": "41dcb8c269fa58a56edf3a3c814c32a0c69586827f132b4e395a951b0ce14fad"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1e248dc30574ea9f395d725656fe6afc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 26327832,
            "upload_time": "2024-03-21T11:15:32",
            "upload_time_iso_8601": "2024-03-21T11:15:32.299257Z",
            "url": "https://files.pythonhosted.org/packages/17/cb/f99d79bd829522a587e16e89409f494f40a99b77ca414c3e591ffad40489/av-12.0.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bdaf4c9673be50c1ce01e0f81c74432cedb0666fb4a1cff1e151d9a069d7b32",
                "md5": "f16bde9f2dad83a47cae652b24e7cf24",
                "sha256": "4fa78fbe0e4469226512380180063116105048c66cb12e18ab4b518466c57e6c"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f16bde9f2dad83a47cae652b24e7cf24",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 27266665,
            "upload_time": "2024-03-21T11:15:36",
            "upload_time_iso_8601": "2024-03-21T11:15:36.180452Z",
            "url": "https://files.pythonhosted.org/packages/5b/da/f4c9673be50c1ce01e0f81c74432cedb0666fb4a1cff1e151d9a069d7b32/av-12.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1554b52aad45b95e266af8465fa405fb74c00f59faaf01ba88de69fac8e0ee6a",
                "md5": "c5031d2773fc6d5771703fe39f399f4a",
                "sha256": "60a869be1d6af916e65ea461cb93922f5db0698655ed7a7eae7c3ecd4af4debb"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c5031d2773fc6d5771703fe39f399f4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 20720210,
            "upload_time": "2024-03-21T11:15:39",
            "upload_time_iso_8601": "2024-03-21T11:15:39.351411Z",
            "url": "https://files.pythonhosted.org/packages/15/54/b52aad45b95e266af8465fa405fb74c00f59faaf01ba88de69fac8e0ee6a/av-12.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64c3bccea1e7254c4d5ede7169bbee335fcc4162ee4bf6f8d321d63bff2524c6",
                "md5": "5b0f33a84101fb392d1ae3f578764b12",
                "sha256": "df61811cc551c186f0a0e530d97b8b139453534d0f92c1790a923f666522ceda"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5b0f33a84101fb392d1ae3f578764b12",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 32810453,
            "upload_time": "2024-03-21T11:15:42",
            "upload_time_iso_8601": "2024-03-21T11:15:42.713004Z",
            "url": "https://files.pythonhosted.org/packages/64/c3/bccea1e7254c4d5ede7169bbee335fcc4162ee4bf6f8d321d63bff2524c6/av-12.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5883992c4da55e06783557191c90e9530b16149f07c58da741df379f5abdd989",
                "md5": "6e061437643419b493853b4039053348",
                "sha256": "99cd2fc53091ebfb9a2fa9dd3580267f5bd1c040d0efd99fbc1a162576b271cb"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6e061437643419b493853b4039053348",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 32250599,
            "upload_time": "2024-03-21T11:15:46",
            "upload_time_iso_8601": "2024-03-21T11:15:46.662117Z",
            "url": "https://files.pythonhosted.org/packages/58/83/992c4da55e06783557191c90e9530b16149f07c58da741df379f5abdd989/av-12.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5195d43a02410e4e1cb6397a675facf5a65285d670697c0762a0e29c0c3615b4",
                "md5": "088adb1f55155a76c8b43172eab68eb0",
                "sha256": "7a6d4f1e261df48932128e6495772faa4cc23f5dd1512eec73daab82ad9f3240"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "088adb1f55155a76c8b43172eab68eb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 34691295,
            "upload_time": "2024-03-21T11:15:50",
            "upload_time_iso_8601": "2024-03-21T11:15:50.774869Z",
            "url": "https://files.pythonhosted.org/packages/51/95/d43a02410e4e1cb6397a675facf5a65285d670697c0762a0e29c0c3615b4/av-12.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a510e5f5e31d834061f5b17ebf53570539f8ad124412b3dbdd5d138f36721a0",
                "md5": "3c64f50c10d7e2b15e813f618a474dbc",
                "sha256": "6aec88e41a498b1e01e2dce5371557e20f9a51aae0c16decc5924ec0be2e22b6"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3c64f50c10d7e2b15e813f618a474dbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 26328218,
            "upload_time": "2024-03-21T11:15:54",
            "upload_time_iso_8601": "2024-03-21T11:15:54.196810Z",
            "url": "https://files.pythonhosted.org/packages/8a/51/0e5f5e31d834061f5b17ebf53570539f8ad124412b3dbdd5d138f36721a0/av-12.0.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af58e74f30f35983339567ebd78a22e2fe710889c917ee7d0b179b17859c90ef",
                "md5": "7e242971d7380c031cb1b1ee5370cb8b",
                "sha256": "90eb8f2d548e96cbc6f78e89c911cdb15a3d80fd944f31111660ce45939cd037"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e242971d7380c031cb1b1ee5370cb8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 27273235,
            "upload_time": "2024-03-21T11:15:57",
            "upload_time_iso_8601": "2024-03-21T11:15:57.522741Z",
            "url": "https://files.pythonhosted.org/packages/af/58/e74f30f35983339567ebd78a22e2fe710889c917ee7d0b179b17859c90ef/av-12.0.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d89e419cf754f9dcd07913c7f3aeb70f4f4b54ce04d028d0eaea2beb3d9c7ce",
                "md5": "c4f01957bcd967099eaa8d174e3e7a81",
                "sha256": "d7f3a02910e77d750dbd516256a16db15030e5371530ff5a5ae902dc03d9005d"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c4f01957bcd967099eaa8d174e3e7a81",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 20723302,
            "upload_time": "2024-03-21T11:16:00",
            "upload_time_iso_8601": "2024-03-21T11:16:00.772015Z",
            "url": "https://files.pythonhosted.org/packages/9d/89/e419cf754f9dcd07913c7f3aeb70f4f4b54ce04d028d0eaea2beb3d9c7ce/av-12.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50948fec8a9bf4771c8c93ecdb1784c97215ec4aeb35e743e58113599f381a31",
                "md5": "f6a13a5d9f7d807b17aa65399ea38fa9",
                "sha256": "e2477cc51526aa50575313d66e5e8ad7ab944588469be5e557b360ed572ae536"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f6a13a5d9f7d807b17aa65399ea38fa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 33101646,
            "upload_time": "2024-03-21T11:16:04",
            "upload_time_iso_8601": "2024-03-21T11:16:04.614549Z",
            "url": "https://files.pythonhosted.org/packages/50/94/8fec8a9bf4771c8c93ecdb1784c97215ec4aeb35e743e58113599f381a31/av-12.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a15cc0fad46f6cfd6a1e8378155c9b15b76c813fca9e8b8f3687133350d714a",
                "md5": "9066cc3c4345b2868c44441d69bcb6c9",
                "sha256": "a2f47149d3ca6deb79f3e515b8bef50e27ebdb160813e6d67dba77278d2a7883"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9066cc3c4345b2868c44441d69bcb6c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 32565329,
            "upload_time": "2024-03-21T11:16:08",
            "upload_time_iso_8601": "2024-03-21T11:16:08.011544Z",
            "url": "https://files.pythonhosted.org/packages/2a/15/cc0fad46f6cfd6a1e8378155c9b15b76c813fca9e8b8f3687133350d714a/av-12.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6724a287acccddeec8d16cde6cff5a0e230b71c895e7b7169221f81b548a22c7",
                "md5": "a1c998145830a048ab283d0bdaa31549",
                "sha256": "3306e4a3ce8b5bfcc3075793d4ed3a2df69179d8fba22cb944a6164dc235dfb6"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1c998145830a048ab283d0bdaa31549",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 35066735,
            "upload_time": "2024-03-21T11:16:11",
            "upload_time_iso_8601": "2024-03-21T11:16:11.575865Z",
            "url": "https://files.pythonhosted.org/packages/67/24/a287acccddeec8d16cde6cff5a0e230b71c895e7b7169221f81b548a22c7/av-12.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5130b8d2f6a57108632c8a9922d063480171bf85b64dbad88c8c0f8c99d21f8c",
                "md5": "6285c14e0d55df07166bd8a190bf3c76",
                "sha256": "dc1b742e7f6df1b499fb960bd6697d1dd8e7ada7484a041a8c20e70a87225f53"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6285c14e0d55df07166bd8a190bf3c76",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 26331009,
            "upload_time": "2024-03-21T11:16:14",
            "upload_time_iso_8601": "2024-03-21T11:16:14.910656Z",
            "url": "https://files.pythonhosted.org/packages/51/30/b8d2f6a57108632c8a9922d063480171bf85b64dbad88c8c0f8c99d21f8c/av-12.0.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "586e382b04613d61f6cf0fbf7110bf858066b8b6f041909df846e5c3f9b45e00",
                "md5": "08d69796b03ff1b134a2a31b43d3ffad",
                "sha256": "0183be6889e835e1b074b4037bfce4fd44671c606cf1c4ab92ea2f271b544aec"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08d69796b03ff1b134a2a31b43d3ffad",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 27308277,
            "upload_time": "2024-03-21T11:16:18",
            "upload_time_iso_8601": "2024-03-21T11:16:18.107751Z",
            "url": "https://files.pythonhosted.org/packages/58/6e/382b04613d61f6cf0fbf7110bf858066b8b6f041909df846e5c3f9b45e00/av-12.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "460428cdf4e755291a7ca3210296feec537fe83e4904f8c2f07f5ebb2ca8c211",
                "md5": "0a7e0d93e01ea77a23d5fa9d41089ff2",
                "sha256": "57337f20b208292ec8d3b11e4d289d8688a43d728174850a81b865d3253fff2c"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0a7e0d93e01ea77a23d5fa9d41089ff2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 20760268,
            "upload_time": "2024-03-21T11:16:21",
            "upload_time_iso_8601": "2024-03-21T11:16:21.166392Z",
            "url": "https://files.pythonhosted.org/packages/46/04/28cdf4e755291a7ca3210296feec537fe83e4904f8c2f07f5ebb2ca8c211/av-12.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c2e0c3f0a8d675f8a77e53eee3684613cfaac83cd4cb754e3066edb9261726b",
                "md5": "449146bf65eecaea4f61985ab8b1c020",
                "sha256": "0ec915e8f6521545a38566eefc281042ee504ea3cee0618d8558e4920588b3b2"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "449146bf65eecaea4f61985ab8b1c020",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 32121880,
            "upload_time": "2024-03-21T11:16:25",
            "upload_time_iso_8601": "2024-03-21T11:16:25.070673Z",
            "url": "https://files.pythonhosted.org/packages/2c/2e/0c3f0a8d675f8a77e53eee3684613cfaac83cd4cb754e3066edb9261726b/av-12.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4e27c70662b0220ccc90bd43b13ca5f042f9867496053ecf2311b0d860ea804",
                "md5": "8da1126999f18d384cbc4c2b8002730c",
                "sha256": "33ad5c0a23c45b72bd6bd47f3b2c1adcd2935ee3d0b6178ed66bba62b964ff31"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8da1126999f18d384cbc4c2b8002730c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 31655187,
            "upload_time": "2024-03-21T11:16:29",
            "upload_time_iso_8601": "2024-03-21T11:16:29.102816Z",
            "url": "https://files.pythonhosted.org/packages/c4/e2/7c70662b0220ccc90bd43b13ca5f042f9867496053ecf2311b0d860ea804/av-12.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "242c47f299fd7f891d0547ee39cbc57e0051f5432f6c248b0edea871655d2bd3",
                "md5": "2d4bb25dcc306299778bfedf8c72ffc7",
                "sha256": "bfc3a652b12c93120514d56cf025da47442c5ba51530cdf7ba3660257dbb0de1"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d4bb25dcc306299778bfedf8c72ffc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 33990225,
            "upload_time": "2024-03-21T11:16:33",
            "upload_time_iso_8601": "2024-03-21T11:16:33.281617Z",
            "url": "https://files.pythonhosted.org/packages/24/2c/47f299fd7f891d0547ee39cbc57e0051f5432f6c248b0edea871655d2bd3/av-12.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30c0fc125aca7402f8194a7b95a835f2f09603025bbce067d7f247e705cdb4fe",
                "md5": "453f178157805ec78abae9bb38cc8e9f",
                "sha256": "037f793dd1ef4a1f57f090191a7f803ad10ec82da0d04ea26bbe0b8a145fe927"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "453f178157805ec78abae9bb38cc8e9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 26362424,
            "upload_time": "2024-03-21T11:16:37",
            "upload_time_iso_8601": "2024-03-21T11:16:37.176890Z",
            "url": "https://files.pythonhosted.org/packages/30/c0/fc125aca7402f8194a7b95a835f2f09603025bbce067d7f247e705cdb4fe/av-12.0.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "872468edd5aa5f6f01b126e5669c1281e8f4885ffb97f72ec7508870905e0ef8",
                "md5": "56ff0d636f7ef147a55b2779989d167a",
                "sha256": "fc532376aa264722fae55063abd1871d17a563dc895978e142c8ecfcdeb3a2e8"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56ff0d636f7ef147a55b2779989d167a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 27303970,
            "upload_time": "2024-03-21T11:16:41",
            "upload_time_iso_8601": "2024-03-21T11:16:41.892901Z",
            "url": "https://files.pythonhosted.org/packages/87/24/68edd5aa5f6f01b126e5669c1281e8f4885ffb97f72ec7508870905e0ef8/av-12.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6d93efedc292e2f7627d0dc5d42620414de122d3ea5ac262406a0ab6214aff4",
                "md5": "01fc8eb6b4217f7f7435670a80bd56e6",
                "sha256": "abf0c4bc40a0af8a30f4cd96f3be6f19fbce0f21222d7fcec148e085127153f7"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "01fc8eb6b4217f7f7435670a80bd56e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 20755907,
            "upload_time": "2024-03-21T11:16:45",
            "upload_time_iso_8601": "2024-03-21T11:16:45.009894Z",
            "url": "https://files.pythonhosted.org/packages/e6/d9/3efedc292e2f7627d0dc5d42620414de122d3ea5ac262406a0ab6214aff4/av-12.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eabf7e789016281060a429e9962f375b3743b4ca3f25a7c3b84550f6070127a8",
                "md5": "fc3e78d59d23fc47b3c76015d0b49ae5",
                "sha256": "81cedd1c072fbebf606724c406b1a1b00adc711f1dfd2bc04c633ce39d8439d8"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc3e78d59d23fc47b3c76015d0b49ae5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 32072703,
            "upload_time": "2024-03-21T11:16:48",
            "upload_time_iso_8601": "2024-03-21T11:16:48.483931Z",
            "url": "https://files.pythonhosted.org/packages/ea/bf/7e789016281060a429e9962f375b3743b4ca3f25a7c3b84550f6070127a8/av-12.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9d06bf10150b1f3bdaee846d3223cf1279fc23bd705dba0d2a3435dfaf32e06",
                "md5": "dd3380f3db8f30d8f52e941042ea00ca",
                "sha256": "02d60f48be9f15dcda37d50f3ce8d7249d9a455643d4322dd3449986bacfc628"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dd3380f3db8f30d8f52e941042ea00ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 31596629,
            "upload_time": "2024-03-21T11:16:52",
            "upload_time_iso_8601": "2024-03-21T11:16:52.646670Z",
            "url": "https://files.pythonhosted.org/packages/d9/d0/6bf10150b1f3bdaee846d3223cf1279fc23bd705dba0d2a3435dfaf32e06/av-12.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e349fdd7d865bab6189dffd398ac7af50d8828699ddb6d04fb1413ee7c71e78",
                "md5": "c51d2b204d6a2b750ff29dcc613ae8f7",
                "sha256": "5d2619e4c26d661eecfc404f7d739d8b35f0dcef353fabe61512e030254b7031"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c51d2b204d6a2b750ff29dcc613ae8f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 33944343,
            "upload_time": "2024-03-21T11:16:56",
            "upload_time_iso_8601": "2024-03-21T11:16:56.127470Z",
            "url": "https://files.pythonhosted.org/packages/3e/34/9fdd7d865bab6189dffd398ac7af50d8828699ddb6d04fb1413ee7c71e78/av-12.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88e3effe4e9903d9b828ff76d527318568df7fe8d9bd2aaa6d147bdcd8cc3fbf",
                "md5": "0576d100ed057b2c7b3d30b5dc6608d9",
                "sha256": "1892cc91c888d101777d5432d54e0554c11d1c3a2c65d02a2cae0a2256a8fbb9"
            },
            "downloads": -1,
            "filename": "av-12.0.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0576d100ed057b2c7b3d30b5dc6608d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 26350266,
            "upload_time": "2024-03-21T11:17:00",
            "upload_time_iso_8601": "2024-03-21T11:17:00.030098Z",
            "url": "https://files.pythonhosted.org/packages/88/e3/effe4e9903d9b828ff76d527318568df7fe8d9bd2aaa6d147bdcd8cc3fbf/av-12.0.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fa752858fd3c201fd555280f672d2697a1499a4f588eba9bd5b0931e70f1232",
                "md5": "537a86d5d4cdfe373675690769096ce9",
                "sha256": "4819e3ef6c3a44ef6f75907229133a1ee7f688245b2cf49b6b8e969a81ca72c9"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "537a86d5d4cdfe373675690769096ce9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 26896823,
            "upload_time": "2024-03-21T11:17:03",
            "upload_time_iso_8601": "2024-03-21T11:17:03.641545Z",
            "url": "https://files.pythonhosted.org/packages/3f/a7/52858fd3c201fd555280f672d2697a1499a4f588eba9bd5b0931e70f1232/av-12.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b71618d0f7597b9cc9eedeefe87ce74ec27b5eb2b21679243c96a7eb79a630a",
                "md5": "d57d735ad2662b0b13e84d3c7d2ff149",
                "sha256": "bb16bb314cf1503b0250fc46b2c455ee196584231101be0123f4f78638227b62"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d57d735ad2662b0b13e84d3c7d2ff149",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 23790080,
            "upload_time": "2024-03-21T11:17:07",
            "upload_time_iso_8601": "2024-03-21T11:17:07.722797Z",
            "url": "https://files.pythonhosted.org/packages/4b/71/618d0f7597b9cc9eedeefe87ce74ec27b5eb2b21679243c96a7eb79a630a/av-12.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f3704e18e21237d9a9cd72d07ba2c9c06e7243472fbac62cbc05aedcdcdc4b9",
                "md5": "29243164282a593ebf54c7cbcfcbd789",
                "sha256": "f3e6a62bda9a1e144feeb59bbee046d7a2d98399634a30f57e4990197313c158"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "29243164282a593ebf54c7cbcfcbd789",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 23739697,
            "upload_time": "2024-03-21T11:17:10",
            "upload_time_iso_8601": "2024-03-21T11:17:10.770967Z",
            "url": "https://files.pythonhosted.org/packages/4f/37/04e18e21237d9a9cd72d07ba2c9c06e7243472fbac62cbc05aedcdcdc4b9/av-12.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eef39c16e120cf1573854d979400e6a147da359d98e9d2fc8cb4f7ae62fc8208",
                "md5": "c85e0d2a0a7b4ad2244dc6ebafd9746a",
                "sha256": "e08175ffbafa3a70c7b2f81083e160e34122a208cdf70f150b8f5d02c2de6965"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c85e0d2a0a7b4ad2244dc6ebafd9746a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 25634269,
            "upload_time": "2024-03-21T11:17:14",
            "upload_time_iso_8601": "2024-03-21T11:17:14.566693Z",
            "url": "https://files.pythonhosted.org/packages/ee/f3/9c16e120cf1573854d979400e6a147da359d98e9d2fc8cb4f7ae62fc8208/av-12.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "883a315677e9baf1b32c9ca10bd77536fab5a65741be9aab8530bc80665e3eb1",
                "md5": "ee7d25ee14cfdb87504c3597db3840a4",
                "sha256": "e1d255be317b7c1ebdc4dae98935b9f3869161112dc829c625e54f90d8bdd7ab"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ee7d25ee14cfdb87504c3597db3840a4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 26118575,
            "upload_time": "2024-03-21T11:17:17",
            "upload_time_iso_8601": "2024-03-21T11:17:17.956190Z",
            "url": "https://files.pythonhosted.org/packages/88/3a/315677e9baf1b32c9ca10bd77536fab5a65741be9aab8530bc80665e3eb1/av-12.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aef3101a59b564d1fb7d3ddcf1782a38dc813e2b800c717b8a2e182cba3ad323",
                "md5": "c8a4b206afee03ae8e98edbe9da27fd0",
                "sha256": "17964b36e08435910aabd5b3f7dca12f99536902529767d276026bc08f94ced7"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c8a4b206afee03ae8e98edbe9da27fd0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 26873069,
            "upload_time": "2024-03-21T11:17:21",
            "upload_time_iso_8601": "2024-03-21T11:17:21.650313Z",
            "url": "https://files.pythonhosted.org/packages/ae/f3/101a59b564d1fb7d3ddcf1782a38dc813e2b800c717b8a2e182cba3ad323/av-12.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caf593d9952883dbe4c5940bddffde8ee608b0d1886421255a01c5ea7747a507",
                "md5": "4f81d6a64b707a19defec849fb497465",
                "sha256": "d2d5f78de29edee06ddcdd4c2b759914575492d6a0cd4de2ce31ee63a4953eff"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4f81d6a64b707a19defec849fb497465",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 23777274,
            "upload_time": "2024-03-21T11:17:25",
            "upload_time_iso_8601": "2024-03-21T11:17:25.573900Z",
            "url": "https://files.pythonhosted.org/packages/ca/f5/93d9952883dbe4c5940bddffde8ee608b0d1886421255a01c5ea7747a507/av-12.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7507ac8f9abc1b3d40b5b8be55e2735bcef0127c98678121c14cec144d54c210",
                "md5": "b29da8268beec4fe0da11b5b6e48b5f9",
                "sha256": "309b32bc97158d0f0c19e273b8e17a855a86806b7194aebc23bd497326cff11f"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b29da8268beec4fe0da11b5b6e48b5f9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 23720259,
            "upload_time": "2024-03-21T11:17:28",
            "upload_time_iso_8601": "2024-03-21T11:17:28.485957Z",
            "url": "https://files.pythonhosted.org/packages/75/07/ac8f9abc1b3d40b5b8be55e2735bcef0127c98678121c14cec144d54c210/av-12.0.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "427caf0fba4a82e7829a67194e72d79890334f9acd9f3cdb921c1f281de355dd",
                "md5": "a96d39aa933a53b99c14905460b1ffae",
                "sha256": "c409c71bd9c7c2f8d018c822f36b1447cfa96eca158381a96f3319bb0ff6e79e"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a96d39aa933a53b99c14905460b1ffae",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 25619518,
            "upload_time": "2024-03-21T11:17:32",
            "upload_time_iso_8601": "2024-03-21T11:17:32.187075Z",
            "url": "https://files.pythonhosted.org/packages/42/7c/af0fba4a82e7829a67194e72d79890334f9acd9f3cdb921c1f281de355dd/av-12.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ede90624548ba5d9da198e67299273451142f99fa646366cf4777d21b5b1a1c",
                "md5": "9d74f5649fbdb0d4775f2ccf885600e3",
                "sha256": "08fc5eaef60a257d622998626e233bf3ff90d2f817f6695d6a27e0ffcfe9dcff"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d74f5649fbdb0d4775f2ccf885600e3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 26892817,
            "upload_time": "2024-03-21T11:17:35",
            "upload_time_iso_8601": "2024-03-21T11:17:35.928880Z",
            "url": "https://files.pythonhosted.org/packages/8e/de/90624548ba5d9da198e67299273451142f99fa646366cf4777d21b5b1a1c/av-12.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "117a05a5d8697195b2468d9258dccf829c3c9153554b451340bc57d413265d00",
                "md5": "13c7b0b736920fd183e186fa381c18d5",
                "sha256": "746ab0eff8a7a21a6c6d16e6b6e61709527eba2ad1a524d92a01bb60d02a3df7"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "13c7b0b736920fd183e186fa381c18d5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 23785335,
            "upload_time": "2024-03-21T11:17:39",
            "upload_time_iso_8601": "2024-03-21T11:17:39.078921Z",
            "url": "https://files.pythonhosted.org/packages/11/7a/05a5d8697195b2468d9258dccf829c3c9153554b451340bc57d413265d00/av-12.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45a1f7ca8a1ef48b246365f02ef51b34f220ea85ac13e0d7ba848b73329e59c7",
                "md5": "0212562c3b45e98047f3e5c4c5920164",
                "sha256": "013b3ac3de3aa1c137af0cedafd364fd1c7524ab3e1cd53e04564fd1632ac04d"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0212562c3b45e98047f3e5c4c5920164",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 23734511,
            "upload_time": "2024-03-21T11:17:42",
            "upload_time_iso_8601": "2024-03-21T11:17:42.136977Z",
            "url": "https://files.pythonhosted.org/packages/45/a1/f7ca8a1ef48b246365f02ef51b34f220ea85ac13e0d7ba848b73329e59c7/av-12.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4b4af25dfa70baec0d6d40fdd4c8cb29b077b6406ddd4e67b0ead9ed80ff6c8",
                "md5": "269c9917059144862ae27faaf67e39b8",
                "sha256": "0fa55923527648f51ac005e44fe2797ebc67f53ad4850e0194d3753761ee33a2"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "269c9917059144862ae27faaf67e39b8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 25630008,
            "upload_time": "2024-03-21T11:17:45",
            "upload_time_iso_8601": "2024-03-21T11:17:45.417934Z",
            "url": "https://files.pythonhosted.org/packages/f4/b4/af25dfa70baec0d6d40fdd4c8cb29b077b6406ddd4e67b0ead9ed80ff6c8/av-12.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "743ec7bb8f7d1eaabaf423af1ac2c0d39fc96751723d2f6e7cda59c773531991",
                "md5": "a9314f08346c1841b5f2ff042843ebcc",
                "sha256": "35d514f4dee0cf67e9e6b2a65fb4a28f98da88e71e8c7f7960bd04625d9fe965"
            },
            "downloads": -1,
            "filename": "av-12.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a9314f08346c1841b5f2ff042843ebcc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 26116933,
            "upload_time": "2024-03-21T11:17:48",
            "upload_time_iso_8601": "2024-03-21T11:17:48.725422Z",
            "url": "https://files.pythonhosted.org/packages/74/3e/c7bb8f7d1eaabaf423af1ac2c0d39fc96751723d2f6e7cda59c773531991/av-12.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e745282a04df72c17cc6cdd86df51b77754f61d1a8f3d68155e1821a8a76e399",
                "md5": "909a750a88ba7cdce85769cc3850c0ef",
                "sha256": "bcf21ebb722d4538b4099e5a78f730d78814dd70003511c185941dba5651b14d"
            },
            "downloads": -1,
            "filename": "av-12.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "909a750a88ba7cdce85769cc3850c0ef",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 3760491,
            "upload_time": "2024-03-21T11:17:51",
            "upload_time_iso_8601": "2024-03-21T11:17:51.518493Z",
            "url": "https://files.pythonhosted.org/packages/e7/45/282a04df72c17cc6cdd86df51b77754f61d1a8f3d68155e1821a8a76e399/av-12.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-21 11:17:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PyAV-Org",
    "github_project": "PyAV",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "av"
}
        
Elapsed time: 0.21500s