yara-python


Nameyara-python JSON
Version 4.5.0 PyPI version JSON
download
home_pagehttps://github.com/VirusTotal/yara-python
SummaryPython interface for YARA
upload_time2024-02-14 11:28:05
maintainer
docs_urlNone
authorVictor M. Alvarez
requires_python
licenseApache 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://ci.appveyor.com/api/projects/status/gidnb9ulj3rje5s2?svg=true
    :target: https://ci.appveyor.com/project/plusvic/yara-python

yara-python
===========

With this library you can use `YARA <https://github.com/VirusTotal/yara>`_ from
your Python programs. It covers all YARA's features, from compiling, saving
and loading rules to scanning files, strings and processes.

Here it goes a little example:

.. code-block:: python

    >>> import yara
    >>> rule = yara.compile(source='rule foo: bar {strings: $a = "lmn" condition: $a}')
    >>> matches = rule.match(data='abcdefgjiklmnoprstuvwxyz')
    >>> print(matches)
    [foo]
    >>> print(matches[0].rule)
    foo
    >>> print(matches[0].tags)
    ['bar']
    >>> print(matches[0].strings)
    [$a]
    >>> print(matches[0].strings[0].identifier)
    $a
    >>> print(matches[0].strings[0].instances)
    [lmn]
    >>> print(matches[0].strings[0].instances[0].offset)
    10
    >>> print(matches[0].strings[0].instances[0].matched_length)
    3


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

The easiest way of installing YARA is by using ``pip``:

.. code-block:: bash

  $ pip install yara-python

But you can also get the source from GitHub and compile it yourself:

.. code-block:: bash

  $ git clone --recursive https://github.com/VirusTotal/yara-python
  $ cd yara-python
  $ python setup.py build
  $ sudo python setup.py install

Notice the ``--recursive`` option used with ``git``. This is important because
we need to download the ``yara`` subproject containing the source code for
``libyara`` (the core YARA library). It's also important to note that the two
methods above link ``libyara`` statically into yara-python. If you want to link
dynamically against a shared ``libyara`` library use:

.. code-block:: bash

  $ python setup.py build --dynamic-linking

For this option to work you must build and install
`YARA <https://github.com/VirusTotal/yara>`_ separately before installing
``yara-python``.


Documentation
-------------

Find more information about how to use yara-python at
https://yara.readthedocs.org/en/latest/yarapython.html.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/VirusTotal/yara-python",
    "name": "yara-python",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Victor M. Alvarez",
    "author_email": "plusvic@gmail.com, vmalvarez@virustotal.com",
    "download_url": "",
    "platform": null,
    "description": ".. image:: https://ci.appveyor.com/api/projects/status/gidnb9ulj3rje5s2?svg=true\n    :target: https://ci.appveyor.com/project/plusvic/yara-python\n\nyara-python\n===========\n\nWith this library you can use `YARA <https://github.com/VirusTotal/yara>`_ from\nyour Python programs. It covers all YARA's features, from compiling, saving\nand loading rules to scanning files, strings and processes.\n\nHere it goes a little example:\n\n.. code-block:: python\n\n    >>> import yara\n    >>> rule = yara.compile(source='rule foo: bar {strings: $a = \"lmn\" condition: $a}')\n    >>> matches = rule.match(data='abcdefgjiklmnoprstuvwxyz')\n    >>> print(matches)\n    [foo]\n    >>> print(matches[0].rule)\n    foo\n    >>> print(matches[0].tags)\n    ['bar']\n    >>> print(matches[0].strings)\n    [$a]\n    >>> print(matches[0].strings[0].identifier)\n    $a\n    >>> print(matches[0].strings[0].instances)\n    [lmn]\n    >>> print(matches[0].strings[0].instances[0].offset)\n    10\n    >>> print(matches[0].strings[0].instances[0].matched_length)\n    3\n\n\nInstallation\n------------\n\nThe easiest way of installing YARA is by using ``pip``:\n\n.. code-block:: bash\n\n  $ pip install yara-python\n\nBut you can also get the source from GitHub and compile it yourself:\n\n.. code-block:: bash\n\n  $ git clone --recursive https://github.com/VirusTotal/yara-python\n  $ cd yara-python\n  $ python setup.py build\n  $ sudo python setup.py install\n\nNotice the ``--recursive`` option used with ``git``. This is important because\nwe need to download the ``yara`` subproject containing the source code for\n``libyara`` (the core YARA library). It's also important to note that the two\nmethods above link ``libyara`` statically into yara-python. If you want to link\ndynamically against a shared ``libyara`` library use:\n\n.. code-block:: bash\n\n  $ python setup.py build --dynamic-linking\n\nFor this option to work you must build and install\n`YARA <https://github.com/VirusTotal/yara>`_ separately before installing\n``yara-python``.\n\n\nDocumentation\n-------------\n\nFind more information about how to use yara-python at\nhttps://yara.readthedocs.org/en/latest/yarapython.html.\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Python interface for YARA",
    "version": "4.5.0",
    "project_urls": {
        "Homepage": "https://github.com/VirusTotal/yara-python"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41d7192fe908f72d313fff67b83f53fbd22b72d4af9c3874e59dd9fef5e0a898",
                "md5": "dc145c918d849162f6a059789d047c79",
                "sha256": "3feb72c2146c50e583d7e3cacbb49f280fb5cac0494cae1b48e5980ecbdc1571"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "dc145c918d849162f6a059789d047c79",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 414778,
            "upload_time": "2024-02-14T11:28:05",
            "upload_time_iso_8601": "2024-02-14T11:28:05.245271Z",
            "url": "https://files.pythonhosted.org/packages/41/d7/192fe908f72d313fff67b83f53fbd22b72d4af9c3874e59dd9fef5e0a898/yara_python-4.5.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87c6af51a32437e583b2502e2c14bd82bcea55e49c6bc63b1ad4771d576f6beb",
                "md5": "07785265e161a8ecd637febae7827c38",
                "sha256": "1a036c41eaebdf6c0a674e0bd9d37c9d06d1d7427455866ace09d3a159c442b0"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07785265e161a8ecd637febae7827c38",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2054306,
            "upload_time": "2024-02-14T11:28:07",
            "upload_time_iso_8601": "2024-02-14T11:28:07.280490Z",
            "url": "https://files.pythonhosted.org/packages/87/c6/af51a32437e583b2502e2c14bd82bcea55e49c6bc63b1ad4771d576f6beb/yara_python-4.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "850d8b9f6b6cc26912ae330d890b3e4b41523e2eccee040d23ffffe2dca3a0c1",
                "md5": "4b027aede60cda59d19594f4c6aa421b",
                "sha256": "acbc950b051a576dd4c6825bf4ebb1c0f0c5eea35b3e01bde921b744e2cc92e1"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4b027aede60cda59d19594f4c6aa421b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2241729,
            "upload_time": "2024-02-14T11:28:09",
            "upload_time_iso_8601": "2024-02-14T11:28:09.385828Z",
            "url": "https://files.pythonhosted.org/packages/85/0d/8b9f6b6cc26912ae330d890b3e4b41523e2eccee040d23ffffe2dca3a0c1/yara_python-4.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "090519e2bd7a312339b440edeb3f11dfd0a7c9de06df9ae092457c4bc902d05e",
                "md5": "b0f4cc2f7e49a7a5aca5985175fb81a4",
                "sha256": "11bb478dee0450af1f6643a138b9eaec085ab79aa4a4aef786390c5dfc70f0d0"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b0f4cc2f7e49a7a5aca5985175fb81a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2320777,
            "upload_time": "2024-02-14T11:28:11",
            "upload_time_iso_8601": "2024-02-14T11:28:11.370974Z",
            "url": "https://files.pythonhosted.org/packages/09/05/19e2bd7a312339b440edeb3f11dfd0a7c9de06df9ae092457c4bc902d05e/yara_python-4.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ca49ac7658c94f1d2bd960da1e046af33cdca25e3246f889c3f6f1e0ba3f420",
                "md5": "7757a44027ff7da7e22a8336472b72c7",
                "sha256": "1633d5653d37b6ef6517113ed446159d8de67d02893c00c43daecd9bbcb9700b"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7757a44027ff7da7e22a8336472b72c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2325101,
            "upload_time": "2024-02-14T11:28:13",
            "upload_time_iso_8601": "2024-02-14T11:28:13.061342Z",
            "url": "https://files.pythonhosted.org/packages/9c/a4/9ac7658c94f1d2bd960da1e046af33cdca25e3246f889c3f6f1e0ba3f420/yara_python-4.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07210efb45ee7859267e9b7d19d991dc4e005530d2a05bb09eed6809d283d10c",
                "md5": "23a9264d10a8e56953714352909101fe",
                "sha256": "82109dd8c932c3326a9747ac3ac62857868fcc9d9fe55d6f46ff0b4dcf14eb57"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "23a9264d10a8e56953714352909101fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1952581,
            "upload_time": "2024-02-14T11:28:14",
            "upload_time_iso_8601": "2024-02-14T11:28:14.508409Z",
            "url": "https://files.pythonhosted.org/packages/07/21/0efb45ee7859267e9b7d19d991dc4e005530d2a05bb09eed6809d283d10c/yara_python-4.5.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46914d223e23d444d73bb57f1ddab44009ec0a05fd7a5b465149257adb81c56e",
                "md5": "1c2a430cb81796131cf699dc48cd59c7",
                "sha256": "85af2755732081e5fb99fc4295659690f97b61b7a1428e857dbfe91f12f9cf7d"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1c2a430cb81796131cf699dc48cd59c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2008914,
            "upload_time": "2024-02-14T11:28:15",
            "upload_time_iso_8601": "2024-02-14T11:28:15.903106Z",
            "url": "https://files.pythonhosted.org/packages/46/91/4d223e23d444d73bb57f1ddab44009ec0a05fd7a5b465149257adb81c56e/yara_python-4.5.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f9787fe1eb2500b164645505c152e59a74ffd806eff137fdec76d3752eb0260",
                "md5": "ca8a559dfbd10c614c31f99c042067c1",
                "sha256": "a776f86060aebd4e31c74927ddd13e6b3c21a59e4586da8667e69849e5008872"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca8a559dfbd10c614c31f99c042067c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2057428,
            "upload_time": "2024-02-14T11:28:17",
            "upload_time_iso_8601": "2024-02-14T11:28:17.906059Z",
            "url": "https://files.pythonhosted.org/packages/1f/97/87fe1eb2500b164645505c152e59a74ffd806eff137fdec76d3752eb0260/yara_python-4.5.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b89847de39448ac90a3a13ed6e4c67aebb54c1add64154d00f37f202ed2a561",
                "md5": "805f6db7e503e8628e863931bcf2bd8c",
                "sha256": "535f274738d6ad5501b4450b0bf3cd3c0d1547e9773a7ca1cf9e855d8a1cf741"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "805f6db7e503e8628e863931bcf2bd8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1332568,
            "upload_time": "2024-02-14T11:28:19",
            "upload_time_iso_8601": "2024-02-14T11:28:19.911787Z",
            "url": "https://files.pythonhosted.org/packages/9b/89/847de39448ac90a3a13ed6e4c67aebb54c1add64154d00f37f202ed2a561/yara_python-4.5.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cde50d891b923e876d7fc0e0680510db58a56b37e3782e7c524bc44933cfe37",
                "md5": "4b1ce455a3a5a67e0bcbff108cb5bfe3",
                "sha256": "5de0bf8ea0d530e8af2b59c56c5506219f060b4b25b196ba88fd19753529246d"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4b1ce455a3a5a67e0bcbff108cb5bfe3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1679437,
            "upload_time": "2024-02-14T11:28:21",
            "upload_time_iso_8601": "2024-02-14T11:28:21.273588Z",
            "url": "https://files.pythonhosted.org/packages/9c/de/50d891b923e876d7fc0e0680510db58a56b37e3782e7c524bc44933cfe37/yara_python-4.5.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b79962b1f9edc9c3dd00c6224fb90e60c4bf36ceeccfe52492f945ecaabf1f33",
                "md5": "1e80667aa374e5c821f6c3c3abce9fcb",
                "sha256": "aeadaa62aa523e71abcb438f6f07761b9d62177021bb0e919a180d5b1e8cc05f"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1e80667aa374e5c821f6c3c3abce9fcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 414823,
            "upload_time": "2024-02-14T11:28:24",
            "upload_time_iso_8601": "2024-02-14T11:28:24.199674Z",
            "url": "https://files.pythonhosted.org/packages/b7/99/62b1f9edc9c3dd00c6224fb90e60c4bf36ceeccfe52492f945ecaabf1f33/yara_python-4.5.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ff907584cb839a86d0f273a997864205127ad102a8e7623896479772f62f729",
                "md5": "07602c5f720d4291a71212968965e0cc",
                "sha256": "0b4cc4eb937c1fd3747682cae639179a6bc03a24c86dde861ca2ba1abafe8404"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07602c5f720d4291a71212968965e0cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2054286,
            "upload_time": "2024-02-14T11:28:25",
            "upload_time_iso_8601": "2024-02-14T11:28:25.380792Z",
            "url": "https://files.pythonhosted.org/packages/9f/f9/07584cb839a86d0f273a997864205127ad102a8e7623896479772f62f729/yara_python-4.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "222a00d38e9cdf4020841e1000fd9dc546dbfe9f5d0aea0be184c25e60ab1ee8",
                "md5": "c8cbd9cea4e88d2d4c27f4728d1b1065",
                "sha256": "7c77dfe89038a1e0a134d44aacb05d48b268312ca3a58df1fc0cf212aaaa79ff"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c8cbd9cea4e88d2d4c27f4728d1b1065",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2243279,
            "upload_time": "2024-02-14T11:28:27",
            "upload_time_iso_8601": "2024-02-14T11:28:27.001838Z",
            "url": "https://files.pythonhosted.org/packages/22/2a/00d38e9cdf4020841e1000fd9dc546dbfe9f5d0aea0be184c25e60ab1ee8/yara_python-4.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36aaf4dd75d231cd6cedd0ec77cb7eefe6f28300d46c772e8a472cf768f845d5",
                "md5": "51e843843c16bb9f6e75ec367eb0209a",
                "sha256": "570d1f0f9893ec114a25ed9704e992ce58fb28c3399f6a3d81ea42d4e90c6a9d"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "51e843843c16bb9f6e75ec367eb0209a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2322238,
            "upload_time": "2024-02-14T11:28:28",
            "upload_time_iso_8601": "2024-02-14T11:28:28.343478Z",
            "url": "https://files.pythonhosted.org/packages/36/aa/f4dd75d231cd6cedd0ec77cb7eefe6f28300d46c772e8a472cf768f845d5/yara_python-4.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0683fe50ea036386bbd3c68651d5272cd4d92c32ac377cfe5c5f110499d0be14",
                "md5": "99d55dd1926066596da9c520257a9a82",
                "sha256": "b4650def8807d5b6736a1144ca2d880198deafec2313816a4fcc365c00f9b61b"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99d55dd1926066596da9c520257a9a82",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2326792,
            "upload_time": "2024-02-14T11:28:30",
            "upload_time_iso_8601": "2024-02-14T11:28:30.230592Z",
            "url": "https://files.pythonhosted.org/packages/06/83/fe50ea036386bbd3c68651d5272cd4d92c32ac377cfe5c5f110499d0be14/yara_python-4.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1341a785680ec1716ed05e4273077f0be7d204bb73994b00783c4872d251b906",
                "md5": "daef5f4d3e84414597b585ec0ac141ca",
                "sha256": "f557ce581e35ae23f19da6e80be1f84a1ac98b17b67b04cf46a9877d8d4fa870"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "daef5f4d3e84414597b585ec0ac141ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1954405,
            "upload_time": "2024-02-14T11:28:31",
            "upload_time_iso_8601": "2024-02-14T11:28:31.742690Z",
            "url": "https://files.pythonhosted.org/packages/13/41/a785680ec1716ed05e4273077f0be7d204bb73994b00783c4872d251b906/yara_python-4.5.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c58b4accbe32de2fec4a85b8692301368c481d5bd5b07fed670c16f498f8dc66",
                "md5": "92cb8d8628d958554d98897891198ac0",
                "sha256": "2d400917ebaf35663975ff001a6c13e432af68e641879194152212b8e87dd974"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "92cb8d8628d958554d98897891198ac0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2010137,
            "upload_time": "2024-02-14T11:28:33",
            "upload_time_iso_8601": "2024-02-14T11:28:33.084334Z",
            "url": "https://files.pythonhosted.org/packages/c5/8b/4accbe32de2fec4a85b8692301368c481d5bd5b07fed670c16f498f8dc66/yara_python-4.5.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dbf3fd473f0d367f37d3c29d20e0f0b366067d762204819ce53220c8eb03fd5",
                "md5": "87eb4f010624f090858cd4246786f4f4",
                "sha256": "c5de6ed584bf59005186628f88df718475ccb6818912b0b12a151a2e61f0c29c"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "87eb4f010624f090858cd4246786f4f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2058524,
            "upload_time": "2024-02-14T11:28:35",
            "upload_time_iso_8601": "2024-02-14T11:28:35.159384Z",
            "url": "https://files.pythonhosted.org/packages/8d/bf/3fd473f0d367f37d3c29d20e0f0b366067d762204819ce53220c8eb03fd5/yara_python-4.5.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5107231e2be4daa6ab535bfc68af96e11f3608f0af2f2c94ea09ca55a6d5d24b",
                "md5": "018fb5e79da70a9672861dd683c18279",
                "sha256": "17bee3e24258ef9d31cbc11342d22d513e005b7a551083adbb01d3ffc748c945"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "018fb5e79da70a9672861dd683c18279",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1332557,
            "upload_time": "2024-02-14T11:28:36",
            "upload_time_iso_8601": "2024-02-14T11:28:36.463626Z",
            "url": "https://files.pythonhosted.org/packages/51/07/231e2be4daa6ab535bfc68af96e11f3608f0af2f2c94ea09ca55a6d5d24b/yara_python-4.5.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5bde4fbbdca45daf18ba3eb96446cbb85c47a82bad3baccf82465f7b4b94e80",
                "md5": "99b78beed9b3e392d87cfcbc5a7f5b85",
                "sha256": "36acc235bf7aa61145daf364c97d3723e9c0e350cca6ae00bf717088a2c72f3b"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "99b78beed9b3e392d87cfcbc5a7f5b85",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1679426,
            "upload_time": "2024-02-14T11:28:38",
            "upload_time_iso_8601": "2024-02-14T11:28:38.334448Z",
            "url": "https://files.pythonhosted.org/packages/b5/bd/e4fbbdca45daf18ba3eb96446cbb85c47a82bad3baccf82465f7b4b94e80/yara_python-4.5.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f173269d0441195b6859e202286dd70b9dfdd6f6a2cb8e14fd99daf250e5e037",
                "md5": "7cbfd8ded51ca4f54a0d6a8dc636fa82",
                "sha256": "6918ddc68d89f4da1eb851d6a841ebc615cec31532f74698e4f51e58b44213e0"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7cbfd8ded51ca4f54a0d6a8dc636fa82",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 414939,
            "upload_time": "2024-02-14T11:28:39",
            "upload_time_iso_8601": "2024-02-14T11:28:39.706270Z",
            "url": "https://files.pythonhosted.org/packages/f1/73/269d0441195b6859e202286dd70b9dfdd6f6a2cb8e14fd99daf250e5e037/yara_python-4.5.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6233d3c22045dd8a1eebcd4f25ace44650b3668f0ca63e1d2718430b73d95e2",
                "md5": "cbd8272bf05bf20ce0aba465d0a7335b",
                "sha256": "9a9d666acc4d6d1ec59da4864ac4e25552169bd92520b050e5fcf92212d3ab1e"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cbd8272bf05bf20ce0aba465d0a7335b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2054382,
            "upload_time": "2024-02-14T11:28:41",
            "upload_time_iso_8601": "2024-02-14T11:28:41.009173Z",
            "url": "https://files.pythonhosted.org/packages/c6/23/3d3c22045dd8a1eebcd4f25ace44650b3668f0ca63e1d2718430b73d95e2/yara_python-4.5.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "533b7975def085afb1a5bd96f598d279867c5fa82b6a9d8f22c205c8d878cb8a",
                "md5": "16684f6f66cb4fd49c67e897ffe28057",
                "sha256": "a96d7b4a7e060c40b290d2264c17623f063a5604e6502b06cd145f2f0e6e82ed"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "16684f6f66cb4fd49c67e897ffe28057",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2245739,
            "upload_time": "2024-02-14T11:28:42",
            "upload_time_iso_8601": "2024-02-14T11:28:42.908467Z",
            "url": "https://files.pythonhosted.org/packages/53/3b/7975def085afb1a5bd96f598d279867c5fa82b6a9d8f22c205c8d878cb8a/yara_python-4.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4998fb0cbf6942dd331ba3439f5af1420f5aca3ab675b8cb07231099f790fe2b",
                "md5": "669956eb640d4efa9629e3efab21c2bf",
                "sha256": "91f782bdea16441c87f0231f038cf6d151e36718154871f5c5fb274364d144e7"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "669956eb640d4efa9629e3efab21c2bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2324993,
            "upload_time": "2024-02-14T11:28:44",
            "upload_time_iso_8601": "2024-02-14T11:28:44.466640Z",
            "url": "https://files.pythonhosted.org/packages/49/98/fb0cbf6942dd331ba3439f5af1420f5aca3ab675b8cb07231099f790fe2b/yara_python-4.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "543a808290e614677be713fc1bd6f3dc0a051020ba2a463360eb79b1726f446d",
                "md5": "a4b35983daabd7f14c04c0d9741e5146",
                "sha256": "006f4af0cf30725425b6777016e6d6d7b2854955f0402b227f70d6fbdc594272"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4b35983daabd7f14c04c0d9741e5146",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2329256,
            "upload_time": "2024-02-14T11:28:46",
            "upload_time_iso_8601": "2024-02-14T11:28:46.496907Z",
            "url": "https://files.pythonhosted.org/packages/54/3a/808290e614677be713fc1bd6f3dc0a051020ba2a463360eb79b1726f446d/yara_python-4.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fe615bf97e97d492f7e0160945c7e2aa888508a3edb387ba0d3aa63940cc444",
                "md5": "ead523c32a17c57c6fa6b8897c7f2a54",
                "sha256": "7645a4d23d7749c390da92de105831762499eba22e39e956d0fddfda05d949eb"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ead523c32a17c57c6fa6b8897c7f2a54",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1956426,
            "upload_time": "2024-02-14T11:28:47",
            "upload_time_iso_8601": "2024-02-14T11:28:47.774381Z",
            "url": "https://files.pythonhosted.org/packages/0f/e6/15bf97e97d492f7e0160945c7e2aa888508a3edb387ba0d3aa63940cc444/yara_python-4.5.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c36876d07585387039b3166ba052fd102371461f0d6ed67113b36ff590d780a5",
                "md5": "c32a3c6f32811d2ded0bfa8ef540300d",
                "sha256": "244fd95d0e4f4f1fbe85032f7e9b779e2cb4c6678787725482d2b43925ff2ed3"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c32a3c6f32811d2ded0bfa8ef540300d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2013142,
            "upload_time": "2024-02-14T11:28:49",
            "upload_time_iso_8601": "2024-02-14T11:28:49.128777Z",
            "url": "https://files.pythonhosted.org/packages/c3/68/76d07585387039b3166ba052fd102371461f0d6ed67113b36ff590d780a5/yara_python-4.5.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c26b25fb74baef232f0746f04cdab8b99e93be709ee14c255cd5a99945fb53d",
                "md5": "4ce3cf5d5dab3803c339953811ee8320",
                "sha256": "c17980d60ff3f7cfabab2df28965efb8e0b38508a5c47a0ad6917016edc0328c"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ce3cf5d5dab3803c339953811ee8320",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2062163,
            "upload_time": "2024-02-14T11:28:50",
            "upload_time_iso_8601": "2024-02-14T11:28:50.499067Z",
            "url": "https://files.pythonhosted.org/packages/8c/26/b25fb74baef232f0746f04cdab8b99e93be709ee14c255cd5a99945fb53d/yara_python-4.5.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ce7b98bd35b1c3dfa303ac35c7122f5787961ab0b52e9de8edcf562530aca33",
                "md5": "d5e660393294a4b8596a8c31cf3674b0",
                "sha256": "86549302cae8f9c5fb1394e2e9fd9dc802e3c488723935e50fdcb0d6b639ab51"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d5e660393294a4b8596a8c31cf3674b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1332788,
            "upload_time": "2024-02-14T11:28:52",
            "upload_time_iso_8601": "2024-02-14T11:28:52.190173Z",
            "url": "https://files.pythonhosted.org/packages/4c/e7/b98bd35b1c3dfa303ac35c7122f5787961ab0b52e9de8edcf562530aca33/yara_python-4.5.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cc23ce2fbc919218b7b45a1c7922cf02a865c2564d114cc75c0393a9afaf71d",
                "md5": "8517102fd46f0b63aa3664e460f204dd",
                "sha256": "36423ffd5e2e1f39562df6bd569be997c2fd06e0f30019dfadf339ff88278a4f"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8517102fd46f0b63aa3664e460f204dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1679662,
            "upload_time": "2024-02-14T11:28:54",
            "upload_time_iso_8601": "2024-02-14T11:28:54.071571Z",
            "url": "https://files.pythonhosted.org/packages/6c/c2/3ce2fbc919218b7b45a1c7922cf02a865c2564d114cc75c0393a9afaf71d/yara_python-4.5.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef67a1467c7253f8d1ca08ae048c7d804f2332e557ca90c16ee37f9ac99b0954",
                "md5": "55a51daf6ecfb1c7b255030f2231524a",
                "sha256": "49f8e215c9ebd0b43a782d3cfbeee6f82e2a647482cff6c676e96da57014d878"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55a51daf6ecfb1c7b255030f2231524a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2054070,
            "upload_time": "2024-02-14T11:28:56",
            "upload_time_iso_8601": "2024-02-14T11:28:56.028002Z",
            "url": "https://files.pythonhosted.org/packages/ef/67/a1467c7253f8d1ca08ae048c7d804f2332e557ca90c16ee37f9ac99b0954/yara_python-4.5.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12ef6810c395fb95a830ff3944ad7d94a44b303b645f0514950f70957efd68f1",
                "md5": "e731b366b0c508c14f14318e0d372596",
                "sha256": "262be4841add4d7e978db317e63f657291b4c9a64469bcdf43cdee8b3f28e0c0"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e731b366b0c508c14f14318e0d372596",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2237069,
            "upload_time": "2024-02-14T11:28:58",
            "upload_time_iso_8601": "2024-02-14T11:28:58.975783Z",
            "url": "https://files.pythonhosted.org/packages/12/ef/6810c395fb95a830ff3944ad7d94a44b303b645f0514950f70957efd68f1/yara_python-4.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db3423b1394d20ec20922b8de1f1a98ed38e37f88fd72a47e0858ae6ad2fb060",
                "md5": "4519c197f53e54ad65d0a0b1afec95e0",
                "sha256": "a0ee9e222daa982d31dc4be5fabf838726a3fb6a6425253c73f53aa0f0e2f457"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4519c197f53e54ad65d0a0b1afec95e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2317394,
            "upload_time": "2024-02-14T11:29:01",
            "upload_time_iso_8601": "2024-02-14T11:29:01.084381Z",
            "url": "https://files.pythonhosted.org/packages/db/34/23b1394d20ec20922b8de1f1a98ed38e37f88fd72a47e0858ae6ad2fb060/yara_python-4.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "266c5caf15474de1d86bad20f4d959c9d146044fd0a450895e9cfdb4d177865e",
                "md5": "4f773be5734e25c499decfa0233bb38a",
                "sha256": "d6d7d16fffc0fe92cd8d4ead9fbd58f1da7fcd9d39ff5c32924691db66257927"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f773be5734e25c499decfa0233bb38a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2321042,
            "upload_time": "2024-02-14T11:29:02",
            "upload_time_iso_8601": "2024-02-14T11:29:02.570898Z",
            "url": "https://files.pythonhosted.org/packages/26/6c/5caf15474de1d86bad20f4d959c9d146044fd0a450895e9cfdb4d177865e/yara_python-4.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b91e327890476e217ef4be93a0f8dc547865a5c2a2112e051c86466e68bafcb",
                "md5": "c97255953e90b477422b39720b68f48d",
                "sha256": "6ebbe0c112da598828d8fad15356a20b739dd2ef0dd0d90f6ec0f00ce9aa7ae1"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c97255953e90b477422b39720b68f48d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1948959,
            "upload_time": "2024-02-14T11:29:04",
            "upload_time_iso_8601": "2024-02-14T11:29:04.009803Z",
            "url": "https://files.pythonhosted.org/packages/1b/91/e327890476e217ef4be93a0f8dc547865a5c2a2112e051c86466e68bafcb/yara_python-4.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83d5477339b92e0f567dfa087731e2e1a003d61753819d900dad6362f61cab51",
                "md5": "da8aa4c0b838f4df48bf405eb414a876",
                "sha256": "a08162e9b4bdbae1e2e34ab83b6f145d334d650399aab9afb5341ce67a866a5c"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "da8aa4c0b838f4df48bf405eb414a876",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2005431,
            "upload_time": "2024-02-14T11:29:05",
            "upload_time_iso_8601": "2024-02-14T11:29:05.441186Z",
            "url": "https://files.pythonhosted.org/packages/83/d5/477339b92e0f567dfa087731e2e1a003d61753819d900dad6362f61cab51/yara_python-4.5.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83ca7f8755e0d64ce9bf47cafc6edc2de9e8b7e98937884419a89b199aa52ba7",
                "md5": "57dc22fab4e8a3b71592ed702d5de901",
                "sha256": "65b0e4c168f0210d9b6be7b95bb7e2a97a545d52e9d3403370c3c5506b9d31f1"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57dc22fab4e8a3b71592ed702d5de901",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2053263,
            "upload_time": "2024-02-14T11:29:06",
            "upload_time_iso_8601": "2024-02-14T11:29:06.892780Z",
            "url": "https://files.pythonhosted.org/packages/83/ca/7f8755e0d64ce9bf47cafc6edc2de9e8b7e98937884419a89b199aa52ba7/yara_python-4.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee50abbefd0ccfd10f706b61ed69dfd9b8931607380e75180b7838e0d7b2bf10",
                "md5": "9508b39ce4b504cf1bb43d5126798dbd",
                "sha256": "3393eced9af44507193f7724b8f37ed5f0c5620fb402b886d6f07f578aab43af"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "9508b39ce4b504cf1bb43d5126798dbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1332707,
            "upload_time": "2024-02-14T11:29:08",
            "upload_time_iso_8601": "2024-02-14T11:29:08.602626Z",
            "url": "https://files.pythonhosted.org/packages/ee/50/abbefd0ccfd10f706b61ed69dfd9b8931607380e75180b7838e0d7b2bf10/yara_python-4.5.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0529d90cff65c9fb630218a56cc08bb8a360bd820ac8ff7f1eb17d02006313e",
                "md5": "dc6fbb0e0d83f362512e0e61cb395788",
                "sha256": "de539783415e5b73e81d0a26fbe21cf2ade1b32fbd653be8a0f7430907337883"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dc6fbb0e0d83f362512e0e61cb395788",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1679639,
            "upload_time": "2024-02-14T11:29:10",
            "upload_time_iso_8601": "2024-02-14T11:29:10.999511Z",
            "url": "https://files.pythonhosted.org/packages/e0/52/9d90cff65c9fb630218a56cc08bb8a360bd820ac8ff7f1eb17d02006313e/yara_python-4.5.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f60abc2e54d9985b5532877ba1e1a669cb3950f51c6fd7ae63b5a8467f9158a5",
                "md5": "8d09a7360cef8130ab31bc07f98d7f7b",
                "sha256": "067610dfedfe361b748bbf9148183df11141748f2a83b4bdb873fde96a62e204"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8d09a7360cef8130ab31bc07f98d7f7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 414814,
            "upload_time": "2024-02-14T11:29:13",
            "upload_time_iso_8601": "2024-02-14T11:29:13.082932Z",
            "url": "https://files.pythonhosted.org/packages/f6/0a/bc2e54d9985b5532877ba1e1a669cb3950f51c6fd7ae63b5a8467f9158a5/yara_python-4.5.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74e6bef060627a001f9d580cd5fd8320eb4f3ed4f22d14516cd674ad4b66bdd0",
                "md5": "a5102448957ea5b0d0289d52dc0537f4",
                "sha256": "8342783942dd8bdc46f1047cdb45ff68dcfe7aef0499b644deabd3d685a2d7e6"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5102448957ea5b0d0289d52dc0537f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2054288,
            "upload_time": "2024-02-14T11:29:14",
            "upload_time_iso_8601": "2024-02-14T11:29:14.711504Z",
            "url": "https://files.pythonhosted.org/packages/74/e6/bef060627a001f9d580cd5fd8320eb4f3ed4f22d14516cd674ad4b66bdd0/yara_python-4.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7535ae5ac56c44f1efb6780f6bfcf867ec68080dd0978d6257adcecf48f7c28",
                "md5": "0043150415727f5b5fcc73a86cbc42ab",
                "sha256": "f14db61a8e54c61cced58d070630033b68e276036053f402e76a1b7ebc5ad0f0"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0043150415727f5b5fcc73a86cbc42ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2242651,
            "upload_time": "2024-02-14T11:29:16",
            "upload_time_iso_8601": "2024-02-14T11:29:16.549028Z",
            "url": "https://files.pythonhosted.org/packages/f7/53/5ae5ac56c44f1efb6780f6bfcf867ec68080dd0978d6257adcecf48f7c28/yara_python-4.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bfdb5ccc0832f7d63d5613ebbdaaec47175aff87c7ecf5df8adde3660ba326d",
                "md5": "ba3000c198c2f0ec38f671a8191361fa",
                "sha256": "468743b991341440fa4fd6c1414b2f5948970d26330ac1ae811f10d559c57771"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ba3000c198c2f0ec38f671a8191361fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2321668,
            "upload_time": "2024-02-14T11:29:17",
            "upload_time_iso_8601": "2024-02-14T11:29:17.940670Z",
            "url": "https://files.pythonhosted.org/packages/5b/fd/b5ccc0832f7d63d5613ebbdaaec47175aff87c7ecf5df8adde3660ba326d/yara_python-4.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46375b6976cb07f1e22ade43dc9753be04355911aaaa1977ba1552d3c09300fd",
                "md5": "17d014a4f9396d40289147276f3da7dc",
                "sha256": "cde3be15f16c3b24a3e7a08327deeec9225cecf060c930fef58d38ae4554b17e"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17d014a4f9396d40289147276f3da7dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2326134,
            "upload_time": "2024-02-14T11:29:19",
            "upload_time_iso_8601": "2024-02-14T11:29:19.340648Z",
            "url": "https://files.pythonhosted.org/packages/46/37/5b6976cb07f1e22ade43dc9753be04355911aaaa1977ba1552d3c09300fd/yara_python-4.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5e3f988cd17ec4052de34d85808d0c14a29ed7ddbf73940b3fd9bdda5fba182",
                "md5": "e50f47e353acb1d0c00c3623f98f7380",
                "sha256": "1b07363c9b44796fe991e29a5756a48ae195f3cbe4d72bb70b1932f5ccadd153"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e50f47e353acb1d0c00c3623f98f7380",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1954564,
            "upload_time": "2024-02-14T11:29:20",
            "upload_time_iso_8601": "2024-02-14T11:29:20.912345Z",
            "url": "https://files.pythonhosted.org/packages/e5/e3/f988cd17ec4052de34d85808d0c14a29ed7ddbf73940b3fd9bdda5fba182/yara_python-4.5.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dda42de64aaa804cc8c57d9706237ec0c15b212682267a772e35fe48c7fe7f27",
                "md5": "a2d22211b5bd850f32816d56882c27c0",
                "sha256": "8072d6f89d7352d09d1eeda6a8fa15582ff141495f24ceb448c7b7f7592d1820"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a2d22211b5bd850f32816d56882c27c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2010560,
            "upload_time": "2024-02-14T11:29:22",
            "upload_time_iso_8601": "2024-02-14T11:29:22.338816Z",
            "url": "https://files.pythonhosted.org/packages/dd/a4/2de64aaa804cc8c57d9706237ec0c15b212682267a772e35fe48c7fe7f27/yara_python-4.5.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10e8e58047763a2085339cdd7d6c008823792d1073485bd4e758cf6c1f8509f0",
                "md5": "42aba0a0b745192d12c8a4fe9c15ec05",
                "sha256": "29735530650093e251abe11f76d78382fb8e87f24e7bc154e4fe28c624e7d4f7"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42aba0a0b745192d12c8a4fe9c15ec05",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2058994,
            "upload_time": "2024-02-14T11:29:24",
            "upload_time_iso_8601": "2024-02-14T11:29:24.330402Z",
            "url": "https://files.pythonhosted.org/packages/10/e8/e58047763a2085339cdd7d6c008823792d1073485bd4e758cf6c1f8509f0/yara_python-4.5.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33cd5ef0871fd4e9b19420368aa9c699811207499af3ad8025f2098e6774dfab",
                "md5": "6c34d44785e9dbe2f7a007b26651290d",
                "sha256": "016a7ce7ec60b1dcecec6a23557abd3b78b442a8ac7dd14c4e8047ac07227ea6"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "6c34d44785e9dbe2f7a007b26651290d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1332687,
            "upload_time": "2024-02-14T11:29:26",
            "upload_time_iso_8601": "2024-02-14T11:29:26.515738Z",
            "url": "https://files.pythonhosted.org/packages/33/cd/5ef0871fd4e9b19420368aa9c699811207499af3ad8025f2098e6774dfab/yara_python-4.5.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75a310231c1dd67460a83456e5658d0a2a35e36c594231205de7d52d4b439d62",
                "md5": "a6e17ef0212217216efd77bdc70125fd",
                "sha256": "47fe5195687fff0f7ec435ce75b46a35b05b257c7550de5cb417bad9750bebde"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a6e17ef0212217216efd77bdc70125fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1679278,
            "upload_time": "2024-02-14T11:29:30",
            "upload_time_iso_8601": "2024-02-14T11:29:30.883602Z",
            "url": "https://files.pythonhosted.org/packages/75/a3/10231c1dd67460a83456e5658d0a2a35e36c594231205de7d52d4b439d62/yara_python-4.5.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c5701a4ecc287e127f769b6519e45a223094835722f61ac633fab87f1399b61",
                "md5": "8f319bcd7233ef40c531cd96422ffb5f",
                "sha256": "aea5ba7084b48fb3d5edd6b01c7e45763a1f0a4dd83bc0c3c1975e61aeae86cf"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8f319bcd7233ef40c531cd96422ffb5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 414790,
            "upload_time": "2024-02-14T11:29:33",
            "upload_time_iso_8601": "2024-02-14T11:29:33.324634Z",
            "url": "https://files.pythonhosted.org/packages/1c/57/01a4ecc287e127f769b6519e45a223094835722f61ac633fab87f1399b61/yara_python-4.5.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80f4da1e169703325eb78969a4c733050f4b9fe3af2ec522b66c1e9dfdae3aac",
                "md5": "8236e0d74797c502e129e0782d30cdbb",
                "sha256": "16894888f599b4acdf57a4fc157108fb804823149f60e81a0afba0b7d2ebbf5f"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8236e0d74797c502e129e0782d30cdbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2054317,
            "upload_time": "2024-02-14T11:29:35",
            "upload_time_iso_8601": "2024-02-14T11:29:35.241391Z",
            "url": "https://files.pythonhosted.org/packages/80/f4/da1e169703325eb78969a4c733050f4b9fe3af2ec522b66c1e9dfdae3aac/yara_python-4.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91834a379564de45abf40d1cfa7f4fd1d8851c27c90a7391cda2363674ac8575",
                "md5": "62823b292181caabb7eb156a191f3288",
                "sha256": "5e80d2d8e5f7e9c25c8150f7281183abb2e53d81c0d33cecdf1459faeb042572"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "62823b292181caabb7eb156a191f3288",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2241112,
            "upload_time": "2024-02-14T11:29:37",
            "upload_time_iso_8601": "2024-02-14T11:29:37.208160Z",
            "url": "https://files.pythonhosted.org/packages/91/83/4a379564de45abf40d1cfa7f4fd1d8851c27c90a7391cda2363674ac8575/yara_python-4.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d58296312cf45a320a3a48abb81e538ff2d51f47ac27b9e1742c1321f86c6fc",
                "md5": "f9533120f18844b4f4ae348e78a35a98",
                "sha256": "898fbdc6c5f5913935ce2586242dd94673d27f3a031dc0704598237c25ed4431"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f9533120f18844b4f4ae348e78a35a98",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2320495,
            "upload_time": "2024-02-14T11:29:39",
            "upload_time_iso_8601": "2024-02-14T11:29:39.114216Z",
            "url": "https://files.pythonhosted.org/packages/4d/58/296312cf45a320a3a48abb81e538ff2d51f47ac27b9e1742c1321f86c6fc/yara_python-4.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c7e68c92135b55babaf817df42d78b9fbfafadb6c02ad7685b173630e4e878c",
                "md5": "2e0575f0a464b15ef919e3529b8c41e0",
                "sha256": "8e94d576dd98f7b957d34b8b03cabdf0372d11e9f65cd45bb823cbc3a086ec25"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e0575f0a464b15ef919e3529b8c41e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2324907,
            "upload_time": "2024-02-14T11:29:41",
            "upload_time_iso_8601": "2024-02-14T11:29:41.224254Z",
            "url": "https://files.pythonhosted.org/packages/8c/7e/68c92135b55babaf817df42d78b9fbfafadb6c02ad7685b173630e4e878c/yara_python-4.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a0aa2f28118ee15ed72ba398c1ec7604e472b4f93c1633214af4abea7880f4e",
                "md5": "bfe4ecbfd710b73639c2c8fe7fc22021",
                "sha256": "d95e525074624c2618cb8146b4cc22455e786fbbe575b99bf191824a23f460db"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bfe4ecbfd710b73639c2c8fe7fc22021",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1951999,
            "upload_time": "2024-02-14T11:29:43",
            "upload_time_iso_8601": "2024-02-14T11:29:43.314376Z",
            "url": "https://files.pythonhosted.org/packages/3a/0a/a2f28118ee15ed72ba398c1ec7604e472b4f93c1633214af4abea7880f4e/yara_python-4.5.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57552bfa189ca9353831821ea1dc6cd4fc0154a6d39344afd77abf4c0c2d1237",
                "md5": "1f7c5feb7d82fa4d3355a41e78138edd",
                "sha256": "185d542aefc154c28d59b7385f3d8d7baacbb74451f2f153a51c1216ae063d70"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1f7c5feb7d82fa4d3355a41e78138edd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2008718,
            "upload_time": "2024-02-14T11:29:45",
            "upload_time_iso_8601": "2024-02-14T11:29:45.714425Z",
            "url": "https://files.pythonhosted.org/packages/57/55/2bfa189ca9353831821ea1dc6cd4fc0154a6d39344afd77abf4c0c2d1237/yara_python-4.5.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c184740f46908e180b10e17457f99bc3eeabf69aeb2cc95238ae8c5d24d98c2b",
                "md5": "49f36c11ba5b2d7dc8c24858ae3fa18d",
                "sha256": "e7571f164a2da121fbc3a0d4df68fec82d2ae39bb8ea48b5a77467a467741573"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49f36c11ba5b2d7dc8c24858ae3fa18d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2056709,
            "upload_time": "2024-02-14T11:29:47",
            "upload_time_iso_8601": "2024-02-14T11:29:47.377645Z",
            "url": "https://files.pythonhosted.org/packages/c1/84/740f46908e180b10e17457f99bc3eeabf69aeb2cc95238ae8c5d24d98c2b/yara_python-4.5.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a81802457c04c5a6cd190391425f4e45bb3c2287fb1ff324b357201d002df91e",
                "md5": "155954a81c38655aa3dfaad361fa4489",
                "sha256": "692ae9d9647026908d5202a9ec68da6c8b4e4fb161828a425bc847ad03e66341"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "155954a81c38655aa3dfaad361fa4489",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1332583,
            "upload_time": "2024-02-14T11:29:49",
            "upload_time_iso_8601": "2024-02-14T11:29:49.231373Z",
            "url": "https://files.pythonhosted.org/packages/a8/18/02457c04c5a6cd190391425f4e45bb3c2287fb1ff324b357201d002df91e/yara_python-4.5.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07ef77778ca2f58d86d767c1e0dc867d27b61956087137becdec494e82553275",
                "md5": "3162664da8d30d098ebee7c043cf77e9",
                "sha256": "b08ebeab39aab6fd80da875aa9fe0ec21ab8432f4656a0f4011a5069a9c3aab4"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3162664da8d30d098ebee7c043cf77e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1679541,
            "upload_time": "2024-02-14T11:29:50",
            "upload_time_iso_8601": "2024-02-14T11:29:50.557853Z",
            "url": "https://files.pythonhosted.org/packages/07/ef/77778ca2f58d86d767c1e0dc867d27b61956087137becdec494e82553275/yara_python-4.5.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f936a22a485c971a1cc8d582246f4ea478f09dde94bf8a4682ba6715d55d917",
                "md5": "a9ecf5a4862ec9587c9f00de6f7b5006",
                "sha256": "cf9758f5b22cd0d9e14cec363d5eda3af637d93728bf5287ee0887a2fce036b1"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9ecf5a4862ec9587c9f00de6f7b5006",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 2033508,
            "upload_time": "2024-02-14T11:29:51",
            "upload_time_iso_8601": "2024-02-14T11:29:51.956280Z",
            "url": "https://files.pythonhosted.org/packages/5f/93/6a22a485c971a1cc8d582246f4ea478f09dde94bf8a4682ba6715d55d917/yara_python-4.5.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "646b04b504733cde2257d1a4f8e4cd7ebf410cfba435f3d51a89a073c9230c3b",
                "md5": "3c8f23e299c93db57520ce722fc503f5",
                "sha256": "2b68c7367df3d10d55fbeda985c02425ef9b549805fa9893505e25d68ef039e8"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c8f23e299c93db57520ce722fc503f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1606722,
            "upload_time": "2024-02-14T11:29:53",
            "upload_time_iso_8601": "2024-02-14T11:29:53.420828Z",
            "url": "https://files.pythonhosted.org/packages/64/6b/04b504733cde2257d1a4f8e4cd7ebf410cfba435f3d51a89a073c9230c3b/yara_python-4.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61741b60974fad700c07cdb16dff8170fd455a61f1de165821b195bf92508df0",
                "md5": "e1c88a01d95b36b7f4a26f2df8761d06",
                "sha256": "fe47ea00cd442eeb0bfea9ffea3cec97074e0e88843358a0552063b978655736"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e1c88a01d95b36b7f4a26f2df8761d06",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1752950,
            "upload_time": "2024-02-14T11:29:55",
            "upload_time_iso_8601": "2024-02-14T11:29:55.494005Z",
            "url": "https://files.pythonhosted.org/packages/61/74/1b60974fad700c07cdb16dff8170fd455a61f1de165821b195bf92508df0/yara_python-4.5.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04e6ad4e8579b2132460503c2f74df00934ef5f16bbe34e5ea76a314f50b85f4",
                "md5": "c15f2713938e397e880d1776fe6280b6",
                "sha256": "344b679576d51fc6397eac3282e4ad27b1ab093cf9571a47e47b50debcd03dbf"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c15f2713938e397e880d1776fe6280b6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1691852,
            "upload_time": "2024-02-14T11:29:57",
            "upload_time_iso_8601": "2024-02-14T11:29:57.064064Z",
            "url": "https://files.pythonhosted.org/packages/04/e6/ad4e8579b2132460503c2f74df00934ef5f16bbe34e5ea76a314f50b85f4/yara_python-4.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da1b729d80cb1b307537bb043396c3572702fb8b1d58a7b2cd6326c233c959d4",
                "md5": "64f146357fd9ce57546a827d213ea835",
                "sha256": "5c02545da623e58f5df8292a7d214b97667989904271d30b5e389b9ab1a81395"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "64f146357fd9ce57546a827d213ea835",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1679383,
            "upload_time": "2024-02-14T11:29:58",
            "upload_time_iso_8601": "2024-02-14T11:29:58.483576Z",
            "url": "https://files.pythonhosted.org/packages/da/1b/729d80cb1b307537bb043396c3572702fb8b1d58a7b2cd6326c233c959d4/yara_python-4.5.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dacd8acbc138afc0ce138f048aa50a42fff6d704a8bcc51320b100afdceb7dcf",
                "md5": "f4811481f1bd588e14a5f3e225fe2f7a",
                "sha256": "e344f6953be0f60dc4fa94f629568e12ed9d2b981997e22bf32bd83083774c2f"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4811481f1bd588e14a5f3e225fe2f7a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 2033478,
            "upload_time": "2024-02-14T11:30:00",
            "upload_time_iso_8601": "2024-02-14T11:30:00.169494Z",
            "url": "https://files.pythonhosted.org/packages/da/cd/8acbc138afc0ce138f048aa50a42fff6d704a8bcc51320b100afdceb7dcf/yara_python-4.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "644c53124909758b47fa31c7482e57fdaec891b6679d1505b6549bb3f16887d8",
                "md5": "32a17a9177573f7b30e796d08a8a9ba6",
                "sha256": "77da34bac1807d270df4840d28c01a7d879e0ce0a0c692a0b0bd8f2adf4f6d1c"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "32a17a9177573f7b30e796d08a8a9ba6",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1609156,
            "upload_time": "2024-02-14T11:30:02",
            "upload_time_iso_8601": "2024-02-14T11:30:02.255461Z",
            "url": "https://files.pythonhosted.org/packages/64/4c/53124909758b47fa31c7482e57fdaec891b6679d1505b6549bb3f16887d8/yara_python-4.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97074eddc5749301c1b27850035f60657bf80d3e7ddfa304d6f2f50b512caf3d",
                "md5": "58f63b6a7b902ceaae70420f36a767b2",
                "sha256": "2d262ddf7032f1a9efe9c7533315c37db86ad58c10b5888d704f50f0f82bdfb8"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "58f63b6a7b902ceaae70420f36a767b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1757270,
            "upload_time": "2024-02-14T11:30:04",
            "upload_time_iso_8601": "2024-02-14T11:30:04.017873Z",
            "url": "https://files.pythonhosted.org/packages/97/07/4eddc5749301c1b27850035f60657bf80d3e7ddfa304d6f2f50b512caf3d/yara_python-4.5.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b5d452db35876712c7c7a891835dff49e1481da9a0f9097bb9df1d49466e2ba",
                "md5": "44d1ddc3df693912637b5b4e05906c53",
                "sha256": "7d04c17b27e33f9541a47f12972fc1a5836d2dfa947f48ed3242c5c9c32fc47b"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44d1ddc3df693912637b5b4e05906c53",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1696840,
            "upload_time": "2024-02-14T11:30:05",
            "upload_time_iso_8601": "2024-02-14T11:30:05.660481Z",
            "url": "https://files.pythonhosted.org/packages/4b/5d/452db35876712c7c7a891835dff49e1481da9a0f9097bb9df1d49466e2ba/yara_python-4.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d59f2c302144c8fbf3ec64a302647998f369f524c1b26e156558904932612a33",
                "md5": "4fff2e404c88f5081f14b5951a74a071",
                "sha256": "847c249bbf6847f6d056921315eeef2d9c2ac79fcf063384d9b752b51e087afd"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4fff2e404c88f5081f14b5951a74a071",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 1679692,
            "upload_time": "2024-02-14T11:30:07",
            "upload_time_iso_8601": "2024-02-14T11:30:07.843844Z",
            "url": "https://files.pythonhosted.org/packages/d5/9f/2c302144c8fbf3ec64a302647998f369f524c1b26e156558904932612a33/yara_python-4.5.0-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a64d1f9f2bc714ab86a699d4b4fc801b1101f007f2396a2a84798f5a19b5554f",
                "md5": "7b89744b90802cbb32ece9ca607e50f9",
                "sha256": "0361820a3a8ec522cbb259d6af664d5f7dd19b29e4bcce9c36e480832b4172fc"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b89744b90802cbb32ece9ca607e50f9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 2033487,
            "upload_time": "2024-02-14T11:30:09",
            "upload_time_iso_8601": "2024-02-14T11:30:09.355382Z",
            "url": "https://files.pythonhosted.org/packages/a6/4d/1f9f2bc714ab86a699d4b4fc801b1101f007f2396a2a84798f5a19b5554f/yara_python-4.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b120d532a14a7c7f813b3f415b9661e5f9ea57cc5a78ab2480ce6dbfb1fc4ac9",
                "md5": "929293ebda8984b83f11887b05b81c0e",
                "sha256": "00a7c3d593ef0d065d84c06ed365ce24735f553669de1e066851e8f6cdfc2051"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "929293ebda8984b83f11887b05b81c0e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1606707,
            "upload_time": "2024-02-14T11:30:11",
            "upload_time_iso_8601": "2024-02-14T11:30:11.581261Z",
            "url": "https://files.pythonhosted.org/packages/b1/20/d532a14a7c7f813b3f415b9661e5f9ea57cc5a78ab2480ce6dbfb1fc4ac9/yara_python-4.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e45910d7292b91df193632984e825d7ed2323f637e42c5dd93b6a67d0447d74f",
                "md5": "78263e2845a79aac0cba7b464baae911",
                "sha256": "a45b201d634be0f37bcb5fcf898fc91c66032c3f87b3e7656953f111e475f409"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "78263e2845a79aac0cba7b464baae911",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1752964,
            "upload_time": "2024-02-14T11:30:13",
            "upload_time_iso_8601": "2024-02-14T11:30:13.238239Z",
            "url": "https://files.pythonhosted.org/packages/e4/59/10d7292b91df193632984e825d7ed2323f637e42c5dd93b6a67d0447d74f/yara_python-4.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18d29d462728c27ee03f431955f0de03f9491e99565c0fc527d3d9850fcd91e1",
                "md5": "93767ff54af58b0e6fd1701491afd3d1",
                "sha256": "7c1cbcfc262840ea1fb19bc961eaff51d764896bd411643f5695a46046cae99b"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93767ff54af58b0e6fd1701491afd3d1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1691854,
            "upload_time": "2024-02-14T11:30:14",
            "upload_time_iso_8601": "2024-02-14T11:30:14.740724Z",
            "url": "https://files.pythonhosted.org/packages/18/d2/9d462728c27ee03f431955f0de03f9491e99565c0fc527d3d9850fcd91e1/yara_python-4.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a21cf3464d930ce507ce394ed91c85291a2a8ebb317d575bcfb35c0eb15d1aa3",
                "md5": "bda5fa1b3f0eeceeb59579b8d2316abe",
                "sha256": "445d80c3a327345cae346cb12c86b01265127319a9cf3a1d93e301ee080fb2c7"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bda5fa1b3f0eeceeb59579b8d2316abe",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1680023,
            "upload_time": "2024-02-14T11:30:17",
            "upload_time_iso_8601": "2024-02-14T11:30:17.103827Z",
            "url": "https://files.pythonhosted.org/packages/a2/1c/f3464d930ce507ce394ed91c85291a2a8ebb317d575bcfb35c0eb15d1aa3/yara_python-4.5.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b64aac3fa40d269fd249639ab80cee92565a4d8d866f4bc5bda6ef8749fe1989",
                "md5": "a41bcafc23313ba86e7a8c2e54a9a2f6",
                "sha256": "c966f098254d6883ea9b1bba9743a298658cc58f43904ea6564e31e3e0d699d8"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a41bcafc23313ba86e7a8c2e54a9a2f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 2033488,
            "upload_time": "2024-02-14T11:30:18",
            "upload_time_iso_8601": "2024-02-14T11:30:18.911492Z",
            "url": "https://files.pythonhosted.org/packages/b6/4a/ac3fa40d269fd249639ab80cee92565a4d8d866f4bc5bda6ef8749fe1989/yara_python-4.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5462adabc9cf8e5fddd76f9830e75f716c121709f960492668242de70e1ac2a",
                "md5": "632646569a592c83e27814890c0aa73f",
                "sha256": "c901ce071141261a857ea779bcdf0c1e63e238d1b597a411dc2f816796a25c63"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "632646569a592c83e27814890c0aa73f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1606710,
            "upload_time": "2024-02-14T11:30:21",
            "upload_time_iso_8601": "2024-02-14T11:30:21.091549Z",
            "url": "https://files.pythonhosted.org/packages/a5/46/2adabc9cf8e5fddd76f9830e75f716c121709f960492668242de70e1ac2a/yara_python-4.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a2ce74ddd6dcc90feed13063e1033b4dc32e6b63f44b3402d7a2423ff47ec82",
                "md5": "69c9c861cf0ba5d34115ea71f2aa53c2",
                "sha256": "26085645d894bdfa75e2e88ba57d8297ed89c415ae3c2224ef27095c13c0c050"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "69c9c861cf0ba5d34115ea71f2aa53c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1752907,
            "upload_time": "2024-02-14T11:30:23",
            "upload_time_iso_8601": "2024-02-14T11:30:23.055560Z",
            "url": "https://files.pythonhosted.org/packages/7a/2c/e74ddd6dcc90feed13063e1033b4dc32e6b63f44b3402d7a2423ff47ec82/yara_python-4.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d09878ce72407dadda4023683f12a7e896018d0e51bc8fefc343285d09a9ad49",
                "md5": "df7a19f7cc49670a0a30d991de5532c3",
                "sha256": "a0778e2d41bde173dd5e4758bb2f6d58832f149ff10d333e8751ae3cc4b195b2"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df7a19f7cc49670a0a30d991de5532c3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1691811,
            "upload_time": "2024-02-14T11:30:24",
            "upload_time_iso_8601": "2024-02-14T11:30:24.861535Z",
            "url": "https://files.pythonhosted.org/packages/d0/98/78ce72407dadda4023683f12a7e896018d0e51bc8fefc343285d09a9ad49/yara_python-4.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78718935d2bf6e01ef053af602558cac684dad0198acbb55480d8c7b1bfb4391",
                "md5": "0bfa9ecad4b361cf072a75fb59c526be",
                "sha256": "648072ba075b930d976b5f6ae8c4563e4e32a057a2a8bd5be0e82ac98b682c60"
            },
            "downloads": -1,
            "filename": "yara_python-4.5.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0bfa9ecad4b361cf072a75fb59c526be",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1679332,
            "upload_time": "2024-02-14T11:30:26",
            "upload_time_iso_8601": "2024-02-14T11:30:26.770455Z",
            "url": "https://files.pythonhosted.org/packages/78/71/8935d2bf6e01ef053af602558cac684dad0198acbb55480d8c7b1bfb4391/yara_python-4.5.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-14 11:28:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "VirusTotal",
    "github_project": "yara-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "lcname": "yara-python"
}
        
Elapsed time: 0.22174s