Skip to main content

.. 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 to install 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.

Release files for yara-python 4.5.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for yara-python 4.5.4
File Size Uploaded
yara_python-4.5.4.tar.gz 551.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for yara-python 4.5.4
File
yara_python-4.5.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
yara_python-4.5.4-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
yara_python-4.5.4-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
yara_python-4.5.4-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
yara_python-4.5.4-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
yara_python-4.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
yara_python-4.5.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
yara_python-4.5.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
yara_python-4.5.4-cp313-cp313-macosx_15_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 15.0+ x86-64 Details
yara_python-4.5.4-cp313-cp313-macosx_15_0_arm64.whl CPython 3.13 CPython 3.13 macOS 15.0+ ARM64 Details
yara_python-4.5.4-cp313-cp313-macosx_14_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 14.0+ x86-64 Details
yara_python-4.5.4-cp313-cp313-macosx_14_0_arm64.whl CPython 3.13 CPython 3.13 macOS 14.0+ ARM64 Details
yara_python-4.5.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
yara_python-4.5.4-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
yara_python-4.5.4-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
yara_python-4.5.4-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
yara_python-4.5.4-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
yara_python-4.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
yara_python-4.5.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
yara_python-4.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
yara_python-4.5.4-cp312-cp312-macosx_15_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 15.0+ x86-64 Details
yara_python-4.5.4-cp312-cp312-macosx_15_0_arm64.whl CPython 3.12 CPython 3.12 macOS 15.0+ ARM64 Details
yara_python-4.5.4-cp312-cp312-macosx_14_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 14.0+ x86-64 Details
yara_python-4.5.4-cp312-cp312-macosx_14_0_arm64.whl CPython 3.12 CPython 3.12 macOS 14.0+ ARM64 Details
yara_python-4.5.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
yara_python-4.5.4-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
yara_python-4.5.4-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
yara_python-4.5.4-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
yara_python-4.5.4-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
yara_python-4.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
yara_python-4.5.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
yara_python-4.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
yara_python-4.5.4-cp311-cp311-macosx_15_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 15.0+ x86-64 Details
yara_python-4.5.4-cp311-cp311-macosx_15_0_arm64.whl CPython 3.11 CPython 3.11 macOS 15.0+ ARM64 Details
yara_python-4.5.4-cp311-cp311-macosx_14_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 14.0+ x86-64 Details
yara_python-4.5.4-cp311-cp311-macosx_14_0_arm64.whl CPython 3.11 CPython 3.11 macOS 14.0+ ARM64 Details
yara_python-4.5.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
yara_python-4.5.4-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
yara_python-4.5.4-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
yara_python-4.5.4-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
yara_python-4.5.4-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
yara_python-4.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
yara_python-4.5.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
yara_python-4.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
yara_python-4.5.4-cp310-cp310-macosx_15_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 15.0+ x86-64 Details
yara_python-4.5.4-cp310-cp310-macosx_15_0_arm64.whl CPython 3.10 CPython 3.10 macOS 15.0+ ARM64 Details
yara_python-4.5.4-cp310-cp310-macosx_14_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 14.0+ x86-64 Details
yara_python-4.5.4-cp310-cp310-macosx_14_0_arm64.whl CPython 3.10 CPython 3.10 macOS 14.0+ ARM64 Details
yara_python-4.5.4-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
yara_python-4.5.4-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
yara_python-4.5.4-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
yara_python-4.5.4-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
yara_python-4.5.4-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
yara_python-4.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
yara_python-4.5.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
yara_python-4.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
yara_python-4.5.4-cp39-cp39-macosx_15_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 15.0+ x86-64 Details
yara_python-4.5.4-cp39-cp39-macosx_15_0_arm64.whl CPython 3.9 CPython 3.9 macOS 15.0+ ARM64 Details
yara_python-4.5.4-cp39-cp39-macosx_14_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 14.0+ x86-64 Details
yara_python-4.5.4-cp39-cp39-macosx_14_0_arm64.whl CPython 3.9 CPython 3.9 macOS 14.0+ ARM64 Details

Total release size: 118.3 MB

Release files / yara_python-4.5.4.tar.gz

Download URL yara_python-4.5.4.tar.gz
Size 551.1 kB
Tags Source
SHA-256 checksum
How to use checksums
4c682170f3d5cb3a73aa1bd0dc9ab1c0957437b937b7a83ff6d7ffd366415b9c
BLAKE2b-256 checksum
How to use checksums
5138347d1fcde4edabd338d5872ca5759ccfb95ff1cf5207dafded981fd08c4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-win_amd64.whl

Download URL yara_python-4.5.4-cp313-cp313-win_amd64.whl
Size 1.8 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
5f1288448991d63c1f6351c9f6d112916b0177ceefaa27d1419427a6ff09f829
BLAKE2b-256 checksum
How to use checksums
cca040b0291c8b24d13daf0e26538c9f3a0d843c38c6446dd17f36335bdd5b5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-win32.whl

Download URL yara_python-4.5.4-cp313-cp313-win32.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
7707b144c8fcdb30c069ea57b94799cd7601f694ba01b696bbd1832721f37fd0
BLAKE2b-256 checksum
How to use checksums
ac37e8f2b9a2287070f39fa6a5afbcf1ed6762f60ab3b1fb08018732838ccc25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL yara_python-4.5.4-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cb0f0e7183165426b09e2b1235e70909e540ac18e2c6be96070dfe17d7db4d78
BLAKE2b-256 checksum
How to use checksums
0c289499649cb2cb42592c13ca6a15163e0cbf132c2974394de171aa5f8b49e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-musllinux_1_2_i686.whl

Download URL yara_python-4.5.4-cp313-cp313-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
973f0bc24470ac86b6009baf2800ad3eadfa4ab653b6546ba5c65e9239850f47
BLAKE2b-256 checksum
How to use checksums
9e76e89ec354731b1872462fa9cfdfc6d4751c272b3f43fa55523a8f0fcdd48a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL yara_python-4.5.4-cp313-cp313-musllinux_1_2_aarch64.whl
Size 2.9 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0b9de86fbe8a646c0644df9e1396d6941dc6ed0f89be2807e6c52ab39161fd9f
BLAKE2b-256 checksum
How to use checksums
9f5d2680831aa43d181a0cc023ba89132ff6f03a0532f220cde27bccd60d54e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yara_python-4.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9d9a58b7dc87411a2443d2e0382a111bd892aef9f6db2a1ebb4a9215eef0db71
BLAKE2b-256 checksum
How to use checksums
99ee21477d4c83e7f267ff7d61a518eb1b2d3eb7877031c5c07bd1dc0a54eb95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yara_python-4.5.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
473c52b53c39d5daedc1912bd8a82a1c88702a3e393688879d77f9ff5f396543
BLAKE2b-256 checksum
How to use checksums
708e3618d2473f1e97f3f91d13af5b1ed26381c74444f6cdebb849eb855b21ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yara_python-4.5.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
93f5f5aba88e2ed2aaebfbb697433a0c8020c6a6c6a711e900a29e9b512d5c3a
BLAKE2b-256 checksum
How to use checksums
879be21f534f33062f2e5f6dceec3cb4918f4923264b1609652adc0c83fe2bde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-macosx_15_0_x86_64.whl

Download URL yara_python-4.5.4-cp313-cp313-macosx_15_0_x86_64.whl
Size 209.4 kB
Tags CPython 3.13 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
ab5133a16e466db6fe9c1a08d1b171013507896175010fb85fc1b92da32e558c
BLAKE2b-256 checksum
How to use checksums
b62991d5911d6decdd8a96bb891cacd8922569480ff1d4b47e7947b5dfc7f1d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-macosx_15_0_arm64.whl

Download URL yara_python-4.5.4-cp313-cp313-macosx_15_0_arm64.whl
Size 2.5 MB
Tags CPython 3.13 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
4537f8499d166d22a54739f440fb306f65b0438be2c6c4ecb2352ecb5adb5f1c
BLAKE2b-256 checksum
How to use checksums
8b4c997be6898cdda211cb601ae2af40a2dbd89a48ba9889168ddd3993636e97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-macosx_14_0_x86_64.whl

Download URL yara_python-4.5.4-cp313-cp313-macosx_14_0_x86_64.whl
Size 209.0 kB
Tags CPython 3.13 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
94e290d5035be23059d0475bff3eac8228acd51145bf0cabe355b1ddabab742b
BLAKE2b-256 checksum
How to use checksums
4458dca36144c44b0613dbc39c70cc32ee0fc9db1ba9e5fa15f55657183f4229
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp313-cp313-macosx_14_0_arm64.whl

Download URL yara_python-4.5.4-cp313-cp313-macosx_14_0_arm64.whl
Size 2.5 MB
Tags CPython 3.13 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
fe8ad189843c729eae74be3b8447a4753fac2cebe705e5e2a7280badfcc7e3b4
BLAKE2b-256 checksum
How to use checksums
747f9bf4864fee85f86302d78d373c93793419c080222b5e18badadebb959263
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-win_amd64.whl

Download URL yara_python-4.5.4-cp312-cp312-win_amd64.whl
Size 1.8 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
bf14a8af06b2b980a889bdc3f9e8ccd6e703d2b3fa1c98da5fd3a1c3b551eb47
BLAKE2b-256 checksum
How to use checksums
ade1f6a72c155f3241360da890c218911d09bf63329eca9cfa1af64b1498339b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-win32.whl

Download URL yara_python-4.5.4-cp312-cp312-win32.whl
Size 1.4 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
d12e57101683e9270738a1bccf676747f93e86b5bc529e7a7fb7adf94f20bd77
BLAKE2b-256 checksum
How to use checksums
e65cedacbd11db432ac04a37c9e3a7c569986256d9659d1859c6f828268dfeed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL yara_python-4.5.4-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a3c7bc8cd0db5fb87ab579c755de83723030522f3c0cd5b3374044055a8ce6c6
BLAKE2b-256 checksum
How to use checksums
baccc6366d6d047f73594badd5444f6a32501e8b20ab1a7124837d305c08b42b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-musllinux_1_2_i686.whl

Download URL yara_python-4.5.4-cp312-cp312-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e6d8c2acaf33931338fdb78aba8a68462b0151d833b2eeda712db87713ac2abf
BLAKE2b-256 checksum
How to use checksums
533ac1d97172aa9672f381df78b4d3a9f60378f35431ff48f4a6c45037057e07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL yara_python-4.5.4-cp312-cp312-musllinux_1_2_aarch64.whl
Size 2.9 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
30fc7959394532c6e3f48faf59337f5da124f1630668258276b6cfa54e555a6e
BLAKE2b-256 checksum
How to use checksums
cd384b788b8fe15faca08e4a52c0b3dc8787953115ce1811e7bf9439914b6a5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yara_python-4.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e5eae935b05a9f8dc71df55a79c38f52abd93f8840310fe4e0d75fbd78284f24
BLAKE2b-256 checksum
How to use checksums
5206104c4daa22e34a7edb49051798126c37f6280d4f1ea7e8888b043314e72d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yara_python-4.5.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e7d0039d734705b123494acad7a00b67df171dd5b1c16ff7b18ff07578efd4cd
BLAKE2b-256 checksum
How to use checksums
4c5efe93d8609b8470148ebbae111f209c6f208bb834cee64046fce0532fcc70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yara_python-4.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d29d0e137e0d77dd110186369276e88381f784bdc45b5932a2fb3463e2a1b1c7
BLAKE2b-256 checksum
How to use checksums
df7de51ecb0db87094976904a52eb521e3faf9c18f7c889b9d5cf996ae3bb680
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-macosx_15_0_x86_64.whl

Download URL yara_python-4.5.4-cp312-cp312-macosx_15_0_x86_64.whl
Size 209.4 kB
Tags CPython 3.12 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
1f238f10d26e4701559f73a69b22e1e192a6fa20abdd76f57a7054566780aa89
BLAKE2b-256 checksum
How to use checksums
10ab96e2d06c909ba07941d6d303f23624e46751a54d6fd358069275f982168c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-macosx_15_0_arm64.whl

Download URL yara_python-4.5.4-cp312-cp312-macosx_15_0_arm64.whl
Size 2.5 MB
Tags CPython 3.12 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
92b233aae320ee9e59728ee23f9faf4a423ae407d4768b47c8f0e472a34dbae2
BLAKE2b-256 checksum
How to use checksums
5b0d1f2e054f7ddf9fd4c873fccf63a08f2647b205398e11ea75cf44c161e702
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-macosx_14_0_x86_64.whl

Download URL yara_python-4.5.4-cp312-cp312-macosx_14_0_x86_64.whl
Size 209.0 kB
Tags CPython 3.12 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
e1dedd149be61992781f085b592d169d1d813f9b5ffc7c8c2b74e429b443414c
BLAKE2b-256 checksum
How to use checksums
b1479227c56450be00db6a3a50ccf88ba201945ae14a34b80b3aae4607954159
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp312-cp312-macosx_14_0_arm64.whl

Download URL yara_python-4.5.4-cp312-cp312-macosx_14_0_arm64.whl
Size 2.5 MB
Tags CPython 3.12 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
ade234700c492bce0efda96c1cdcd763425016e40df4a8d30c4c4e6897be5ace
BLAKE2b-256 checksum
How to use checksums
5accdeaf10b6b31ee81842176affce79d57c3b6df50e894cf6cdbb1f0eb12af2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-win_amd64.whl

Download URL yara_python-4.5.4-cp311-cp311-win_amd64.whl
Size 1.8 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2a1bf52cb7b9178cc1ee2acd1697a0c8468af0c76aa1beffe22534bd4f62698b
BLAKE2b-256 checksum
How to use checksums
85ad23ed18900f6024d5c1de567768c12a53c5759ac90d08624c87c816cd7249
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-win32.whl

Download URL yara_python-4.5.4-cp311-cp311-win32.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
491c9de854e4a47dfbef7b3a38686c574459779915be19dcf4421b65847a57ce
BLAKE2b-256 checksum
How to use checksums
749de208dd3ffc38a163d18476d2f758c24de8ece67c9d59c654a6b5b400fd96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL yara_python-4.5.4-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fd84af5b6da3429236b61f3ad8760fdc739d0e1d6a08b8f3d90cd375e71594df
BLAKE2b-256 checksum
How to use checksums
8f28760d114cea3f160e3f862d747208a09150974a668a49c0cee23a943006c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-musllinux_1_2_i686.whl

Download URL yara_python-4.5.4-cp311-cp311-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3872b5f5575d6f5077f86e2b8bcdfe8688f859a50854334a4085399331167abc
BLAKE2b-256 checksum
How to use checksums
b92635d67095b0b000315545c59b2826166371d005f9815ca6c7c79a87e6c4cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL yara_python-4.5.4-cp311-cp311-musllinux_1_2_aarch64.whl
Size 2.9 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
57d80c7591bbc6d9e73934e0fa4cbbb35e3e733b2706c5fd6756edf495f42678
BLAKE2b-256 checksum
How to use checksums
35dbd6de595384e357366a8e7832876e5d9be56629e29e12d2a9325cc652e855
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yara_python-4.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1a1721b61ee4e625a143e8e5bf32fa6774797c06724c45067f3e8919a8e5f8f3
BLAKE2b-256 checksum
How to use checksums
ad1e8846d6c37e3cc5328ac90d888ac60599ed62f1ffcb7d68054ad60954df4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yara_python-4.5.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
a82c87038f0da2d90051bfd6449cf9a4b977a15ee8372f3512ce0a413ef822fd
BLAKE2b-256 checksum
How to use checksums
58fab159db2afedef12d5de32b6eb7c087a78c29dc51fc5111475bbd96759744
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yara_python-4.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
adcfac4b225e76ab6dcbeaf10101f0de2731fdbee51610dbc77b96e667e85a3a
BLAKE2b-256 checksum
How to use checksums
2a08e9396374b8d4348f71db28dabbcbde21ceb0e68c604a4de82ab4f1c286e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-macosx_15_0_x86_64.whl

Download URL yara_python-4.5.4-cp311-cp311-macosx_15_0_x86_64.whl
Size 209.3 kB
Tags CPython 3.11 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
0e762e6c5b47ddf30b0128ba723da46fcc2aa7959a252748497492cb452d1c84
BLAKE2b-256 checksum
How to use checksums
6997638f0f6920250dd4cc202f05d2b931c4aeb8ea916ae185cd15b9dacf9ae4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-macosx_15_0_arm64.whl

Download URL yara_python-4.5.4-cp311-cp311-macosx_15_0_arm64.whl
Size 2.5 MB
Tags CPython 3.11 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
9d9acf6f8135bcee03f47b1096ad69f4a2788abe37dd070aab6e9dd816742ecc
BLAKE2b-256 checksum
How to use checksums
05efff38abffe3c5126da0b4f31471bc6df2e38f4f532a65941a1a8092cddb4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-macosx_14_0_x86_64.whl

Download URL yara_python-4.5.4-cp311-cp311-macosx_14_0_x86_64.whl
Size 208.9 kB
Tags CPython 3.11 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
f79a27dbdafb79fc2dc03c7c3ba66751551e3e0b350ab69cc499870b78a6cb95
BLAKE2b-256 checksum
How to use checksums
3f1139c74fc2732b89d4a5a6ad272b2b60ec84b3aae53b120a9eccc742eec802
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp311-cp311-macosx_14_0_arm64.whl

Download URL yara_python-4.5.4-cp311-cp311-macosx_14_0_arm64.whl
Size 2.5 MB
Tags CPython 3.11 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
e3e2a5575d61adc2b4ff2007737590783a43d16386b061ac12e6e70a82e5d1de
BLAKE2b-256 checksum
How to use checksums
1717f0bc4a643d8c3afb485c34b70fe1d161f3fe0459361d2eb3561d23cc16e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-win_amd64.whl

Download URL yara_python-4.5.4-cp310-cp310-win_amd64.whl
Size 1.8 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
135c1097ea0445a323038acd509162675ce6d5e21f848aa856779632d48dec42
BLAKE2b-256 checksum
How to use checksums
be2168f211559de12eac0cb0fd8dbda279cadb0cc681cc4dc6394f9e06dfd4e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-win32.whl

Download URL yara_python-4.5.4-cp310-cp310-win32.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
a3866830f7f2d071f94cbce7c41d91444ac29e2cbbe279914abf518d57a2d41f
BLAKE2b-256 checksum
How to use checksums
f1b526cdb3d13b91625dc35a68aca2db8cb62d6c6d5e7b83d97981b350163dd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL yara_python-4.5.4-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e632daf9f38f8d4b433f08f798b07a45756e6c396e9e0ec54aac10045f6d241d
BLAKE2b-256 checksum
How to use checksums
5e765ec476aa39e81d4dd5e26071f6b2c763c4a7d7f628dff3370fe6053ba9ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-musllinux_1_2_i686.whl

Download URL yara_python-4.5.4-cp310-cp310-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
14f203bd9fb33ad591e046429560133127fa4a6201dac28c525fa7c6c7ca36a7
BLAKE2b-256 checksum
How to use checksums
33d2656319472612d821d224ef2a79dc5b8339332aa03e4586e5fd9ec0c45f4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL yara_python-4.5.4-cp310-cp310-musllinux_1_2_aarch64.whl
Size 2.9 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a83773b561727fc360f7a6874f7fac1409bc9c391134dc3e070f1c2515c0db98
BLAKE2b-256 checksum
How to use checksums
7a40461d76a5ec526679e58efca35383d3511cade8c8fc8868ad9f97bea21a1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yara_python-4.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7e20e1f69b6239fe4f4da97e9ff361d9be25d6f1d747589ea44b8a9ec412a12d
BLAKE2b-256 checksum
How to use checksums
c430aab92c73b02bdda575f9507108c9617708f8d6812647a0654bc44447fc20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yara_python-4.5.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
91276c90bb5e148e10050015fec8a1d4009a95eee9eb832d154f80355d0b4080
BLAKE2b-256 checksum
How to use checksums
0a3d0b0eadc8b39aa61cc04337d60b15fdebccaf662877a30604baadf760a4f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yara_python-4.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1b091f1bd6c5d2a9b5c0c682ba67ba31b87bb71b27876430775998b71c8e3f97
BLAKE2b-256 checksum
How to use checksums
be70a7bd03cbf1ac7e9fcfe292b3dfad181d7fb7eabf6d0ee493f7c5b2386238
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-macosx_15_0_x86_64.whl

Download URL yara_python-4.5.4-cp310-cp310-macosx_15_0_x86_64.whl
Size 209.3 kB
Tags CPython 3.10 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
bbc0c5a2ee67e6043e4c2622093ebfc7d2c173dc643dd089742aedbdea48d6a4
BLAKE2b-256 checksum
How to use checksums
0102c5f2953a7dfd3055fd67581fe740c46c7b678d3760faced24674080019c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-macosx_15_0_arm64.whl

Download URL yara_python-4.5.4-cp310-cp310-macosx_15_0_arm64.whl
Size 2.5 MB
Tags CPython 3.10 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
5eefa3b157cd5f4454a317907bab334036f61385324b70cb61dbc656c44168d5
BLAKE2b-256 checksum
How to use checksums
0209cbe63e02a7b2448cd84b78918c1d765ce17038f1e7f0a6ae25e942bdca22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-macosx_14_0_x86_64.whl

Download URL yara_python-4.5.4-cp310-cp310-macosx_14_0_x86_64.whl
Size 208.9 kB
Tags CPython 3.10 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
c785fd16475f2a3191cd4fae0cd608b1ba6271f495ec86fa26a3c5ac53f5f2e1
BLAKE2b-256 checksum
How to use checksums
1301c7253b9cbeb9058deff46e332d98d8a76ecdc07235a41f1a3050348b035e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp310-cp310-macosx_14_0_arm64.whl

Download URL yara_python-4.5.4-cp310-cp310-macosx_14_0_arm64.whl
Size 2.5 MB
Tags CPython 3.10 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
721d341bd2013fbada4df5aba0eb79a9e4e21c4b86441f7f111ab8c31671f125
BLAKE2b-256 checksum
How to use checksums
517f5767870ecdde75b7991f67caa5d78d692d30239529b66262a33bb6ab12e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-win_amd64.whl

Download URL yara_python-4.5.4-cp39-cp39-win_amd64.whl
Size 1.8 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
9addd1d6fe9d3b1efe40c7a37fa5d88fe6cd7e22c7e454617beb382c9c74b11b
BLAKE2b-256 checksum
How to use checksums
7d3a2c45921d468526a14d7f368054a76534eee78ed0550cfca609a35e162c42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-win32.whl

Download URL yara_python-4.5.4-cp39-cp39-win32.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
e6eba7d4387f8123dd69852ba6776799150c4019fcb3e1212a3b053d42e151ab
BLAKE2b-256 checksum
How to use checksums
d1afeb8b7f65b90e6cbbb6c95f9efe129dae25c0d71e7c5273601de94b09629d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL yara_python-4.5.4-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.6 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ebacf0b3325b3fb6f15bc3526f39f39c3576bafa4857493cc90afd2651ec8d36
BLAKE2b-256 checksum
How to use checksums
4737b92c42e60d119c03529a70947ef08d8909232b390e9a48113df49f1323bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-musllinux_1_2_i686.whl

Download URL yara_python-4.5.4-cp39-cp39-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
da826f12c6fa459c6b2f9e7dff3a57416ac3a6536264f7a10d1ff839d4bc943f
BLAKE2b-256 checksum
How to use checksums
3a587f7cfc7862939ab1c26a827e246534de3c8c1e7b9a2e0ba683f352d5e745
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL yara_python-4.5.4-cp39-cp39-musllinux_1_2_aarch64.whl
Size 2.9 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
99f8d1145c11f61340fcd19fd6f3f3ef6306910829f4218daece45e831ceb54e
BLAKE2b-256 checksum
How to use checksums
0f4c90f092be7568fa310e92f43dc9946f0fe50d7d8623132cb89b286d7e9d23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yara_python-4.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5f901ec61db76a326f77882c8000139b29f218a7c6b8dd997195bab265602345
BLAKE2b-256 checksum
How to use checksums
b49baa7fb94a7e0993fea63d39652ae46b6a9c13b55dacecda3a6102bd39f4d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yara_python-4.5.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
bdbb62003cced7739d5c98c5af7a08c819baedf12e09276b2bbf0f3cb47828af
BLAKE2b-256 checksum
How to use checksums
f09391e7935c23bc631213a5d8aa5a249a96e674ce35d26f5621848e27c9d45a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yara_python-4.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.2 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9d5fcf99187cb6ec0a27c755aec22774a1ea578fdc2a5734f484c601de4ad6c0
BLAKE2b-256 checksum
How to use checksums
2981229aaac00cf7c8ac0ebcc1916f5d167276d596264f43e6e75d99cdfb4977
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-macosx_15_0_x86_64.whl

Download URL yara_python-4.5.4-cp39-cp39-macosx_15_0_x86_64.whl
Size 209.3 kB
Tags CPython 3.9 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
8caad9de64dc4fc9614f331a04ea220d57aea3fbf997f3e23a298ee67cf4a69c
BLAKE2b-256 checksum
How to use checksums
195b4b54ca3c86877b3a99d651f7e50f5a0b1c2d77d0a146089b50799d20719e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-macosx_15_0_arm64.whl

Download URL yara_python-4.5.4-cp39-cp39-macosx_15_0_arm64.whl
Size 2.5 MB
Tags CPython 3.9 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
9e6f0ca64cf9b0125be8fe8b821ba7e0f80427bcee136f83914dff0d81b4f27a
BLAKE2b-256 checksum
How to use checksums
fff49748263ddafe1b2a57b93b185b2eb1905074c2ea9ef9c8b863bcd14d55ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-macosx_14_0_x86_64.whl

Download URL yara_python-4.5.4-cp39-cp39-macosx_14_0_x86_64.whl
Size 208.9 kB
Tags CPython 3.9 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
9c77711a4e469ea97bdd16e85b5ab0720d6a481862a540ea7216897a10e93d19
BLAKE2b-256 checksum
How to use checksums
a03ffefb08f6bd3e9de4f0fc61692e6a90f34876a2e7de4df8645048e810748e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release files / yara_python-4.5.4-cp39-cp39-macosx_14_0_arm64.whl

Download URL yara_python-4.5.4-cp39-cp39-macosx_14_0_arm64.whl
Size 2.5 MB
Tags CPython 3.9 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
7205c36a6798251925e4c1763eba0737fec7a95360df8aaa4e74e2f2f6b5cdcf
BLAKE2b-256 checksum
How to use checksums
a240595d8c5a37c2e3cbd3b3b61e09e335cf6fd92b2a33d01f104a467ca21d8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.12.9

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 27, 2025.

Transparency log

Release history Release notifications | RSS feed

This release

4.5.4 This release

61 release files

4.5.1

80 release files

4.5.0

80 release files

4.4.0

79 release files

4.3.1

11 release files

4.3.0

9 release files

4.2.0

13 release files

4.1.3

11 release files

4.1.2

11 release files

4.1.0

11 release files

4.0.5

9 release files

4.0.4

9 release files

4.0.3

9 release files

4.0.2

9 release files

4.0.1

9 release files

4.0.0

11 release files

3.9.0

11 release files

3.8.1

11 release files

3.7.0

11 release files

3.6.2

11 release files

3.6.0

11 release files

3.5.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page