.. 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": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Victor M. Alvarez",
"author_email": "plusvic@gmail.com, vmalvarez@virustotal.com",
"download_url": "https://files.pythonhosted.org/packages/2f/3a/0d2970e76215ab7a835ebf06ba0015f98a9d8e11b9969e60f1ca63f04ba5/yara_python-4.5.1.tar.gz",
"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.1",
"project_urls": {
"Homepage": "https://github.com/VirusTotal/yara-python"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "11e87ad2bb30700bcaaee26bbf0e62aa07e52350e307973eb11f838bbf47c43e",
"md5": "52d2c308b0c4ca6fe0dde92cc0077a76",
"sha256": "7c92219bf91caea277bc2736df70dda3709834c297a4a5906f1d9a46cd03579a"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "52d2c308b0c4ca6fe0dde92cc0077a76",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 414504,
"upload_time": "2024-05-27T10:13:00",
"upload_time_iso_8601": "2024-05-27T10:13:00.036377Z",
"url": "https://files.pythonhosted.org/packages/11/e8/7ad2bb30700bcaaee26bbf0e62aa07e52350e307973eb11f838bbf47c43e/yara_python-4.5.1-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d12a24739873fe8a6d037b7f1ad9594c92f66195d993d59843eaed50d0f05f50",
"md5": "a330ce012b293d3cb0661ad99efed0e6",
"sha256": "6e8e9eb5a49a70a013bf45e0ec97210b7cb124813271fddc666c3cfb1308a2d5"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a330ce012b293d3cb0661ad99efed0e6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2061598,
"upload_time": "2024-05-27T10:13:02",
"upload_time_iso_8601": "2024-05-27T10:13:02.674195Z",
"url": "https://files.pythonhosted.org/packages/d1/2a/24739873fe8a6d037b7f1ad9594c92f66195d993d59843eaed50d0f05f50/yara_python-4.5.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6da1fcb072b2f94b3208826024cc4d7645023291598378c817c67c37161b24be",
"md5": "e2e1c6bf08e6d4b00b7d74e7ccf89780",
"sha256": "ffb48e853f107f2e6e0e29a97ce1185e9cc7a15a6c860dc65eb8ec431d1b6d3e"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e2e1c6bf08e6d4b00b7d74e7ccf89780",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2241563,
"upload_time": "2024-05-27T10:13:05",
"upload_time_iso_8601": "2024-05-27T10:13:05.151524Z",
"url": "https://files.pythonhosted.org/packages/6d/a1/fcb072b2f94b3208826024cc4d7645023291598378c817c67c37161b24be/yara_python-4.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a64bdf8a6f4c0c439ad75eb3920834560fae2c968a4dc30c7ee2bcf0bced3247",
"md5": "8fb0380ed3edf3b4f46e028ebca14bdc",
"sha256": "2c6a4e181de457a5de74982b82ab01c89a06bcd66820ca1671f22e984be1be78"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8fb0380ed3edf3b4f46e028ebca14bdc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2320247,
"upload_time": "2024-05-27T10:13:07",
"upload_time_iso_8601": "2024-05-27T10:13:07.725442Z",
"url": "https://files.pythonhosted.org/packages/a6/4b/df8a6f4c0c439ad75eb3920834560fae2c968a4dc30c7ee2bcf0bced3247/yara_python-4.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7931c2aef5d45ff73d5fda562fa8c9ceb28a31f495f204826da23f2d0a069f2",
"md5": "36437e41ee2d9160ec9037db764ac0a1",
"sha256": "155ef1a9ca2aeeb57441fa99b6d8bd2cb67787f0d62b3c1670512e36c97ec02f"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "36437e41ee2d9160ec9037db764ac0a1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2324438,
"upload_time": "2024-05-27T10:13:09",
"upload_time_iso_8601": "2024-05-27T10:13:09.373751Z",
"url": "https://files.pythonhosted.org/packages/f7/93/1c2aef5d45ff73d5fda562fa8c9ceb28a31f495f204826da23f2d0a069f2/yara_python-4.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7729ae2ede5bd80a705db3b8e490cb80986618d90abbe7d4ed6392674cde85ae",
"md5": "ae158984e155cb1b4d3a7452e60f9e4a",
"sha256": "264fdc2953c635131112a2cef6208b52d35731a6cc902cc62fe82508d9051afd"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ae158984e155cb1b4d3a7452e60f9e4a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1953092,
"upload_time": "2024-05-27T10:13:11",
"upload_time_iso_8601": "2024-05-27T10:13:11.704192Z",
"url": "https://files.pythonhosted.org/packages/77/29/ae2ede5bd80a705db3b8e490cb80986618d90abbe7d4ed6392674cde85ae/yara_python-4.5.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d82798700fe16b07f22124c2c0de5bfc80790df0b29f95bdea054b1283db8ac0",
"md5": "c60429d4d76e33d209d25a7f99cfacb4",
"sha256": "a1a3e6b610e7131353cfea80ba119db3e96f7ad7befcd9d5a51df8786c806403"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "c60429d4d76e33d209d25a7f99cfacb4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2007595,
"upload_time": "2024-05-27T10:13:13",
"upload_time_iso_8601": "2024-05-27T10:13:13.283610Z",
"url": "https://files.pythonhosted.org/packages/d8/27/98700fe16b07f22124c2c0de5bfc80790df0b29f95bdea054b1283db8ac0/yara_python-4.5.1-cp310-cp310-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e4672375522c13ee913abd479ab9f5c463e4e5770f0e42034083a0197e7b9a0",
"md5": "2e81ce80b64de0eef2540eb3bd9be333",
"sha256": "aec3dda6b173c4be4d972058ee41fb019c866b82861f12a1ac2b01035cea34b9"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2e81ce80b64de0eef2540eb3bd9be333",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2057207,
"upload_time": "2024-05-27T10:13:15",
"upload_time_iso_8601": "2024-05-27T10:13:15.275933Z",
"url": "https://files.pythonhosted.org/packages/2e/46/72375522c13ee913abd479ab9f5c463e4e5770f0e42034083a0197e7b9a0/yara_python-4.5.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5018bafe02ac95259cac9b6cf86059faac59879aeddb028b7f22b0a2e3f1d14c",
"md5": "bd9324c14fceef38f5eabe652c4794af",
"sha256": "8c3935da45ce283e02a86c9120240524e352add64c5cbccd616885937801ac67"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "bd9324c14fceef38f5eabe652c4794af",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1336640,
"upload_time": "2024-05-27T10:13:17",
"upload_time_iso_8601": "2024-05-27T10:13:17.343477Z",
"url": "https://files.pythonhosted.org/packages/50/18/bafe02ac95259cac9b6cf86059faac59879aeddb028b7f22b0a2e3f1d14c/yara_python-4.5.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98d75eede6341b61a562ea36e2dfca14d664887a3bb2d1ce451041ed6e3fa811",
"md5": "8f8621c667d4b0ce006b18aef2249397",
"sha256": "59fd46cc8c5a77e5e4942c7e403ac738f5c64154dcbc67bd8c9af453d7bb2539"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "8f8621c667d4b0ce006b18aef2249397",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 1683831,
"upload_time": "2024-05-27T10:13:19",
"upload_time_iso_8601": "2024-05-27T10:13:19.329533Z",
"url": "https://files.pythonhosted.org/packages/98/d7/5eede6341b61a562ea36e2dfca14d664887a3bb2d1ce451041ed6e3fa811/yara_python-4.5.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2778f5e1751e27b61a8a265043f238db7c72bd64bdd0ec5169f5dbdcbc7601fa",
"md5": "a8786653668e5445db848c48cbb47579",
"sha256": "3044359876921e26370f7b646d84a65681811df577be7d4d09c7de21b33d9130"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "a8786653668e5445db848c48cbb47579",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 414527,
"upload_time": "2024-05-27T10:13:20",
"upload_time_iso_8601": "2024-05-27T10:13:20.675166Z",
"url": "https://files.pythonhosted.org/packages/27/78/f5e1751e27b61a8a265043f238db7c72bd64bdd0ec5169f5dbdcbc7601fa/yara_python-4.5.1-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93f1088b2dfb5cc8f1bd1bbba6195179fe5d52ca0174d4c899ac6b2cfca834d7",
"md5": "8189407e232ba20e334a8bd8d843a1e7",
"sha256": "49ad70b6b65ed1c591c3bfb3d5d6da0fc6a73b1f979604feead450f348ad67c4"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8189407e232ba20e334a8bd8d843a1e7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2061616,
"upload_time": "2024-05-27T10:13:22",
"upload_time_iso_8601": "2024-05-27T10:13:22.055530Z",
"url": "https://files.pythonhosted.org/packages/93/f1/088b2dfb5cc8f1bd1bbba6195179fe5d52ca0174d4c899ac6b2cfca834d7/yara_python-4.5.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f791ed1c827ce0b650953344ab0da9fda9006211e740f05eb367ae60fa79cdb1",
"md5": "fa983fa80fc0d6b7f7d0df653fc80fcb",
"sha256": "5a6a185d2ec8fbbffa89d0f7949b84f76860d0e3a74192825dbf53d6a5069b83"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fa983fa80fc0d6b7f7d0df653fc80fcb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2243210,
"upload_time": "2024-05-27T10:13:24",
"upload_time_iso_8601": "2024-05-27T10:13:24.151465Z",
"url": "https://files.pythonhosted.org/packages/f7/91/ed1c827ce0b650953344ab0da9fda9006211e740f05eb367ae60fa79cdb1/yara_python-4.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "606d77578b1d924666d766b16fa125c93394ba48856177dc8ed1f988174390a3",
"md5": "eefca85ffddda84b3ed7dc2921f38848",
"sha256": "2560dd27f63cdb395d9d77d6a74d1f0d6b7aa0ea18394f44d650e5abb6e377a3"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "eefca85ffddda84b3ed7dc2921f38848",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2321636,
"upload_time": "2024-05-27T10:13:25",
"upload_time_iso_8601": "2024-05-27T10:13:25.479845Z",
"url": "https://files.pythonhosted.org/packages/60/6d/77578b1d924666d766b16fa125c93394ba48856177dc8ed1f988174390a3/yara_python-4.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30bb05182e1276fc11f45f782a045a96d4a9672eada3122fc935c4603c2db477",
"md5": "df8e10d064ecb92e2ba3ae901eb96c5e",
"sha256": "471e4070bf7e3b9b132f1c0134d1172d9dae353b04f2fce9bc31431ae785595e"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "df8e10d064ecb92e2ba3ae901eb96c5e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2326006,
"upload_time": "2024-05-27T10:13:27",
"upload_time_iso_8601": "2024-05-27T10:13:27.437310Z",
"url": "https://files.pythonhosted.org/packages/30/bb/05182e1276fc11f45f782a045a96d4a9672eada3122fc935c4603c2db477/yara_python-4.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3b48cda7f39558d852bd42dc513dbe6ac89a49fe5153b3f174e4dfc108ced6d",
"md5": "c46b54f530f7315125e13fd292d3d1fd",
"sha256": "f533848781f0e46e44eda77055eae4ec934cf56c1f473e787704f1a348e90094"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "c46b54f530f7315125e13fd292d3d1fd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1954845,
"upload_time": "2024-05-27T10:13:29",
"upload_time_iso_8601": "2024-05-27T10:13:29.244094Z",
"url": "https://files.pythonhosted.org/packages/f3/b4/8cda7f39558d852bd42dc513dbe6ac89a49fe5153b3f174e4dfc108ced6d/yara_python-4.5.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "afb3f6036ad67b26b94e6bc1a49d10fdc78577588abee806569c0385531199e3",
"md5": "fc0b0959464cc4b0100cb5e6a9583c89",
"sha256": "3aaf259ed162d2de5db70ae1ba057307efdeb7f4697d74cc5b3313caa7647923"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "fc0b0959464cc4b0100cb5e6a9583c89",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2008589,
"upload_time": "2024-05-27T10:13:30",
"upload_time_iso_8601": "2024-05-27T10:13:30.945688Z",
"url": "https://files.pythonhosted.org/packages/af/b3/f6036ad67b26b94e6bc1a49d10fdc78577588abee806569c0385531199e3/yara_python-4.5.1-cp311-cp311-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8d039b6deb57698a3d6d84d6b099632dd47a73016f3178f5a77736c16890e7a",
"md5": "fce0ea094c0fe33fa96a09ecb34e57b9",
"sha256": "90374acc38086447a668580a9aecceb11964f08deb05bfaced6f43e9e67955a1"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "fce0ea094c0fe33fa96a09ecb34e57b9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2058872,
"upload_time": "2024-05-27T10:13:32",
"upload_time_iso_8601": "2024-05-27T10:13:32.569868Z",
"url": "https://files.pythonhosted.org/packages/b8/d0/39b6deb57698a3d6d84d6b099632dd47a73016f3178f5a77736c16890e7a/yara_python-4.5.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07fd9db15a6216d4ac5f6f76f5e8e27785c38235856fe7686b362f0fbe2cdf7a",
"md5": "45ea46ddec90e77548cc3c5109649ab0",
"sha256": "721422a14d18a81d75397df51481f5b5f3ab8d0a5220087e5306570877cab4e4"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "45ea46ddec90e77548cc3c5109649ab0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1336639,
"upload_time": "2024-05-27T10:13:34",
"upload_time_iso_8601": "2024-05-27T10:13:34.408254Z",
"url": "https://files.pythonhosted.org/packages/07/fd/9db15a6216d4ac5f6f76f5e8e27785c38235856fe7686b362f0fbe2cdf7a/yara_python-4.5.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7fa475113ec92e9c685bbccea3ce65cabd96367e7023fa0357c6a1082da1358",
"md5": "82007915b9d1d7605a1b227122295e53",
"sha256": "dac13dc77a5f21c119104ae4e6ad837589eace0505e9daf38af0bd2d4ccd7cfa"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "82007915b9d1d7605a1b227122295e53",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 1683833,
"upload_time": "2024-05-27T10:13:35",
"upload_time_iso_8601": "2024-05-27T10:13:35.666592Z",
"url": "https://files.pythonhosted.org/packages/a7/fa/475113ec92e9c685bbccea3ce65cabd96367e7023fa0357c6a1082da1358/yara_python-4.5.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6869847b0699c64beaea8de549ef806064420df54cf58e94fcd2f651d9963b7a",
"md5": "f5cfe3c00c8d5ed46aa93f7e3e754ef9",
"sha256": "7eb27c1cd2f6f93f68e23e676ede28357c1fc8b9ec7deefe86f2cfef4abd877c"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "f5cfe3c00c8d5ed46aa93f7e3e754ef9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 414622,
"upload_time": "2024-05-27T10:13:37",
"upload_time_iso_8601": "2024-05-27T10:13:37.487416Z",
"url": "https://files.pythonhosted.org/packages/68/69/847b0699c64beaea8de549ef806064420df54cf58e94fcd2f651d9963b7a/yara_python-4.5.1-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97578cdb21d9c5fe049885cce8fdad02a79200533ffe64bb3a2f9c90affac274",
"md5": "8cf24d7e1750a01926bf7c68753d7276",
"sha256": "4c7ac7c1ae5e25bd5bf67ce752ac82568c2cdc157c9af50ba28d7cbab4421175"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8cf24d7e1750a01926bf7c68753d7276",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2061769,
"upload_time": "2024-05-27T10:13:39",
"upload_time_iso_8601": "2024-05-27T10:13:39.158729Z",
"url": "https://files.pythonhosted.org/packages/97/57/8cdb21d9c5fe049885cce8fdad02a79200533ffe64bb3a2f9c90affac274/yara_python-4.5.1-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4114af54ca86186aa265a4c722324f1f0aca8dd5fdef59ff9c9a81c8679bc3ed",
"md5": "3705bc630a830435f2287748e2e64a42",
"sha256": "77011bed905f3786755da7de7ba9082790db654a241e13746fa3fc325b9ad966"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3705bc630a830435f2287748e2e64a42",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2245644,
"upload_time": "2024-05-27T10:13:40",
"upload_time_iso_8601": "2024-05-27T10:13:40.440959Z",
"url": "https://files.pythonhosted.org/packages/41/14/af54ca86186aa265a4c722324f1f0aca8dd5fdef59ff9c9a81c8679bc3ed/yara_python-4.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20607fe2cf48d8478774b15d049eccf5f7a76b40d0dc158d500c836d4e4a0e63",
"md5": "2b353f4ec9b6cfa4d96f93de6e190ce6",
"sha256": "0ddedd9bfcfc37ffddceefd9dbf9bbba137c979b3effc9c1e9aeb08d77c6858c"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2b353f4ec9b6cfa4d96f93de6e190ce6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2324557,
"upload_time": "2024-05-27T10:13:41",
"upload_time_iso_8601": "2024-05-27T10:13:41.802191Z",
"url": "https://files.pythonhosted.org/packages/20/60/7fe2cf48d8478774b15d049eccf5f7a76b40d0dc158d500c836d4e4a0e63/yara_python-4.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1cd1a6a0b8d70cb4b117d6aeb3e62b41ab85ab46717a15c74aa615e2beeb4fa",
"md5": "dfd2c91c17656acd59d9c305c5da8e50",
"sha256": "3431154fac7f41b4657edad91632717b5f1bab5be4ed6ce28d6e17e441d5c947"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dfd2c91c17656acd59d9c305c5da8e50",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2328876,
"upload_time": "2024-05-27T10:13:43",
"upload_time_iso_8601": "2024-05-27T10:13:43.792693Z",
"url": "https://files.pythonhosted.org/packages/b1/cd/1a6a0b8d70cb4b117d6aeb3e62b41ab85ab46717a15c74aa615e2beeb4fa/yara_python-4.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0246027b35f4cea11537d6f0b8a5119933f405eb806c27f3c288e086b6e4f76",
"md5": "cc8d5be023f9e56dbf827353b82aebcb",
"sha256": "7d5dc091235ded00b30f04a51d70e08352e44976122f8d45e63d25e96eae27d9"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "cc8d5be023f9e56dbf827353b82aebcb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1957556,
"upload_time": "2024-05-27T10:13:45",
"upload_time_iso_8601": "2024-05-27T10:13:45.510160Z",
"url": "https://files.pythonhosted.org/packages/b0/24/6027b35f4cea11537d6f0b8a5119933f405eb806c27f3c288e086b6e4f76/yara_python-4.5.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92655414dcd86e5564608054200a70b94e44bc350dc10cf634c26b8ff473b1f8",
"md5": "f9983bdc45ef994cdccadd7223c95a4e",
"sha256": "97d30a483d195e6b695f072086cf1234317a650727844bac7bf85cf98dd960a3"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "f9983bdc45ef994cdccadd7223c95a4e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2011059,
"upload_time": "2024-05-27T10:13:47",
"upload_time_iso_8601": "2024-05-27T10:13:47.029318Z",
"url": "https://files.pythonhosted.org/packages/92/65/5414dcd86e5564608054200a70b94e44bc350dc10cf634c26b8ff473b1f8/yara_python-4.5.1-cp312-cp312-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa8f11785bb3256151b8584e27557ea7747b54cf3a28e0f12980555458734a8e",
"md5": "057bb9ffb90cbcf1f700a9ceb16871c4",
"sha256": "bb65c17657b4cdbe5adee7a6e617ee05e214e8afdbc82b195885354a72a16476"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "057bb9ffb90cbcf1f700a9ceb16871c4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2061924,
"upload_time": "2024-05-27T10:13:48",
"upload_time_iso_8601": "2024-05-27T10:13:48.502940Z",
"url": "https://files.pythonhosted.org/packages/aa/8f/11785bb3256151b8584e27557ea7747b54cf3a28e0f12980555458734a8e/yara_python-4.5.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8f4409a8e77e915748135c8f4d5a04392c4b86f034f6e89986d3198788b754e",
"md5": "5befd5294499d5033627eb3bc3cfbefc",
"sha256": "4f368d057e0865278444c948a65802f7c92008a1b59bf629bdc9efa1b0120a22"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "5befd5294499d5033627eb3bc3cfbefc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1336853,
"upload_time": "2024-05-27T10:13:50",
"upload_time_iso_8601": "2024-05-27T10:13:50.939349Z",
"url": "https://files.pythonhosted.org/packages/d8/f4/409a8e77e915748135c8f4d5a04392c4b86f034f6e89986d3198788b754e/yara_python-4.5.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f52e27063ad99728a3146159f7a6a202d9959a0c938ba34e5e17ce9b29763348",
"md5": "b58fdc3c0328ae7c7b91eeed801fc67c",
"sha256": "6ccd73466d7ad1a50cd06f38fdb7a023fee87dd185d3fcf67cc5c55d82cc34dd"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b58fdc3c0328ae7c7b91eeed801fc67c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 1684095,
"upload_time": "2024-05-27T10:13:53",
"upload_time_iso_8601": "2024-05-27T10:13:53.853557Z",
"url": "https://files.pythonhosted.org/packages/f5/2e/27063ad99728a3146159f7a6a202d9959a0c938ba34e5e17ce9b29763348/yara_python-4.5.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3d23b7048311ca41156387c0e64275b2dd9213d021f6b0b24ec7270ac4d010e",
"md5": "da7a2dcf0d7c330fe6fdbfb915f863f2",
"sha256": "37ff0e6256d75521e5ac52b45671647bd6f6a7aa49259b13c19db424d9fdb795"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "da7a2dcf0d7c330fe6fdbfb915f863f2",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2061421,
"upload_time": "2024-05-27T10:13:55",
"upload_time_iso_8601": "2024-05-27T10:13:55.752767Z",
"url": "https://files.pythonhosted.org/packages/f3/d2/3b7048311ca41156387c0e64275b2dd9213d021f6b0b24ec7270ac4d010e/yara_python-4.5.1-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c86989a07830aaadba4b4a6c8c7529009ca935a002f319a459071f4a0d1dd40",
"md5": "c418c8c7b83bf63a6c3f837e51fa15bd",
"sha256": "c17d1555dbd99f4872ca289ee92b9630331def0df864f88ced1665efa3cabdac"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c418c8c7b83bf63a6c3f837e51fa15bd",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2237080,
"upload_time": "2024-05-27T10:13:58",
"upload_time_iso_8601": "2024-05-27T10:13:58.221747Z",
"url": "https://files.pythonhosted.org/packages/6c/86/989a07830aaadba4b4a6c8c7529009ca935a002f319a459071f4a0d1dd40/yara_python-4.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33c1f96f20abf24daf95d3252efdb045ea03ccf95d8a548d94019cef843eaea4",
"md5": "09c424ac5f677ac717b646a27776997d",
"sha256": "cfae9eac6a65d25799aecd21cb43f3552a86552c57e90e85e03a1e95e100fb35"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "09c424ac5f677ac717b646a27776997d",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2316878,
"upload_time": "2024-05-27T10:14:00",
"upload_time_iso_8601": "2024-05-27T10:14:00.078768Z",
"url": "https://files.pythonhosted.org/packages/33/c1/f96f20abf24daf95d3252efdb045ea03ccf95d8a548d94019cef843eaea4/yara_python-4.5.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69550433dc68ec077212966dce2c7e3640f166ecea5b6b97c5aec50eb9e01198",
"md5": "45d16914e2b937ea320ca2a990c2a1f3",
"sha256": "b8c8cfbdc33cbcf78afd6e11149e406dfe558bbd497ff0c9b001753545a326e7"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "45d16914e2b937ea320ca2a990c2a1f3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2320389,
"upload_time": "2024-05-27T10:14:01",
"upload_time_iso_8601": "2024-05-27T10:14:01.759467Z",
"url": "https://files.pythonhosted.org/packages/69/55/0433dc68ec077212966dce2c7e3640f166ecea5b6b97c5aec50eb9e01198/yara_python-4.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "370bcdd4ad63aa68e97d37e67dad147bcc69a792550e65b6d03605a617b9666b",
"md5": "51f76c42699d239516aef562dcf4a46e",
"sha256": "bb767f5c9c67d0b5de4d916c92130303d02d07d5a96a160aa5d7aa6c45883b1f"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "51f76c42699d239516aef562dcf4a46e",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1949330,
"upload_time": "2024-05-27T10:14:04",
"upload_time_iso_8601": "2024-05-27T10:14:04.567472Z",
"url": "https://files.pythonhosted.org/packages/37/0b/cdd4ad63aa68e97d37e67dad147bcc69a792550e65b6d03605a617b9666b/yara_python-4.5.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d0f920b4bd30061e2b58778ed305b0d34bd7f915a0d3d92b72af270b9a936a7",
"md5": "d4b67194fa863af126501d87249218cb",
"sha256": "e14d43aba8a8d66268cd45ce534bb7b608ca08d97d4ffb9f0205ef5554e317fb"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp37-cp37m-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "d4b67194fa863af126501d87249218cb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2003959,
"upload_time": "2024-05-27T10:14:06",
"upload_time_iso_8601": "2024-05-27T10:14:06.453651Z",
"url": "https://files.pythonhosted.org/packages/5d/0f/920b4bd30061e2b58778ed305b0d34bd7f915a0d3d92b72af270b9a936a7/yara_python-4.5.1-cp37-cp37m-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea6184b080e7dc87f39bb5bc630c7b1685da8caae88e1e2f74e33df8c39b2f54",
"md5": "e975a68d5b52d5b5887133c68dd53c76",
"sha256": "4c2d81727e24c224b0003770f2548f2eb75d9a95d5aa03b65d5ccf8ab3112d8d"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e975a68d5b52d5b5887133c68dd53c76",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2053202,
"upload_time": "2024-05-27T10:14:08",
"upload_time_iso_8601": "2024-05-27T10:14:08.017303Z",
"url": "https://files.pythonhosted.org/packages/ea/61/84b080e7dc87f39bb5bc630c7b1685da8caae88e1e2f74e33df8c39b2f54/yara_python-4.5.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f08b876d2549fc2c3140b309bf93c071583994051477ad402ab0805e893b7457",
"md5": "a392b95b02ff389e3360622938e99d68",
"sha256": "da5848e64fdde37529e6ebd8e5778e4665a7dee8cdff2f347ec47a39b453f298"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "a392b95b02ff389e3360622938e99d68",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1336932,
"upload_time": "2024-05-27T10:14:09",
"upload_time_iso_8601": "2024-05-27T10:14:09.595598Z",
"url": "https://files.pythonhosted.org/packages/f0/8b/876d2549fc2c3140b309bf93c071583994051477ad402ab0805e893b7457/yara_python-4.5.1-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a54da1df2df61d31f1e7948eaa0c01284a7989cf08e6654f28445d6ff4b8011a",
"md5": "cd7a03017cb88a65c3a6c1f0bf7d92bc",
"sha256": "0fc8a450b662a0235ab7cee59ad2e366207c97bb99a80db9ffb68f865abd4ac9"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "cd7a03017cb88a65c3a6c1f0bf7d92bc",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 1683972,
"upload_time": "2024-05-27T10:14:11",
"upload_time_iso_8601": "2024-05-27T10:14:11.159164Z",
"url": "https://files.pythonhosted.org/packages/a5/4d/a1df2df61d31f1e7948eaa0c01284a7989cf08e6654f28445d6ff4b8011a/yara_python-4.5.1-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e38d8c2f09d9d5ec3d1c69dac11c846f750e54881cc6470ab18daabda22cb92",
"md5": "e68091c63520dc4aa5c1ff3cfd2f104b",
"sha256": "0324175b06c440eb754b7ff3845b6eb426b5870bbbebbeae32f2e5281fd35860"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "e68091c63520dc4aa5c1ff3cfd2f104b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 414610,
"upload_time": "2024-05-27T10:14:13",
"upload_time_iso_8601": "2024-05-27T10:14:13.690091Z",
"url": "https://files.pythonhosted.org/packages/9e/38/d8c2f09d9d5ec3d1c69dac11c846f750e54881cc6470ab18daabda22cb92/yara_python-4.5.1-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38f02252e4b319ae1f9589ec05c65fac2539dd4931e382b87db5bbf5a3f5ce3e",
"md5": "11178691350191e6e825d5d621af15ba",
"sha256": "f408668aab84a0f42b78784d948a69a99bf95300536edd4ab771bb4a06d92f50"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "11178691350191e6e825d5d621af15ba",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2061603,
"upload_time": "2024-05-27T10:14:15",
"upload_time_iso_8601": "2024-05-27T10:14:15.219481Z",
"url": "https://files.pythonhosted.org/packages/38/f0/2252e4b319ae1f9589ec05c65fac2539dd4931e382b87db5bbf5a3f5ce3e/yara_python-4.5.1-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d714f78de567a0a647391de7c3dc98b304c18f7dbcc8ae665568f76a510756a",
"md5": "b1c7ff368bdb89661d327dab5f9571f1",
"sha256": "a885ec2800b3ee8c4ba9e6634005e041afad33998d59fa6c76bea60c1bd9c73b"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b1c7ff368bdb89661d327dab5f9571f1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2242414,
"upload_time": "2024-05-27T10:14:17",
"upload_time_iso_8601": "2024-05-27T10:14:17.311805Z",
"url": "https://files.pythonhosted.org/packages/7d/71/4f78de567a0a647391de7c3dc98b304c18f7dbcc8ae665568f76a510756a/yara_python-4.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4c17b14b06f1db5d97b8cfff99404f6fb6f37318c0eeea797dc9a6f79791d74",
"md5": "adc2d4cba861246501a0bf4834e53e06",
"sha256": "153d459a2382a28d08edb84a74f27d8ef2cc8154f7822dadf744c5797e8e6f25"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "adc2d4cba861246501a0bf4834e53e06",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2321350,
"upload_time": "2024-05-27T10:14:20",
"upload_time_iso_8601": "2024-05-27T10:14:20.724086Z",
"url": "https://files.pythonhosted.org/packages/b4/c1/7b14b06f1db5d97b8cfff99404f6fb6f37318c0eeea797dc9a6f79791d74/yara_python-4.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e886ebc56fecc49b9b8c76f935aeb9c3ec356b4fafd2e610a765a2d3bb0fedb",
"md5": "fb77efe6671407f8c7b7ceec43ab853d",
"sha256": "509ca2000c9f76c3304f9fdbb886b1d403231a6a76ec9b4aeb18c67ee8279917"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fb77efe6671407f8c7b7ceec43ab853d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2325250,
"upload_time": "2024-05-27T10:14:22",
"upload_time_iso_8601": "2024-05-27T10:14:22.438927Z",
"url": "https://files.pythonhosted.org/packages/3e/88/6ebc56fecc49b9b8c76f935aeb9c3ec356b4fafd2e610a765a2d3bb0fedb/yara_python-4.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e636ef9de14ea0cd46c74cc580d3a956f90739c05ec494bf14bc5d4695ca29a2",
"md5": "8016b4887d1fefe804db0c1b9af1c572",
"sha256": "b03d2ffe24a13d69d14b12517aac7a4ea5f0df41ac725f282ebdc729f4365a3d"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "8016b4887d1fefe804db0c1b9af1c572",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1955259,
"upload_time": "2024-05-27T10:14:25",
"upload_time_iso_8601": "2024-05-27T10:14:25.071009Z",
"url": "https://files.pythonhosted.org/packages/e6/36/ef9de14ea0cd46c74cc580d3a956f90739c05ec494bf14bc5d4695ca29a2/yara_python-4.5.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e88d05610dc175e04442b52c2a5769cbe32383ec955022b1e748c46063595bbe",
"md5": "4d67abd1a80829d526c9adc5086fcc89",
"sha256": "8e90cc9bee1340dec0e9dab95e056dec08e6ac67945ad20f537d65457845f2f1"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "4d67abd1a80829d526c9adc5086fcc89",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2009072,
"upload_time": "2024-05-27T10:14:27",
"upload_time_iso_8601": "2024-05-27T10:14:27.504452Z",
"url": "https://files.pythonhosted.org/packages/e8/8d/05610dc175e04442b52c2a5769cbe32383ec955022b1e748c46063595bbe/yara_python-4.5.1-cp38-cp38-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e10bebaff6345ccc980d590ffa5cdaa54c7768485550906e2a6decaa605ffcb7",
"md5": "ae46c699636d9d258d728aeceb5776c1",
"sha256": "37f6e85ee2fe458b52d4984bc2327cd33d69a10579dd708e29d6fbd371aceafe"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ae46c699636d9d258d728aeceb5776c1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2059186,
"upload_time": "2024-05-27T10:14:29",
"upload_time_iso_8601": "2024-05-27T10:14:29.677302Z",
"url": "https://files.pythonhosted.org/packages/e1/0b/ebaff6345ccc980d590ffa5cdaa54c7768485550906e2a6decaa605ffcb7/yara_python-4.5.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea28a92132d1ec7530348616c7cd276d6181e991a87d2ce28eb43d6bb86188db",
"md5": "7c7181a1630e507eed5672e088d4481d",
"sha256": "90aa56a3e27fdc5751550fe136a8d815c55a1a1db025b28d1f7d146493751310"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "7c7181a1630e507eed5672e088d4481d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1336608,
"upload_time": "2024-05-27T10:14:31",
"upload_time_iso_8601": "2024-05-27T10:14:31.098352Z",
"url": "https://files.pythonhosted.org/packages/ea/28/a92132d1ec7530348616c7cd276d6181e991a87d2ce28eb43d6bb86188db/yara_python-4.5.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f5582aa1c1ff25ef76450e1e765470d7553ec56583ac62b73c49965d72f1e64",
"md5": "586e251babe1a22367fe1238683042d0",
"sha256": "4cc7d5220a488fa0470f7c7ea303d1174e3b7e88dc6eef539ab048c8590257a8"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "586e251babe1a22367fe1238683042d0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 1683690,
"upload_time": "2024-05-27T10:14:32",
"upload_time_iso_8601": "2024-05-27T10:14:32.417869Z",
"url": "https://files.pythonhosted.org/packages/5f/55/82aa1c1ff25ef76450e1e765470d7553ec56583ac62b73c49965d72f1e64/yara_python-4.5.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2a1de7020a14f802f5283b2b9f9a159a65802698f12c2415692371b4537cd02",
"md5": "905b412ce6f2a479ccfbd4718e81e2bf",
"sha256": "6e8566034b9c24a12a8fd8b0ff580b078add7f9e9719e633ad1adcbb33be534a"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "905b412ce6f2a479ccfbd4718e81e2bf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 414499,
"upload_time": "2024-05-27T10:14:34",
"upload_time_iso_8601": "2024-05-27T10:14:34.370238Z",
"url": "https://files.pythonhosted.org/packages/a2/a1/de7020a14f802f5283b2b9f9a159a65802698f12c2415692371b4537cd02/yara_python-4.5.1-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9458e7c46220f75e1f5e8160fc2f58ac366aaf28f2e598788bd68c189efea382",
"md5": "fcfd90ee38fd2c54637822181d1d9950",
"sha256": "934f08ca197a645977749ca1163262abcec9bdbcb54cd47ffb2452c3edc4c5e4"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "fcfd90ee38fd2c54637822181d1d9950",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2061595,
"upload_time": "2024-05-27T10:14:36",
"upload_time_iso_8601": "2024-05-27T10:14:36.255293Z",
"url": "https://files.pythonhosted.org/packages/94/58/e7c46220f75e1f5e8160fc2f58ac366aaf28f2e598788bd68c189efea382/yara_python-4.5.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e124639720d6002fc1cc1868b844480bf97f1df93d9682a76dad52a83b04190c",
"md5": "1d438a63abd109a4fd1f40fbf8ee0422",
"sha256": "a41992c45fcad39ad05016eafc3c3632b3a11ede2440ba9c1250c5e5d484687a"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1d438a63abd109a4fd1f40fbf8ee0422",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2241017,
"upload_time": "2024-05-27T10:14:37",
"upload_time_iso_8601": "2024-05-27T10:14:37.648940Z",
"url": "https://files.pythonhosted.org/packages/e1/24/639720d6002fc1cc1868b844480bf97f1df93d9682a76dad52a83b04190c/yara_python-4.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e683eaf1fb05727bdacba2a5c8ec33940c33a92b95f9a0c7ed8964d523079f4",
"md5": "ec2d332c14c454a52278dc1c9a412e3a",
"sha256": "70eb3f84b6e57f7f52676ae9c11dccde2867f49bac6e9a042ef2d027a8afb9f1"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ec2d332c14c454a52278dc1c9a412e3a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2319983,
"upload_time": "2024-05-27T10:14:39",
"upload_time_iso_8601": "2024-05-27T10:14:39.287463Z",
"url": "https://files.pythonhosted.org/packages/9e/68/3eaf1fb05727bdacba2a5c8ec33940c33a92b95f9a0c7ed8964d523079f4/yara_python-4.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a086e49996722aa6c05b8d4c4c492a8f8d502698703ab91e334a3bfed2e79bbc",
"md5": "7c8afa6f8f6f0685a7b404283c869220",
"sha256": "9d21efeb69d83c48419beccda4aeb415c4c993387e6dee64d8eac4b33af8ac58"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7c8afa6f8f6f0685a7b404283c869220",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2323815,
"upload_time": "2024-05-27T10:14:40",
"upload_time_iso_8601": "2024-05-27T10:14:40.716179Z",
"url": "https://files.pythonhosted.org/packages/a0/86/e49996722aa6c05b8d4c4c492a8f8d502698703ab91e334a3bfed2e79bbc/yara_python-4.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac2351b198b9c9b458495d6e1b4173f1d6c28dfcdbfff93426a58a89f7aaf2b3",
"md5": "af9ba895f0aef27bffc821828937093a",
"sha256": "98b780fe880cb219b9a92957a1f9863e53908a2dd75483976265d256b3b69b84"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "af9ba895f0aef27bffc821828937093a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1952606,
"upload_time": "2024-05-27T10:14:42",
"upload_time_iso_8601": "2024-05-27T10:14:42.038409Z",
"url": "https://files.pythonhosted.org/packages/ac/23/51b198b9c9b458495d6e1b4173f1d6c28dfcdbfff93426a58a89f7aaf2b3/yara_python-4.5.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3593fb5d73b9b362390525007ca8f4297791e96d6a95ebbeec6d7b7433e2f551",
"md5": "e895661126bd3f4a25a1564efe32d684",
"sha256": "04c414472b0e3c4a2998ae247c0215bbb52c7808d09a7ca3899ef86ad1df7a7b"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-musllinux_1_1_i686.whl",
"has_sig": false,
"md5_digest": "e895661126bd3f4a25a1564efe32d684",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2007123,
"upload_time": "2024-05-27T10:14:43",
"upload_time_iso_8601": "2024-05-27T10:14:43.615469Z",
"url": "https://files.pythonhosted.org/packages/35/93/fb5d73b9b362390525007ca8f4297791e96d6a95ebbeec6d7b7433e2f551/yara_python-4.5.1-cp39-cp39-musllinux_1_1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f15305a90dabf2fa1cfcc30eb5f5000e5ea36c77ad5dbff6c811455891f5257b",
"md5": "19cb11a5b7b168233a15e1999ded4315",
"sha256": "0502328eeb18aa6e50af7e31df91b1dd23db0d47a0744383d90ff5cb38ff8d30"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "19cb11a5b7b168233a15e1999ded4315",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2056761,
"upload_time": "2024-05-27T10:14:45",
"upload_time_iso_8601": "2024-05-27T10:14:45.758054Z",
"url": "https://files.pythonhosted.org/packages/f1/53/05a90dabf2fa1cfcc30eb5f5000e5ea36c77ad5dbff6c811455891f5257b/yara_python-4.5.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17eff2689e8db31793948c56be22691438eed6760e9904392def36ab0b20f5fe",
"md5": "3cf3093af7ac3b25e1e186c072575b05",
"sha256": "5c266ce1a9f6f783f565d0687a052e0a76c287495452a92d495809f8f6c32a44"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "3cf3093af7ac3b25e1e186c072575b05",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1336673,
"upload_time": "2024-05-27T10:14:47",
"upload_time_iso_8601": "2024-05-27T10:14:47.108970Z",
"url": "https://files.pythonhosted.org/packages/17/ef/f2689e8db31793948c56be22691438eed6760e9904392def36ab0b20f5fe/yara_python-4.5.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e0a27b4b07b19a2815403cc4d21f51bbb1ef7803ab085410cf642a38294bf0ad",
"md5": "1daf311f303511176e71723c91d98b2c",
"sha256": "cc08a46630373bf194dc560e422622d45a3cbefec334650a96777f4c5f31f637"
},
"downloads": -1,
"filename": "yara_python-4.5.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "1daf311f303511176e71723c91d98b2c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 1683798,
"upload_time": "2024-05-27T10:14:49",
"upload_time_iso_8601": "2024-05-27T10:14:49.042412Z",
"url": "https://files.pythonhosted.org/packages/e0/a2/7b4b07b19a2815403cc4d21f51bbb1ef7803ab085410cf642a38294bf0ad/yara_python-4.5.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc552fcc21a3fc4a38e7401cd9c7e4c9a5fdd543a47a2ee6f0c4a79601441cb5",
"md5": "0503eb9669a9bfc768f9a1e58964fb94",
"sha256": "f23ea9893efd676eb2727e869b486d71e7cb7839789a36c80b726258365b39b6"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0503eb9669a9bfc768f9a1e58964fb94",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 2041521,
"upload_time": "2024-05-27T10:14:50",
"upload_time_iso_8601": "2024-05-27T10:14:50.495466Z",
"url": "https://files.pythonhosted.org/packages/fc/55/2fcc21a3fc4a38e7401cd9c7e4c9a5fdd543a47a2ee6f0c4a79601441cb5/yara_python-4.5.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94bc4469adc24468f5b6c30d53b7090d4dd798d5266bfedcc9b689cba1c79085",
"md5": "b6b1b7729ba3b66619e77a1b41b35fd2",
"sha256": "edf490994334b00933f7bc37fdd255451f12db741b15c2917fceb31e11bb698d"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b6b1b7729ba3b66619e77a1b41b35fd2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 1607208,
"upload_time": "2024-05-27T10:14:52",
"upload_time_iso_8601": "2024-05-27T10:14:52.752179Z",
"url": "https://files.pythonhosted.org/packages/94/bc/4469adc24468f5b6c30d53b7090d4dd798d5266bfedcc9b689cba1c79085/yara_python-4.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad341df5d6db66b9c8c89bb2f6aba962169342330f0214fb0dee80f55838220a",
"md5": "2115cb7be0c60154b1bc94b410e904b2",
"sha256": "038dcec1728233144ab0ab7ea4ed060f642c5f3152742c9ee71b493f571d6fd5"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2115cb7be0c60154b1bc94b410e904b2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 1753876,
"upload_time": "2024-05-27T10:14:54",
"upload_time_iso_8601": "2024-05-27T10:14:54.271879Z",
"url": "https://files.pythonhosted.org/packages/ad/34/1df5d6db66b9c8c89bb2f6aba962169342330f0214fb0dee80f55838220a/yara_python-4.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d665498eb10d519854a21e98f3b399754e600d239c46914b52566256837c3de",
"md5": "f90d3f1c32e6c3add50398b1be83b3d1",
"sha256": "146f2fbdeb043c32a6a7d08a4e37a0bb1c3c0a16d2ad97d957627f6158360569"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f90d3f1c32e6c3add50398b1be83b3d1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 1692489,
"upload_time": "2024-05-27T10:14:56",
"upload_time_iso_8601": "2024-05-27T10:14:56.036410Z",
"url": "https://files.pythonhosted.org/packages/3d/66/5498eb10d519854a21e98f3b399754e600d239c46914b52566256837c3de/yara_python-4.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "607e1507267f2406055bff88484feb22cc61bbe1a821e2062f91a34efcd6439e",
"md5": "937bcba5fa8d0428628b862b4d9d6c71",
"sha256": "389aa3a655c94885399e290bd74703273d7a1ecb33593b62801abee91efdfc86"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "937bcba5fa8d0428628b862b4d9d6c71",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 1683894,
"upload_time": "2024-05-27T10:14:58",
"upload_time_iso_8601": "2024-05-27T10:14:58.446860Z",
"url": "https://files.pythonhosted.org/packages/60/7e/1507267f2406055bff88484feb22cc61bbe1a821e2062f91a34efcd6439e/yara_python-4.5.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b86afa781012b8a9be9ed8f7631c0eb89c374d52d1880d850ac7a79d6ab81f4",
"md5": "e5bb17239ab2d6a6cf19dea2d950dd44",
"sha256": "df67822be9430066f76604421f79b8d1446d749d925376c82c3e7649064899e3"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e5bb17239ab2d6a6cf19dea2d950dd44",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 2041510,
"upload_time": "2024-05-27T10:15:01",
"upload_time_iso_8601": "2024-05-27T10:15:01.116415Z",
"url": "https://files.pythonhosted.org/packages/2b/86/afa781012b8a9be9ed8f7631c0eb89c374d52d1880d850ac7a79d6ab81f4/yara_python-4.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4982ff9dc6b250e18f55fec6d6db616fc15e7f0c5566da462880264ec9d0000c",
"md5": "611166b8ba8a29c89e53e700dad93558",
"sha256": "ecd0fa98a66e58be6a1d679e8679fc39029a4afa66d5310943d9180b90e57baf"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "611166b8ba8a29c89e53e700dad93558",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 1609632,
"upload_time": "2024-05-27T10:15:04",
"upload_time_iso_8601": "2024-05-27T10:15:04.270423Z",
"url": "https://files.pythonhosted.org/packages/49/82/ff9dc6b250e18f55fec6d6db616fc15e7f0c5566da462880264ec9d0000c/yara_python-4.5.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56ffd23249788839eb581eac198d081d2bd50bd998a8d30aa0496ba0a844ddd6",
"md5": "692bf96739a2ea28cb1018e5f3322e06",
"sha256": "8a073a26d1b081942fc741da8eeefe59c6fec5bf7f2adb3e80df1d73f57a7ea3"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "692bf96739a2ea28cb1018e5f3322e06",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 1757992,
"upload_time": "2024-05-27T10:15:08",
"upload_time_iso_8601": "2024-05-27T10:15:08.266695Z",
"url": "https://files.pythonhosted.org/packages/56/ff/d23249788839eb581eac198d081d2bd50bd998a8d30aa0496ba0a844ddd6/yara_python-4.5.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ef25f04b596c41c66e3bd98b0c3e410098ebc1056e45ad345c323b90aea9105",
"md5": "88398749d639c9e85bbb05175e2d78f7",
"sha256": "92af5596aa4af20d7f81260dc72b989dfd4b7672c5492f13e9b71fe2b24c936f"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "88398749d639c9e85bbb05175e2d78f7",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 1697822,
"upload_time": "2024-05-27T10:15:10",
"upload_time_iso_8601": "2024-05-27T10:15:10.269322Z",
"url": "https://files.pythonhosted.org/packages/9e/f2/5f04b596c41c66e3bd98b0c3e410098ebc1056e45ad345c323b90aea9105/yara_python-4.5.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9fdccce41a385d57e53dac32c23e445de7a08e7c11f8fb936c4c93a25b1edb34",
"md5": "1ad01e477e76ee99935763bf086e6279",
"sha256": "984f67c08f945acb78d2548aaf5ffa19d27288b48979eb0652dd3a89c7b7747b"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "1ad01e477e76ee99935763bf086e6279",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 1684023,
"upload_time": "2024-05-27T10:15:13",
"upload_time_iso_8601": "2024-05-27T10:15:13.505609Z",
"url": "https://files.pythonhosted.org/packages/9f/dc/cce41a385d57e53dac32c23e445de7a08e7c11f8fb936c4c93a25b1edb34/yara_python-4.5.1-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89398ad0641013b35468ecd88143a20613ee17623cde6a8b7e0a9be7adcf84af",
"md5": "5f9610c42aa6e309113c37dbc3240c04",
"sha256": "2756fe1121fdd45b29d0d21fea66f762ef50d9e636bae8fd94217f0dc4c32a3a"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5f9610c42aa6e309113c37dbc3240c04",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 2041530,
"upload_time": "2024-05-27T10:15:16",
"upload_time_iso_8601": "2024-05-27T10:15:16.275565Z",
"url": "https://files.pythonhosted.org/packages/89/39/8ad0641013b35468ecd88143a20613ee17623cde6a8b7e0a9be7adcf84af/yara_python-4.5.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "201fba16a9d434e11cfcfddb5176eecc1311c89ae3e382fccce2b71e9cabf6e9",
"md5": "e80d39e72cd3fe3e56198ee01f79a4d7",
"sha256": "c27dd8bdf1bbd946a82d1717c3dcc2efa449abb04018d186dca6b412ed93eba6"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e80d39e72cd3fe3e56198ee01f79a4d7",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 1607182,
"upload_time": "2024-05-27T10:15:18",
"upload_time_iso_8601": "2024-05-27T10:15:18.418454Z",
"url": "https://files.pythonhosted.org/packages/20/1f/ba16a9d434e11cfcfddb5176eecc1311c89ae3e382fccce2b71e9cabf6e9/yara_python-4.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb3be3f5052a5c36153a943bb280a045d2855d7e47afdbb5498119869f1939e4",
"md5": "449b95985ff783673ddaa18fe12cd488",
"sha256": "382fd997999cfd83d7c2087f8b73c55dde8193473ff2a78643b5c69d3a39e084"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "449b95985ff783673ddaa18fe12cd488",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 1753597,
"upload_time": "2024-05-27T10:15:20",
"upload_time_iso_8601": "2024-05-27T10:15:20.606105Z",
"url": "https://files.pythonhosted.org/packages/eb/3b/e3f5052a5c36153a943bb280a045d2855d7e47afdbb5498119869f1939e4/yara_python-4.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8754888c1516ffd5fcec32d1a9fac81ccb4a95d2c04f4a652540e0cfd4a7d547",
"md5": "96e7b990860634ca0a2aa7cb0328a105",
"sha256": "024c477f182c26265fc447051e09099016e3562ac7f2255e05de2a506dd4d6dc"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "96e7b990860634ca0a2aa7cb0328a105",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 1692439,
"upload_time": "2024-05-27T10:15:22",
"upload_time_iso_8601": "2024-05-27T10:15:22.523739Z",
"url": "https://files.pythonhosted.org/packages/87/54/888c1516ffd5fcec32d1a9fac81ccb4a95d2c04f4a652540e0cfd4a7d547/yara_python-4.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7b3d89ab9fa1b5e2a169bf5dc73125264c805133038cf38614a7316f1cd20c7",
"md5": "df2599dfc06aeb4f5d4fb3d46d8d993c",
"sha256": "2add91c1f2c7c6bd82affffd864f7e7a96285c80b97906f81584be3b3b448b74"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "df2599dfc06aeb4f5d4fb3d46d8d993c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 1684070,
"upload_time": "2024-05-27T10:15:24",
"upload_time_iso_8601": "2024-05-27T10:15:24.787161Z",
"url": "https://files.pythonhosted.org/packages/a7/b3/d89ab9fa1b5e2a169bf5dc73125264c805133038cf38614a7316f1cd20c7/yara_python-4.5.1-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a24fb855a763e4af934a1a9daf13fcfa3085e12056c80399a29c03b4851a869f",
"md5": "58f8ec433aa42f0b4163db02ccb05771",
"sha256": "7ae8411ae68a9f8911781bdc4393fc21ab48372ed3605c64265d08d57394ff5f"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "58f8ec433aa42f0b4163db02ccb05771",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 2041510,
"upload_time": "2024-05-27T10:15:26",
"upload_time_iso_8601": "2024-05-27T10:15:26.385387Z",
"url": "https://files.pythonhosted.org/packages/a2/4f/b855a763e4af934a1a9daf13fcfa3085e12056c80399a29c03b4851a869f/yara_python-4.5.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cdbfae8d56274629919891526212656bf13a7a622888870c2731f7435079fdde",
"md5": "474ca7b3c39170881f377daec4dc6d89",
"sha256": "bc81d88d3fa54f2a019e716f715a18e0c2c7c03816fef926b07b4ab3ba698e69"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "474ca7b3c39170881f377daec4dc6d89",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 1607171,
"upload_time": "2024-05-27T10:15:28",
"upload_time_iso_8601": "2024-05-27T10:15:28.262288Z",
"url": "https://files.pythonhosted.org/packages/cd/bf/ae8d56274629919891526212656bf13a7a622888870c2731f7435079fdde/yara_python-4.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f39b5436c34411eb3006e444f11af0d422a4044319c260042a30281a4ccaaac9",
"md5": "b06c51dceac5549e652ef978d6576009",
"sha256": "8765e387652f9354ca705ea8692e5e24424f7c20aaec857b40c13b18fe7862ad"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b06c51dceac5549e652ef978d6576009",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 1753593,
"upload_time": "2024-05-27T10:15:30",
"upload_time_iso_8601": "2024-05-27T10:15:30.699588Z",
"url": "https://files.pythonhosted.org/packages/f3/9b/5436c34411eb3006e444f11af0d422a4044319c260042a30281a4ccaaac9/yara_python-4.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e5122d7a2a56b605cd478306b76d4019ec406e741cd750b49b7e90066da1cea",
"md5": "bc8f1e6fd186ea35ff9be58e421df676",
"sha256": "4c1acc3fd1b4634a4b438b6129f3b52a306d40e44c7fd950e7154f147a12e4de"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bc8f1e6fd186ea35ff9be58e421df676",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 1692405,
"upload_time": "2024-05-27T10:15:32",
"upload_time_iso_8601": "2024-05-27T10:15:32.091948Z",
"url": "https://files.pythonhosted.org/packages/3e/51/22d7a2a56b605cd478306b76d4019ec406e741cd750b49b7e90066da1cea/yara_python-4.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54f2df347c0d44267d01807e30d941a5d1c799671847fe8f0630895121a6340d",
"md5": "bda95d2e871ac33432a0e5d9459a7570",
"sha256": "d64e300925d56b3cf7f430b3bf86e133b14aaf578cfe827c08aec8869b8375e9"
},
"downloads": -1,
"filename": "yara_python-4.5.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "bda95d2e871ac33432a0e5d9459a7570",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 1683752,
"upload_time": "2024-05-27T10:15:33",
"upload_time_iso_8601": "2024-05-27T10:15:33.614340Z",
"url": "https://files.pythonhosted.org/packages/54/f2/df347c0d44267d01807e30d941a5d1c799671847fe8f0630895121a6340d/yara_python-4.5.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f3a0d2970e76215ab7a835ebf06ba0015f98a9d8e11b9969e60f1ca63f04ba5",
"md5": "362d481687c7fa95fd833074c7fdcfdf",
"sha256": "52ab24422b021ae648be3de25090cbf9e6c6caa20488f498860d07f7be397930"
},
"downloads": -1,
"filename": "yara_python-4.5.1.tar.gz",
"has_sig": false,
"md5_digest": "362d481687c7fa95fd833074c7fdcfdf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 550202,
"upload_time": "2024-05-27T10:15:35",
"upload_time_iso_8601": "2024-05-27T10:15:35.255687Z",
"url": "https://files.pythonhosted.org/packages/2f/3a/0d2970e76215ab7a835ebf06ba0015f98a9d8e11b9969e60f1ca63f04ba5/yara_python-4.5.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-05-27 10:15:35",
"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"
}