python-flirt


Namepython-flirt JSON
Version 0.8.10 PyPI version JSON
download
home_pagehttps://github.com/williballenthin/lancelot/tree/master/pyflirt
SummaryA Python library for parsing, compiling, and matching Fast Library Identification and Recognition Technology (FLIRT) signatures.
upload_time2024-03-10 21:28:06
maintainer
docs_urlNone
authorWilliam Ballenthin <william.ballenthin@fireeye.com>
requires_python>=3.8
licenseApache-2.0
keywords flirt
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # python-flirt

A Python library for parsing, compiling, and matching [Fast Library Identification and Recognition Technology (FLIRT)](https://hex-rays.com/products/ida/tech/flirt/in_depth/) signatures. These signatures are typically used by the Hex-Rays IDA Pro tool; this library is the result of reverse engineering the matching engine and reimplementing parsers and matchers. You can use this library to match FLIRT signatures against byte sequences to recognize statically-linked code without IDA Pro.

These are the [Python bindings](https://github.com/williballenthin/lancelot/tree/master/pyflirt) to
[lancelot-flirt](https://github.com/williballenthin/lancelot/tree/master/flirt) generated via
[PyO3](https://github.com/PyO3/pyo3) for Python 3.x that are available on PyPI as
[python-flirt](https://pypi.org/project/python-flirt/).

## Usage

Add `python-flirt` to your Python project dependencies (such as via `setup.py`); for example, like this:

```py
setuptools.setup(
  ...
  install_requires=[
    "python-flirt~=0.6.3",
  ]
  ...
)
```

Here's a sample example that parses a FLIRT signature from a string and matches against a byte sequence:

```python
import flirt

BUF = bytes([
    # utcutil.dll
    #  MD5 abc9ea116498feb8f1de45f60d595af6
    #  SHA-1 2f1ba350237b74c454caf816b7410490f5994c59
    #  SHA-256 7607897638e9dae406f0840dbae68e879c3bb2f08da350c6734e4e2ef8d61ac2
    # __EH_prolog3_catch_align

    0x51,0x8b,0x4c,0x24,0x0c,0x89,0x5c,0x24,0x0c,0x8d,0x5c,0x24,0x0c,0x50,0x8d,0x44,
    0x24,0x08,0xf7,0xd9,0x23,0xc1,0x8d,0x60,0xf8,0x8b,0x43,0xf0,0x89,0x04,0x24,0x8b,
    0x43,0xf8,0x50,0x8b,0x43,0xfc,0x8b,0x4b,0xf4,0x89,0x6c,0x24,0x0c,0x8d,0x6c,0x24,
    0x0c,0xc7,0x44,0x24,0x08,0xff,0xff,0xff,0xff,0x51,0x53,0x2b,0xe0,0x56,0x57,0xa1,
    0x70,0x14,0x01,0x10,0x33,0xc5,0x50,0x89,0x65,0xf0,0x8b,0x43,0x04,0x89,0x45,0x04,
    0xff,0x75,0xf4,0x64,0xa1,0x00,0x00,0x00,0x00,0x89,0x45,0xf4,0x8d,0x45,0xf4,0x64,
    0xa3,0x00,0x00,0x00,0x00,0xf2,0xc3
])

PAT = """\
518B4C240C895C240C8D5C240C508D442408F7D923C18D60F88B43F08904248B 21 B4FE 006E :0000 __EH_prolog3_GS_align ^0041 ___security_cookie ........33C5508941FC8B4DF0895DF08B4304894504FF75F464A1000000008945F48D45F464A300000000F2C3
518B4C240C895C240C8D5C240C508D442408F7D923C18D60F88B43F08904248B 1F E4CF 0063 :0000 __EH_prolog3_align ^003F ___security_cookie ........33C5508B4304894504FF75F464A1000000008945F48D45F464A300000000F2C3
518B4C240C895C240C8D5C240C508D442408F7D923C18D60F88B43F08904248B 22 E4CE 006F :0000 __EH_prolog3_catch_GS_align ^0042 ___security_cookie ........33C5508941FC8B4DF08965F08B4304894504FF75F464A1000000008945F48D45F464A300000000F2C3
518B4C240C895C240C8D5C240C508D442408F7D923C18D60F88B43F08904248B 20 6562 0067 :0000 __EH_prolog3_catch_align ^0040 ___security_cookie ........33C5508965F08B4304894504FF75F464A1000000008945F48D45F464A300000000F2C3
---
"""

# parse signature file content into a list of signatures.
sigs = flirt.parse_pat(PAT)

# compile signatures into a matching engine instance.
# separate from above so that you can load multiple files.
matcher = flirt.compile(sigs)

# match the signatures against the given buffer, starting at offset 0.
# results in a list of rule instances with a field `name` tuple like:
#
#     ("__EH_prolog3_catch_align", "public", 0)
for m in matcher.match(BUF):
    print(f"match: {m.names[0][0]}")
```

expected output:

```
match: __EH_prolog3_catch_align
```

Note, the above logic does not handle "references" that are describe below;
however, it does give a sense for the required setup to parse and compile rules.

### Usage: signature file formats

This library supports loading signatures from both the .sig and .pat file formats:

  - .sig files are the compiled signatures usually fed into IDA Pro for matching. They are structurally compressed (and uncommonly compressed with a zlib-like algorithm, not supported here) and have a raw binary representation.

  - .pat files are the ASCII-encoded text files generated by `sigmake.exe`. These are typically compiled into .sig files for use in IDA Pro; however, since `lancelot-flirt` compiles the rules into its own intermediate representation, you can use them directly. Notably, this library supports a slight extension to enable a file header with lines prefixed with `#`, which enables you to embed a acknowledgement/copyright/license.

With knowledge of the above, you may consider also supporting `.pat.gz` signature files in your client application, as this enables a great compression ratio while preserving the file license header and human-inspectability.

### Usage: matching references

To differentiate functions with a shared byte-wise representation, such as wrapper functions that dispatch other addresses, a FLIRT engine matches recursively using "references".
This feature is used heavily to match common routines provided by modern C/C++ runtime libraries.

Unfortunately, client code must coordinate the recursive invocation of FLIRT matching.

Therefore, when integrating this library into a client application, you should review the matching logic of `lancelot::core::analysis::flirt` [here](https://github.com/williballenthin/lancelot/blob/master/core/src/analysis/flirt.rs).
Essentially, you'll need to inspect the "references" found within a function and recursively FLIRT match those routines to resolve the best matching signature.
There's also a matching implementation in Python for vivisect [here](https://github.com/williballenthin/viv-utils/blob/master/viv_utils/flirt.py) that relies on more thorough code flow recovery.


### Usage: example tool

The tool [capa](https://github.com/fireeye/capa) uses `python-flirt` to recognize statically-linked functions within PE files.
You can use this code as an example for how to integrate this library with your client code.

## License

This project is licensed under the Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0).
You should not redistribute FLIRT signatures distributed by Hex-Rays; however, there are open source signatures available here:

  - https://github.com/fireeye/siglib/
  - https://github.com/Maktm/FLIRTDB
  - https://github.com/rizinorg/sigdb


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/williballenthin/lancelot/tree/master/pyflirt",
    "name": "python-flirt",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Willi Ballenthin <william.ballenthin@mandiant.com>",
    "keywords": "flirt",
    "author": "William Ballenthin <william.ballenthin@fireeye.com>",
    "author_email": "Willi Ballenthin <william.ballenthin@mandiant.com>",
    "download_url": "",
    "platform": null,
    "description": "# python-flirt\n\nA Python library for parsing, compiling, and matching [Fast Library Identification and Recognition Technology (FLIRT)](https://hex-rays.com/products/ida/tech/flirt/in_depth/) signatures. These signatures are typically used by the Hex-Rays IDA Pro tool; this library is the result of reverse engineering the matching engine and reimplementing parsers and matchers. You can use this library to match FLIRT signatures against byte sequences to recognize statically-linked code without IDA Pro.\n\nThese are the [Python bindings](https://github.com/williballenthin/lancelot/tree/master/pyflirt) to\n[lancelot-flirt](https://github.com/williballenthin/lancelot/tree/master/flirt) generated via\n[PyO3](https://github.com/PyO3/pyo3) for Python 3.x that are available on PyPI as\n[python-flirt](https://pypi.org/project/python-flirt/).\n\n## Usage\n\nAdd `python-flirt` to your Python project dependencies (such as via `setup.py`); for example, like this:\n\n```py\nsetuptools.setup(\n  ...\n  install_requires=[\n    \"python-flirt~=0.6.3\",\n  ]\n  ...\n)\n```\n\nHere's a sample example that parses a FLIRT signature from a string and matches against a byte sequence:\n\n```python\nimport flirt\n\nBUF = bytes([\n    # utcutil.dll\n    #  MD5 abc9ea116498feb8f1de45f60d595af6\n    #  SHA-1 2f1ba350237b74c454caf816b7410490f5994c59\n    #  SHA-256 7607897638e9dae406f0840dbae68e879c3bb2f08da350c6734e4e2ef8d61ac2\n    # __EH_prolog3_catch_align\n\n    0x51,0x8b,0x4c,0x24,0x0c,0x89,0x5c,0x24,0x0c,0x8d,0x5c,0x24,0x0c,0x50,0x8d,0x44,\n    0x24,0x08,0xf7,0xd9,0x23,0xc1,0x8d,0x60,0xf8,0x8b,0x43,0xf0,0x89,0x04,0x24,0x8b,\n    0x43,0xf8,0x50,0x8b,0x43,0xfc,0x8b,0x4b,0xf4,0x89,0x6c,0x24,0x0c,0x8d,0x6c,0x24,\n    0x0c,0xc7,0x44,0x24,0x08,0xff,0xff,0xff,0xff,0x51,0x53,0x2b,0xe0,0x56,0x57,0xa1,\n    0x70,0x14,0x01,0x10,0x33,0xc5,0x50,0x89,0x65,0xf0,0x8b,0x43,0x04,0x89,0x45,0x04,\n    0xff,0x75,0xf4,0x64,0xa1,0x00,0x00,0x00,0x00,0x89,0x45,0xf4,0x8d,0x45,0xf4,0x64,\n    0xa3,0x00,0x00,0x00,0x00,0xf2,0xc3\n])\n\nPAT = \"\"\"\\\n518B4C240C895C240C8D5C240C508D442408F7D923C18D60F88B43F08904248B 21 B4FE 006E :0000 __EH_prolog3_GS_align ^0041 ___security_cookie ........33C5508941FC8B4DF0895DF08B4304894504FF75F464A1000000008945F48D45F464A300000000F2C3\n518B4C240C895C240C8D5C240C508D442408F7D923C18D60F88B43F08904248B 1F E4CF 0063 :0000 __EH_prolog3_align ^003F ___security_cookie ........33C5508B4304894504FF75F464A1000000008945F48D45F464A300000000F2C3\n518B4C240C895C240C8D5C240C508D442408F7D923C18D60F88B43F08904248B 22 E4CE 006F :0000 __EH_prolog3_catch_GS_align ^0042 ___security_cookie ........33C5508941FC8B4DF08965F08B4304894504FF75F464A1000000008945F48D45F464A300000000F2C3\n518B4C240C895C240C8D5C240C508D442408F7D923C18D60F88B43F08904248B 20 6562 0067 :0000 __EH_prolog3_catch_align ^0040 ___security_cookie ........33C5508965F08B4304894504FF75F464A1000000008945F48D45F464A300000000F2C3\n---\n\"\"\"\n\n# parse signature file content into a list of signatures.\nsigs = flirt.parse_pat(PAT)\n\n# compile signatures into a matching engine instance.\n# separate from above so that you can load multiple files.\nmatcher = flirt.compile(sigs)\n\n# match the signatures against the given buffer, starting at offset 0.\n# results in a list of rule instances with a field `name` tuple like:\n#\n#     (\"__EH_prolog3_catch_align\", \"public\", 0)\nfor m in matcher.match(BUF):\n    print(f\"match: {m.names[0][0]}\")\n```\n\nexpected output:\n\n```\nmatch: __EH_prolog3_catch_align\n```\n\nNote, the above logic does not handle \"references\" that are describe below;\nhowever, it does give a sense for the required setup to parse and compile rules.\n\n### Usage: signature file formats\n\nThis library supports loading signatures from both the .sig and .pat file formats:\n\n  - .sig files are the compiled signatures usually fed into IDA Pro for matching. They are structurally compressed (and uncommonly compressed with a zlib-like algorithm, not supported here) and have a raw binary representation.\n\n  - .pat files are the ASCII-encoded text files generated by `sigmake.exe`. These are typically compiled into .sig files for use in IDA Pro; however, since `lancelot-flirt` compiles the rules into its own intermediate representation, you can use them directly. Notably, this library supports a slight extension to enable a file header with lines prefixed with `#`, which enables you to embed a acknowledgement/copyright/license.\n\nWith knowledge of the above, you may consider also supporting `.pat.gz` signature files in your client application, as this enables a great compression ratio while preserving the file license header and human-inspectability.\n\n### Usage: matching references\n\nTo differentiate functions with a shared byte-wise representation, such as wrapper functions that dispatch other addresses, a FLIRT engine matches recursively using \"references\".\nThis feature is used heavily to match common routines provided by modern C/C++ runtime libraries.\n\nUnfortunately, client code must coordinate the recursive invocation of FLIRT matching.\n\nTherefore, when integrating this library into a client application, you should review the matching logic of `lancelot::core::analysis::flirt` [here](https://github.com/williballenthin/lancelot/blob/master/core/src/analysis/flirt.rs).\nEssentially, you'll need to inspect the \"references\" found within a function and recursively FLIRT match those routines to resolve the best matching signature.\nThere's also a matching implementation in Python for vivisect [here](https://github.com/williballenthin/viv-utils/blob/master/viv_utils/flirt.py) that relies on more thorough code flow recovery.\n\n\n### Usage: example tool\n\nThe tool [capa](https://github.com/fireeye/capa) uses `python-flirt` to recognize statically-linked functions within PE files.\nYou can use this code as an example for how to integrate this library with your client code.\n\n## License\n\nThis project is licensed under the Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0).\nYou should not redistribute FLIRT signatures distributed by Hex-Rays; however, there are open source signatures available here:\n\n  - https://github.com/fireeye/siglib/\n  - https://github.com/Maktm/FLIRTDB\n  - https://github.com/rizinorg/sigdb\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A Python library for parsing, compiling, and matching Fast Library Identification and Recognition Technology (FLIRT) signatures.",
    "version": "0.8.10",
    "project_urls": {
        "Homepage": "https://github.com/williballenthin/lancelot/tree/master/pyflirt",
        "repository": "https://github.com/williballenthin/lancelot/tree/master/pyflirt"
    },
    "split_keywords": [
        "flirt"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c2de73cc7ac51e1c0de4166c0002eb04cfd8d32240fc16a370f8a2ebda57189",
                "md5": "9ad3b788f59c482ccafb06c9388d9e3d",
                "sha256": "6c3185790d3f3749ea2cb984f10259d533ad54036b5878cedcd4149ce3122d5e"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "9ad3b788f59c482ccafb06c9388d9e3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 524650,
            "upload_time": "2024-03-10T21:28:06",
            "upload_time_iso_8601": "2024-03-10T21:28:06.660412Z",
            "url": "https://files.pythonhosted.org/packages/0c/2d/e73cc7ac51e1c0de4166c0002eb04cfd8d32240fc16a370f8a2ebda57189/python_flirt-0.8.10-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb9668ebdb5289b55b10cd0d97592c956e56fd3b0f333e84fe3827895b14caec",
                "md5": "f0cf6b5339d569c29dcc12536e7a49ed",
                "sha256": "0db5c5d9a8920cdb32fd1dbff8fe00e99d32fd9d478b15317093e23942c0aef6"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0cf6b5339d569c29dcc12536e7a49ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 272341,
            "upload_time": "2024-03-10T21:28:08",
            "upload_time_iso_8601": "2024-03-10T21:28:08.111390Z",
            "url": "https://files.pythonhosted.org/packages/bb/96/68ebdb5289b55b10cd0d97592c956e56fd3b0f333e84fe3827895b14caec/python_flirt-0.8.10-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9624ab83da74788763595f7bc90fc3594a9dd28a6cfeab74a267a012b1ac9730",
                "md5": "5b9bae8087c9037de677735d66769127",
                "sha256": "9b5a285ea80a63d68af56fb406de5ab263ab1b6c988def94c76ebe91d1e9eeec"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "5b9bae8087c9037de677735d66769127",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 299150,
            "upload_time": "2024-03-10T21:28:10",
            "upload_time_iso_8601": "2024-03-10T21:28:10.279494Z",
            "url": "https://files.pythonhosted.org/packages/96/24/ab83da74788763595f7bc90fc3594a9dd28a6cfeab74a267a012b1ac9730/python_flirt-0.8.10-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdacca8cf5260f2993a5e85dcdd8e07419ec531cff22662a392ca258971268ce",
                "md5": "b375d22a4dc98ffd3ab542a8cd7af87e",
                "sha256": "5d3172c9ac87d36add8eb15d42f33636d408516c7e4834dd572836ef5f4e9e26"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b375d22a4dc98ffd3ab542a8cd7af87e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 274802,
            "upload_time": "2024-03-10T21:28:11",
            "upload_time_iso_8601": "2024-03-10T21:28:11.555936Z",
            "url": "https://files.pythonhosted.org/packages/fd/ac/ca8cf5260f2993a5e85dcdd8e07419ec531cff22662a392ca258971268ce/python_flirt-0.8.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64ab729d6e0beefa21642184db3d9b85b7ee7e7be5b3217831e95b4618598797",
                "md5": "4c87cc90bb0411bbd7649a0ed9324fca",
                "sha256": "cc1b020e54f119916f7cdac4a24f692643915af83d51e2f73f35472da16213ac"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4c87cc90bb0411bbd7649a0ed9324fca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 277798,
            "upload_time": "2024-03-10T21:28:13",
            "upload_time_iso_8601": "2024-03-10T21:28:13.267462Z",
            "url": "https://files.pythonhosted.org/packages/64/ab/729d6e0beefa21642184db3d9b85b7ee7e7be5b3217831e95b4618598797/python_flirt-0.8.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9598fba338750754a2ac3f101f177ed8fef8569336c6855174af30f9d7c7d2c",
                "md5": "5418db578b23521ad8e65a9ad7e99afe",
                "sha256": "b17592ac73c49515f4c7ae4945060dea18685bdfb320f0bbcd0f613d11492dbb"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5418db578b23521ad8e65a9ad7e99afe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 288930,
            "upload_time": "2024-03-10T21:28:14",
            "upload_time_iso_8601": "2024-03-10T21:28:14.702404Z",
            "url": "https://files.pythonhosted.org/packages/c9/59/8fba338750754a2ac3f101f177ed8fef8569336c6855174af30f9d7c7d2c/python_flirt-0.8.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56ec5344a4ecffb14f4221bcea1ef576136d835017fe7971fa9b2fec5eae4da6",
                "md5": "41c0a8a1d4cb783b8dc4cca6ed0b55f6",
                "sha256": "b927124c042863d7d488c3b64796c6c690252f1b4f9cbe1135681c6918e53d99"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "41c0a8a1d4cb783b8dc4cca6ed0b55f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 196387,
            "upload_time": "2024-03-10T21:28:16",
            "upload_time_iso_8601": "2024-03-10T21:28:16.525995Z",
            "url": "https://files.pythonhosted.org/packages/56/ec/5344a4ecffb14f4221bcea1ef576136d835017fe7971fa9b2fec5eae4da6/python_flirt-0.8.10-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a878ceed2fa888ac2d903c7886f9ad516a3cee3c81c700cc20b16ed6b33adaee",
                "md5": "f4dcf638fb56d1fa7f531ce06c52a5db",
                "sha256": "2d8ab2d51b26502415a7a3cd82eb825252be508d7f32d870440fd1096b444232"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f4dcf638fb56d1fa7f531ce06c52a5db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 204557,
            "upload_time": "2024-03-10T21:28:18",
            "upload_time_iso_8601": "2024-03-10T21:28:18.202271Z",
            "url": "https://files.pythonhosted.org/packages/a8/78/ceed2fa888ac2d903c7886f9ad516a3cee3c81c700cc20b16ed6b33adaee/python_flirt-0.8.10-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20d951d6d3ffec0e8638d619b29e903ca9de3dfcd79567cf3848c4aa1ac44bb4",
                "md5": "8cba2f4014ea50433b99637a26a37b1a",
                "sha256": "166d27e034118562aa95d7b403a5b111d5ba8469fe14dd4077b081bee7266d00"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "8cba2f4014ea50433b99637a26a37b1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 524650,
            "upload_time": "2024-03-10T21:28:19",
            "upload_time_iso_8601": "2024-03-10T21:28:19.436387Z",
            "url": "https://files.pythonhosted.org/packages/20/d9/51d6d3ffec0e8638d619b29e903ca9de3dfcd79567cf3848c4aa1ac44bb4/python_flirt-0.8.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d2087ca93410bdac426b5b908ec497695b16aef0ca54d61056a85bbb2e93698",
                "md5": "c181bbd8e284a5393cac81a89d6bce62",
                "sha256": "354814081fcba58f5448ef8bd3b3a7814cce2cb1ed7ad9c1d572447bc85f9e7a"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c181bbd8e284a5393cac81a89d6bce62",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 272341,
            "upload_time": "2024-03-10T21:28:20",
            "upload_time_iso_8601": "2024-03-10T21:28:20.823582Z",
            "url": "https://files.pythonhosted.org/packages/2d/20/87ca93410bdac426b5b908ec497695b16aef0ca54d61056a85bbb2e93698/python_flirt-0.8.10-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abdbb69e0b4e944aad9ba46ce2f6b3c3fc9d7d8f6d2d11b92483676f1cc4d6c9",
                "md5": "db190d58afb4524a40413764a69c04e8",
                "sha256": "055412a990b471acc2ce16d9372e4a1af379a81bc54bedd864d35f5f63c8b010"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "db190d58afb4524a40413764a69c04e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 299149,
            "upload_time": "2024-03-10T21:28:21",
            "upload_time_iso_8601": "2024-03-10T21:28:21.955284Z",
            "url": "https://files.pythonhosted.org/packages/ab/db/b69e0b4e944aad9ba46ce2f6b3c3fc9d7d8f6d2d11b92483676f1cc4d6c9/python_flirt-0.8.10-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62f11dff56f70daf98d2391aa0fa42fc360ddc091a490c904641a260948cb15d",
                "md5": "9e218c45c276c2218d5ec59e22c191f6",
                "sha256": "8da95d051a6bbcebb3043541adfb3dd635b792a837e8ac829c017549ba00d977"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e218c45c276c2218d5ec59e22c191f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 274800,
            "upload_time": "2024-03-10T21:28:23",
            "upload_time_iso_8601": "2024-03-10T21:28:23.152195Z",
            "url": "https://files.pythonhosted.org/packages/62/f1/1dff56f70daf98d2391aa0fa42fc360ddc091a490c904641a260948cb15d/python_flirt-0.8.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca548a702a5106938ae85c0ff5fd6140788c834ae6d7e44e0897307fd3b2c358",
                "md5": "3785effd03f6a4a4d045116e38fce8f0",
                "sha256": "c14ff6b3a9dd1d0629d247688e8e69d348dab9df2f654b0f2424343f66446ce5"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3785effd03f6a4a4d045116e38fce8f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 277798,
            "upload_time": "2024-03-10T21:28:24",
            "upload_time_iso_8601": "2024-03-10T21:28:24.959445Z",
            "url": "https://files.pythonhosted.org/packages/ca/54/8a702a5106938ae85c0ff5fd6140788c834ae6d7e44e0897307fd3b2c358/python_flirt-0.8.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f9173a150aab6292918e7dd8792c803ba32627957026b1497c5de713d0fe8ec",
                "md5": "10c5e9e520212c35b9531e412aa14cf7",
                "sha256": "2547d34b146ab18bf64c1eceb46be0643d903bbf396aabe79d07ed8475893cea"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10c5e9e520212c35b9531e412aa14cf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 288928,
            "upload_time": "2024-03-10T21:28:26",
            "upload_time_iso_8601": "2024-03-10T21:28:26.195624Z",
            "url": "https://files.pythonhosted.org/packages/1f/91/73a150aab6292918e7dd8792c803ba32627957026b1497c5de713d0fe8ec/python_flirt-0.8.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3aa0661f90a559e8cf610a1723b98823f7b52468f75b604309a7d4aae8d6e7fb",
                "md5": "8397080d9eb236bfe414d5cb8ae5ea84",
                "sha256": "a59b5c26a12038484ece6bb66eb2e45c286fe476f5a4bed5e8f4e5dabba63991"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "8397080d9eb236bfe414d5cb8ae5ea84",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 196388,
            "upload_time": "2024-03-10T21:28:27",
            "upload_time_iso_8601": "2024-03-10T21:28:27.560586Z",
            "url": "https://files.pythonhosted.org/packages/3a/a0/661f90a559e8cf610a1723b98823f7b52468f75b604309a7d4aae8d6e7fb/python_flirt-0.8.10-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10d60ef960fabce84a82b116aa72193f499d7a87022ecc5663cb526de124e185",
                "md5": "aee2ca29f6eb78ca9ea7d73958c57778",
                "sha256": "4fb8d48f304ef6394dee74a5d6b1e31f9b91bc046305ea6ee1f26d8e28229cb4"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aee2ca29f6eb78ca9ea7d73958c57778",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 204567,
            "upload_time": "2024-03-10T21:28:29",
            "upload_time_iso_8601": "2024-03-10T21:28:29.266508Z",
            "url": "https://files.pythonhosted.org/packages/10/d6/0ef960fabce84a82b116aa72193f499d7a87022ecc5663cb526de124e185/python_flirt-0.8.10-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e1f3e068e4edba7d0f4893f0e03acfe538a1c0b1a3ab4e463ee7ddb33544238",
                "md5": "247fc5fe17202ab265472a072368b524",
                "sha256": "a19cbf0a2c87decb8d861b74a499eb4b3fd6fc65ac73227d6330641a5d070c6c"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "247fc5fe17202ab265472a072368b524",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 524649,
            "upload_time": "2024-03-10T21:28:30",
            "upload_time_iso_8601": "2024-03-10T21:28:30.496899Z",
            "url": "https://files.pythonhosted.org/packages/2e/1f/3e068e4edba7d0f4893f0e03acfe538a1c0b1a3ab4e463ee7ddb33544238/python_flirt-0.8.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6379f98acd5401ccc4277eaae9f5b0327014e4702ba1a99c0783b20c1819217f",
                "md5": "f35def70ec967421d5704c2263123cbc",
                "sha256": "2b0e285a582576c2ddba9af17a97fbfdd52187fbf098a797df9e00034000796d"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f35def70ec967421d5704c2263123cbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 272340,
            "upload_time": "2024-03-10T21:28:32",
            "upload_time_iso_8601": "2024-03-10T21:28:32.360350Z",
            "url": "https://files.pythonhosted.org/packages/63/79/f98acd5401ccc4277eaae9f5b0327014e4702ba1a99c0783b20c1819217f/python_flirt-0.8.10-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfb8e65f86a2557e3d9a647082445a7310acdd68d358f9efbdfcc7322f181323",
                "md5": "72b25e521480081c5a6227c8ad4cc9b3",
                "sha256": "b9bb40cb897458ac0d9af121e35aa28ea33ea1a9eadf33bbf79ff84a81f2eaf4"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "72b25e521480081c5a6227c8ad4cc9b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 299148,
            "upload_time": "2024-03-10T21:28:33",
            "upload_time_iso_8601": "2024-03-10T21:28:33.728854Z",
            "url": "https://files.pythonhosted.org/packages/bf/b8/e65f86a2557e3d9a647082445a7310acdd68d358f9efbdfcc7322f181323/python_flirt-0.8.10-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c96b3723d2c532786f85a7f4b9a2989f5d2635cd5380bad020228d64313aeed1",
                "md5": "f0c0e31a08bccc28149a5425beba3e44",
                "sha256": "30960a682673bb25ae2bd8ba7c754e9e18faa4427fe75fe29d5fc341fa974346"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f0c0e31a08bccc28149a5425beba3e44",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 274801,
            "upload_time": "2024-03-10T21:28:34",
            "upload_time_iso_8601": "2024-03-10T21:28:34.934887Z",
            "url": "https://files.pythonhosted.org/packages/c9/6b/3723d2c532786f85a7f4b9a2989f5d2635cd5380bad020228d64313aeed1/python_flirt-0.8.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "961b216e25acc082add6e9fb539939aaa240c8c8e5bb17e5c77bfe10fac3aa9d",
                "md5": "3ba8d7d1afe5b1ef7e1fefd9de399090",
                "sha256": "4bfe6e2b8eb0e587476fab7db21a15fb40e96e944f404e872c906d89450a52bc"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3ba8d7d1afe5b1ef7e1fefd9de399090",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 277799,
            "upload_time": "2024-03-10T21:28:36",
            "upload_time_iso_8601": "2024-03-10T21:28:36.656058Z",
            "url": "https://files.pythonhosted.org/packages/96/1b/216e25acc082add6e9fb539939aaa240c8c8e5bb17e5c77bfe10fac3aa9d/python_flirt-0.8.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71e009799ec5a70a314ff8779e22982d62f62d882a29cf69fac1895a62daaa91",
                "md5": "44a2e08fcb6e989e553256392ed28980",
                "sha256": "02792127c579d624a98c8f65a1b6f2b27c2d8be673a4ae3e26d9b42543051cf3"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44a2e08fcb6e989e553256392ed28980",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 288929,
            "upload_time": "2024-03-10T21:28:38",
            "upload_time_iso_8601": "2024-03-10T21:28:38.168263Z",
            "url": "https://files.pythonhosted.org/packages/71/e0/09799ec5a70a314ff8779e22982d62f62d882a29cf69fac1895a62daaa91/python_flirt-0.8.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "201eb36d2df5f6c46bf6c136f2d5cc1841000e093ed223798f99de0ea8b90894",
                "md5": "99c2f5f4b75d0db7571eefd35d3e9558",
                "sha256": "fc7e6041c7e146328a6daf05303590aa18251c0e5cf92f8b93e8f1eafaadb7a7"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "99c2f5f4b75d0db7571eefd35d3e9558",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 196389,
            "upload_time": "2024-03-10T21:28:39",
            "upload_time_iso_8601": "2024-03-10T21:28:39.949364Z",
            "url": "https://files.pythonhosted.org/packages/20/1e/b36d2df5f6c46bf6c136f2d5cc1841000e093ed223798f99de0ea8b90894/python_flirt-0.8.10-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45ab96ae7b8ab49ee0d0b6a9f01bd0dbf7731120a5a74d7ee08fe39f62a3eea0",
                "md5": "34a6a9330e0823a303d358e98d60ff17",
                "sha256": "f21d7e23a82ba6cfcde4fc252cd998af8848b7e5bbd7b8c670384073d3b7ad66"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "34a6a9330e0823a303d358e98d60ff17",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 204568,
            "upload_time": "2024-03-10T21:28:41",
            "upload_time_iso_8601": "2024-03-10T21:28:41.641159Z",
            "url": "https://files.pythonhosted.org/packages/45/ab/96ae7b8ab49ee0d0b6a9f01bd0dbf7731120a5a74d7ee08fe39f62a3eea0/python_flirt-0.8.10-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d86e128a6e7c1e24ded0506a15eecfdd1ec255013b1579d02a1052e73eb12066",
                "md5": "fc4f0d35b5e884742d28c62debfff3d5",
                "sha256": "38e96fdf79b6e4b6b86b37d33278c8522eb41972a17d98d8924d3772c527ecd8"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "fc4f0d35b5e884742d28c62debfff3d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 525745,
            "upload_time": "2024-03-10T21:28:42",
            "upload_time_iso_8601": "2024-03-10T21:28:42.876596Z",
            "url": "https://files.pythonhosted.org/packages/d8/6e/128a6e7c1e24ded0506a15eecfdd1ec255013b1579d02a1052e73eb12066/python_flirt-0.8.10-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b40c25503980f42b925dce578585a9b0a78c78e2127aca5b5d6102613793136c",
                "md5": "34ef2825879cfd08b5eb0845923dbaa4",
                "sha256": "ce6f443bec1ac970e41c8238e945b6f08af402bab32256c6b818143acd0a86d6"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34ef2825879cfd08b5eb0845923dbaa4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 272869,
            "upload_time": "2024-03-10T21:28:44",
            "upload_time_iso_8601": "2024-03-10T21:28:44.131181Z",
            "url": "https://files.pythonhosted.org/packages/b4/0c/25503980f42b925dce578585a9b0a78c78e2127aca5b5d6102613793136c/python_flirt-0.8.10-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c04404426182e1b053662dc0ef690735d8fc1232508300cdca1f20a9dae75ec",
                "md5": "52dafe8b12b3c59d0633d0ca4aac9cb4",
                "sha256": "19e38ea51af68113d88e180c339873d202bef8637532a2c9173dbac38ff4aece"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "52dafe8b12b3c59d0633d0ca4aac9cb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 299852,
            "upload_time": "2024-03-10T21:28:45",
            "upload_time_iso_8601": "2024-03-10T21:28:45.294581Z",
            "url": "https://files.pythonhosted.org/packages/6c/04/404426182e1b053662dc0ef690735d8fc1232508300cdca1f20a9dae75ec/python_flirt-0.8.10-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8a0d8d9ff2f35e12edf1ae82098b9b494f5fe53a95f1fb696817efd11973a0c",
                "md5": "2379d57727041d09f3a946d27ff44773",
                "sha256": "d0102bfdda68ce2050cfb61cd2e8bbc8225bc2b5a0535fb492e12c42d9dbf23a"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2379d57727041d09f3a946d27ff44773",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 275260,
            "upload_time": "2024-03-10T21:28:46",
            "upload_time_iso_8601": "2024-03-10T21:28:46.460439Z",
            "url": "https://files.pythonhosted.org/packages/f8/a0/d8d9ff2f35e12edf1ae82098b9b494f5fe53a95f1fb696817efd11973a0c/python_flirt-0.8.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13be7bb4da15739c3dbb1685a342fa28d14560a6728e4377b7a05ec938136800",
                "md5": "673d9e996d823a9d3e1c5e81ae126a26",
                "sha256": "547fc7d8567db0332b229be0551c3aa65c839d439fdd317b7184edb491dde322"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "673d9e996d823a9d3e1c5e81ae126a26",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 278274,
            "upload_time": "2024-03-10T21:28:48",
            "upload_time_iso_8601": "2024-03-10T21:28:48.193531Z",
            "url": "https://files.pythonhosted.org/packages/13/be/7bb4da15739c3dbb1685a342fa28d14560a6728e4377b7a05ec938136800/python_flirt-0.8.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "188ce776eaec6d734f5bad46e6e94876d5ffe090bafd934e3f7b3ae0bb6d35c5",
                "md5": "88620dc7f1307a6331a2c70b59919699",
                "sha256": "877a99236e7e37f4e94f223297e9029ab14426a4d4d5f7a621a1719b0375dda1"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88620dc7f1307a6331a2c70b59919699",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 289339,
            "upload_time": "2024-03-10T21:28:49",
            "upload_time_iso_8601": "2024-03-10T21:28:49.964267Z",
            "url": "https://files.pythonhosted.org/packages/18/8c/e776eaec6d734f5bad46e6e94876d5ffe090bafd934e3f7b3ae0bb6d35c5/python_flirt-0.8.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7650912ef4443853f1688be30f97698d31b2b0867a4274296869066865cb27ce",
                "md5": "94d93886b46e6628999605e80dd30a94",
                "sha256": "cb173f1030cd05f586f20b68c594bdc54f745d4fb12dc8db100dc70127a771d7"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "94d93886b46e6628999605e80dd30a94",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 196894,
            "upload_time": "2024-03-10T21:28:51",
            "upload_time_iso_8601": "2024-03-10T21:28:51.851218Z",
            "url": "https://files.pythonhosted.org/packages/76/50/912ef4443853f1688be30f97698d31b2b0867a4274296869066865cb27ce/python_flirt-0.8.10-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5700ac0d94f11d581953fed8e1134feed70a31bea9eba50809333f4991d3b300",
                "md5": "21271af6515a777552b40992bb368d0f",
                "sha256": "2f4cebbf3cba105f5f0db64a030109c966f4aecb29f94c7ac6e4594f3d4b3c63"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "21271af6515a777552b40992bb368d0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 205061,
            "upload_time": "2024-03-10T21:28:52",
            "upload_time_iso_8601": "2024-03-10T21:28:52.980284Z",
            "url": "https://files.pythonhosted.org/packages/57/00/ac0d94f11d581953fed8e1134feed70a31bea9eba50809333f4991d3b300/python_flirt-0.8.10-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa1f10c2e8cbb557cb3af628fc70e291acd7f655817eacd40deacc26f4c92fbf",
                "md5": "9ecb4742a2aff4566fe7504129a6a208",
                "sha256": "c1f8e406d15f31049ff558534b4be952fb073aadc2e7174e650f4a71256282c6"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "9ecb4742a2aff4566fe7504129a6a208",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 525127,
            "upload_time": "2024-03-10T21:28:54",
            "upload_time_iso_8601": "2024-03-10T21:28:54.171802Z",
            "url": "https://files.pythonhosted.org/packages/fa/1f/10c2e8cbb557cb3af628fc70e291acd7f655817eacd40deacc26f4c92fbf/python_flirt-0.8.10-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0da4af766609841efcb84ce09551de880f88389479ebc1a229ce006d05c49cf8",
                "md5": "f336e32448ba8de359100f6c13d4f37d",
                "sha256": "82b820c27a4f8f94804aa42617e8d5cb80e76ca55bd89b656ff3924dae8af293"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f336e32448ba8de359100f6c13d4f37d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 272601,
            "upload_time": "2024-03-10T21:28:55",
            "upload_time_iso_8601": "2024-03-10T21:28:55.367196Z",
            "url": "https://files.pythonhosted.org/packages/0d/a4/af766609841efcb84ce09551de880f88389479ebc1a229ce006d05c49cf8/python_flirt-0.8.10-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57629304e48c278385203451abc10b62e266e07466faa3df400e12ef0003f211",
                "md5": "898e9c772e97c5d8f42f46b3247c8f52",
                "sha256": "acedddf5acd384626c55b7ed2bda71a5651eb7aed3be1d7098507ea0d3adaabb"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "898e9c772e97c5d8f42f46b3247c8f52",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 299497,
            "upload_time": "2024-03-10T21:28:56",
            "upload_time_iso_8601": "2024-03-10T21:28:56.492732Z",
            "url": "https://files.pythonhosted.org/packages/57/62/9304e48c278385203451abc10b62e266e07466faa3df400e12ef0003f211/python_flirt-0.8.10-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7e07bc35814275f0e4668a1a08d4fc595f7011eb184a39b2a69d98a59f6546f",
                "md5": "db70dc49d8f84d74feea66fa28214759",
                "sha256": "6745709e936c19100190c52220adda8290dd6bad31d8f708cf3c52deb87546d9"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "db70dc49d8f84d74feea66fa28214759",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 275038,
            "upload_time": "2024-03-10T21:28:57",
            "upload_time_iso_8601": "2024-03-10T21:28:57.785685Z",
            "url": "https://files.pythonhosted.org/packages/e7/e0/7bc35814275f0e4668a1a08d4fc595f7011eb184a39b2a69d98a59f6546f/python_flirt-0.8.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a85e5fbeba4a31957efe0c88411d94bfb8fe1f7646740d126a2ad202c017f84",
                "md5": "197c2e7be1eb40970a92ca6a3bd41233",
                "sha256": "6897be2d12fed520524259640648f5022c3c1bff2bf2da10f018315823cc4134"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "197c2e7be1eb40970a92ca6a3bd41233",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 278117,
            "upload_time": "2024-03-10T21:28:59",
            "upload_time_iso_8601": "2024-03-10T21:28:59.013681Z",
            "url": "https://files.pythonhosted.org/packages/9a/85/e5fbeba4a31957efe0c88411d94bfb8fe1f7646740d126a2ad202c017f84/python_flirt-0.8.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afdca649cb3af5587788989d30db6c403d202d328eb21eb1f3fce8cce8d972e0",
                "md5": "32297bf262f73414dc06ae9a9da40608",
                "sha256": "0d2f444799bc2b73271fb6e0715f9ccb831308999051ca58f121282499a955b1"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32297bf262f73414dc06ae9a9da40608",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 289155,
            "upload_time": "2024-03-10T21:29:01",
            "upload_time_iso_8601": "2024-03-10T21:29:01.003942Z",
            "url": "https://files.pythonhosted.org/packages/af/dc/a649cb3af5587788989d30db6c403d202d328eb21eb1f3fce8cce8d972e0/python_flirt-0.8.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17d01d304c3f97f25219ebd4388a4fcedca0471a0c88514acb3f3b5f4b267b5c",
                "md5": "daf3b490e95947f433ac06ae44398eec",
                "sha256": "729002c7a6a15905a8dd60b646d5a28605ca73ed8a62886caaf3a49cfeb5a7bf"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "daf3b490e95947f433ac06ae44398eec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 196599,
            "upload_time": "2024-03-10T21:29:02",
            "upload_time_iso_8601": "2024-03-10T21:29:02.292313Z",
            "url": "https://files.pythonhosted.org/packages/17/d0/1d304c3f97f25219ebd4388a4fcedca0471a0c88514acb3f3b5f4b267b5c/python_flirt-0.8.10-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "835fd855a454dbe0d2c13bb8b75fbaf4eb8bf510a47db87f88766a834bc461a6",
                "md5": "a19ca41229e002b4b913aa422a4acb99",
                "sha256": "0b79ee2a6b0a098225510ab5cc0d54f1534ecfd4c647b3a614ce9dca9615d13a"
            },
            "downloads": -1,
            "filename": "python_flirt-0.8.10-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a19ca41229e002b4b913aa422a4acb99",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 204844,
            "upload_time": "2024-03-10T21:29:03",
            "upload_time_iso_8601": "2024-03-10T21:29:03.634006Z",
            "url": "https://files.pythonhosted.org/packages/83/5f/d855a454dbe0d2c13bb8b75fbaf4eb8bf510a47db87f88766a834bc461a6/python_flirt-0.8.10-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-10 21:28:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "williballenthin",
    "github_project": "lancelot",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "python-flirt"
}
        
Elapsed time: 0.20671s