edlib


Nameedlib JSON
Version 1.3.9 PyPI version JSON
download
home_pagehttps://github.com/Martinsos/edlib
SummaryLightweight, super fast library for sequence alignment using edit (Levenshtein) distance.
upload_time2021-08-20 22:47:40
maintainer
docs_urlNone
authorMartin Sosic
requires_python
licenseMIT
keywords edit distance levenshtein align sequence bioinformatics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            
=====
Edlib
=====

Lightweight, super fast library for sequence alignment using edit (Levenshtein) distance.

Popular use cases: aligning DNA sequences, calculating word/text similarity.


.. code:: python

    edlib.align("elephant", "telephone")
    # {'locations': [(None, 8)], 'cigar': None, 'alphabetLength': 8, 'editDistance': 3}

    # Works with unicode characters (or any other iterable of hashable objects)!
    edlib.align("ты милая", "ты гений")
    # {'locations': [(None, 7)], 'cigar': None, 'alphabetLength': 12, 'editDistance': 5}

    edlib.align("AACG", "TCAACCTG", mode = "HW", task = "path")
    # {'locations': [(2, 4), (2, 5)], 'cigar': '3=1I', 'alphabetLength': 4, 'editDistance': 1}

    query = "elephant"; target = "telephone"
    # NOTE: `task` has to be "path" in order to get nice alignment.
    result = edlib.align(query, target, task = "path")
    nice = edlib.getNiceAlignment(result, query, target)
    print("\n".join(nice.values()))
    # -|||||.|.
    # telephone
    # -elephant


Edlib is actually a C/C++ library, and this package is it's wrapper for Python.
Python Edlib has mostly the same API as C/C++ Edlib, so feel free to check out `C/C++ Edlib docs <http://github.com/Martinsos/edlib>`_ for more code examples, details on API and how Edlib works.

--------
Features
--------

* Calculates **edit distance**.
* It can find **optimal alignment path** (instructions how to transform first sequence into the second sequence).
* It can find just the **start and/or end locations of alignment path** - can be useful when speed is more important than having exact alignment path.
* Supports **multiple alignment methods**: global(**NW**), prefix(**SHW**) and infix(**HW**), each of them useful for different scenarios.
* You can **extend character equality definition**, enabling you to e.g. have wildcard characters, to have case insensitive alignment or to work with degenerate nucleotides.
* It can easily handle small or **very large** sequences, even when finding alignment path.
* **Super fast** thanks to Myers's bit-vector algorithm.

**NOTE**: **Alphabet length has to be <= 256** (meaning that query and target together must have <= 256 unique values).

------------
Installation
------------
::

    pip install edlib

---
API
---

Edlib has two functions, ``align()`` and ``getNiceAlignment()``:

align()
-------

.. code:: python

    align(query, target, [mode], [task], [k], [additionalEqualities])

Aligns ``query`` against ``target`` with edit distance.

``query`` and ``target`` can be strings, bytes, or any iterables of hashable objects, as long as all together they don't have more than 256 unique values.


Output of ``help(edlib.align)``:

.. code::

    built-in function align in module edlib

    align(...)
        Align query with target using edit distance.
        @param {str or bytes or iterable of hashable objects} query, combined with target must have no more
               than 256 unique values
        @param {str or bytes or iterable of hashable objects} target, combined with query must have no more
               than 256 unique values
        @param {string} mode  Optional. Alignment method do be used. Possible values are:
                - 'NW' for global (default)
                - 'HW' for infix
                - 'SHW' for prefix.
        @param {string} task  Optional. Tells edlib what to calculate. The less there is to calculate,
                the faster it is. Possible value are (from fastest to slowest):
                - 'distance' - find edit distance and end locations in target. Default.
                - 'locations' - find edit distance, end locations and start locations.
                - 'path' - find edit distance, start and end locations and alignment path.
        @param {int} k  Optional. Max edit distance to search for - the lower this value,
                the faster is calculation. Set to -1 (default) to have no limit on edit distance.
        @param {list} additionalEqualities  Optional.
                List of pairs of characters or hashable objects, where each pair defines two values as equal.
                This way you can extend edlib's definition of equality (which is that each character is equal only
                to itself).
                This can be useful e.g. when you want edlib to be case insensitive, or if you want certain
                characters to act as a wildcards.
                Set to None (default) if you do not want to extend edlib's default equality definition.
        @return Dictionary with following fields:
                {int} editDistance  Integer, -1 if it is larger than k.
                {int} alphabetLength Integer, length of unique characters in 'query' and 'target'
                {[(int, int)]} locations  List of locations, in format [(start, end)].
                {string} cigar  Cigar is a standard format for alignment path.
                    Here we are using extended cigar format, which uses following symbols:
                    Match: '=', Insertion to target: 'I', Deletion from target: 'D', Mismatch: 'X'.
                    e.g. cigar of "5=1X1=1I" means "5 matches, 1 mismatch, 1 match, 1 insertion (to target)".


getNiceAlignment()
------------------

.. code:: python

    getNiceAlignment(alignResult, query, target)

Represents alignment from ``align()`` in a visually attractive format.


Output of ``help(edlib.getNiceAlignment)``:

.. code::

    built-in function getNiceAlignment in module edlib

    getNiceAlignment(...)
        Output alignments from align() in NICE format
        @param {dictionary} alignResult, output of the method align() 
            NOTE: The method align() requires the argument task="path"
        @param {string} query, the exact query used for alignResult
        @param {string} target, the exact target used for alignResult
        @param {string} gapSymbol, default "-"
            String used to represent gaps in the alignment between query and target
        @return Alignment in NICE format, which is human-readable visual representation of how the query and target align to each other. 
            e.g., for "telephone" and "elephant", it would look like:
               telephone
                |||||.|.
               -elephant
            It is represented as dictionary with following fields:
              - {string} query_aligned
              - {string} matched_aligned ('|' for match, '.' for mismatch, ' ' for insertion/deletion)
              - {string} target_aligned
            Normally you will want to print these three in order above joined with newline character.



-----
Usage
-----


.. code:: python

    import edlib

    edlib.align("ACTG", "CACTRT", mode="HW", task="path")
    # {'locations': [(1, 3), (1, 4)], 'cigar': '3=1I', 'alphabetLength': 5, 'editDistance': 1}

    # You can provide additional equalities.
    edlib.align("ACTG", "CACTRT", mode="HW", task="path", additionalEqualities=[("R", "A"), ("R", "G")])
    # {'locations': [(1, 4)], 'cigar': '4=', 'alphabetLength': 5, 'editDistance': 0}



---------
Benchmark
---------

I run a simple benchmark on 7 Feb 2017 (using timeit, on Python3) to get a feeling of how Edlib compares to other Python libraries: `editdistance <https://pypi.python.org/pypi/editdistance>`_ and `python-Levenshtein <https://pypi.python.org/pypi/python-Levenshtein>`_.

As input data I used pairs of DNA sequences of different lengths, where each pair has about 90% similarity.

::

   #1: query length: 30, target length: 30
   edlib.align(query, target): 1.88µs
   editdistance.eval(query, target): 1.26µs
   Levenshtein.distance(query, target): 0.43µs

   #2: query length: 100, target length: 100
   edlib.align(query, target): 3.64µs
   editdistance.eval(query, target): 3.86µs
   Levenshtein.distance(query, target): 14.1µs

   #3: query length: 1000, target length: 1000
   edlib.align(query, target): 0.047ms
   editdistance.eval(query, target): 5.4ms
   Levenshtein.distance(query, target): 1.9ms

   #4: query length: 10000, target length: 10000
   edlib.align(query, target): 0.0021s
   editdistance.eval(query, target): 0.56s
   Levenshtein.distance(query, target): 0.2s

   #5: query length: 50000, target length: 50000
   edlib.align(query, target): 0.031s
   editdistance.eval(query, target): 13.8s
   Levenshtein.distance(query, target): 5.0s

----
More
----

Check out `C/C++ Edlib docs <http://github.com/Martinsos/edlib>`_ for more information about Edlib!

-----------
Development
-----------

Check out `Edlib python package on Github <https://github.com/Martinsos/edlib/tree/master/bindings/python>`_.




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Martinsos/edlib",
    "name": "edlib",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "edit distance levenshtein align sequence bioinformatics",
    "author": "Martin Sosic",
    "author_email": "sosic.martin@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/61/a2/2aba5f66878d186f0b1ef22d3b3ce71ccfcbf56e51e50208d868b7b96927/edlib-1.3.9.tar.gz",
    "platform": "",
    "description": "\n=====\nEdlib\n=====\n\nLightweight, super fast library for sequence alignment using edit (Levenshtein) distance.\n\nPopular use cases: aligning DNA sequences, calculating word/text similarity.\n\n\n.. code:: python\n\n    edlib.align(\"elephant\", \"telephone\")\n    # {'locations': [(None, 8)], 'cigar': None, 'alphabetLength': 8, 'editDistance': 3}\n\n    # Works with unicode characters (or any other iterable of hashable objects)!\n    edlib.align(\"\u0442\u044b \u043c\u0438\u043b\u0430\u044f\", \"\u0442\u044b \u0433\u0435\u043d\u0438\u0439\")\n    # {'locations': [(None, 7)], 'cigar': None, 'alphabetLength': 12, 'editDistance': 5}\n\n    edlib.align(\"AACG\", \"TCAACCTG\", mode = \"HW\", task = \"path\")\n    # {'locations': [(2, 4), (2, 5)], 'cigar': '3=1I', 'alphabetLength': 4, 'editDistance': 1}\n\n    query = \"elephant\"; target = \"telephone\"\n    # NOTE: `task` has to be \"path\" in order to get nice alignment.\n    result = edlib.align(query, target, task = \"path\")\n    nice = edlib.getNiceAlignment(result, query, target)\n    print(\"\\n\".join(nice.values()))\n    # -|||||.|.\n    # telephone\n    # -elephant\n\n\nEdlib is actually a C/C++ library, and this package is it's wrapper for Python.\nPython Edlib has mostly the same API as C/C++ Edlib, so feel free to check out `C/C++ Edlib docs <http://github.com/Martinsos/edlib>`_ for more code examples, details on API and how Edlib works.\n\n--------\nFeatures\n--------\n\n* Calculates **edit distance**.\n* It can find **optimal alignment path** (instructions how to transform first sequence into the second sequence).\n* It can find just the **start and/or end locations of alignment path** - can be useful when speed is more important than having exact alignment path.\n* Supports **multiple alignment methods**: global(**NW**), prefix(**SHW**) and infix(**HW**), each of them useful for different scenarios.\n* You can **extend character equality definition**, enabling you to e.g. have wildcard characters, to have case insensitive alignment or to work with degenerate nucleotides.\n* It can easily handle small or **very large** sequences, even when finding alignment path.\n* **Super fast** thanks to Myers's bit-vector algorithm.\n\n**NOTE**: **Alphabet length has to be <= 256** (meaning that query and target together must have <= 256 unique values).\n\n------------\nInstallation\n------------\n::\n\n    pip install edlib\n\n---\nAPI\n---\n\nEdlib has two functions, ``align()`` and ``getNiceAlignment()``:\n\nalign()\n-------\n\n.. code:: python\n\n    align(query, target, [mode], [task], [k], [additionalEqualities])\n\nAligns ``query`` against ``target`` with edit distance.\n\n``query`` and ``target`` can be strings, bytes, or any iterables of hashable objects, as long as all together they don't have more than 256 unique values.\n\n\nOutput of ``help(edlib.align)``:\n\n.. code::\n\n    built-in function align in module edlib\n\n    align(...)\n        Align query with target using edit distance.\n        @param {str or bytes or iterable of hashable objects} query, combined with target must have no more\n               than 256 unique values\n        @param {str or bytes or iterable of hashable objects} target, combined with query must have no more\n               than 256 unique values\n        @param {string} mode  Optional. Alignment method do be used. Possible values are:\n                - 'NW' for global (default)\n                - 'HW' for infix\n                - 'SHW' for prefix.\n        @param {string} task  Optional. Tells edlib what to calculate. The less there is to calculate,\n                the faster it is. Possible value are (from fastest to slowest):\n                - 'distance' - find edit distance and end locations in target. Default.\n                - 'locations' - find edit distance, end locations and start locations.\n                - 'path' - find edit distance, start and end locations and alignment path.\n        @param {int} k  Optional. Max edit distance to search for - the lower this value,\n                the faster is calculation. Set to -1 (default) to have no limit on edit distance.\n        @param {list} additionalEqualities  Optional.\n                List of pairs of characters or hashable objects, where each pair defines two values as equal.\n                This way you can extend edlib's definition of equality (which is that each character is equal only\n                to itself).\n                This can be useful e.g. when you want edlib to be case insensitive, or if you want certain\n                characters to act as a wildcards.\n                Set to None (default) if you do not want to extend edlib's default equality definition.\n        @return Dictionary with following fields:\n                {int} editDistance  Integer, -1 if it is larger than k.\n                {int} alphabetLength Integer, length of unique characters in 'query' and 'target'\n                {[(int, int)]} locations  List of locations, in format [(start, end)].\n                {string} cigar  Cigar is a standard format for alignment path.\n                    Here we are using extended cigar format, which uses following symbols:\n                    Match: '=', Insertion to target: 'I', Deletion from target: 'D', Mismatch: 'X'.\n                    e.g. cigar of \"5=1X1=1I\" means \"5 matches, 1 mismatch, 1 match, 1 insertion (to target)\".\n\n\ngetNiceAlignment()\n------------------\n\n.. code:: python\n\n    getNiceAlignment(alignResult, query, target)\n\nRepresents alignment from ``align()`` in a visually attractive format.\n\n\nOutput of ``help(edlib.getNiceAlignment)``:\n\n.. code::\n\n    built-in function getNiceAlignment in module edlib\n\n    getNiceAlignment(...)\n        Output alignments from align() in NICE format\n        @param {dictionary} alignResult, output of the method align() \n            NOTE: The method align() requires the argument task=\"path\"\n        @param {string} query, the exact query used for alignResult\n        @param {string} target, the exact target used for alignResult\n        @param {string} gapSymbol, default \"-\"\n            String used to represent gaps in the alignment between query and target\n        @return Alignment in NICE format, which is human-readable visual representation of how the query and target align to each other. \n            e.g., for \"telephone\" and \"elephant\", it would look like:\n               telephone\n                |||||.|.\n               -elephant\n            It is represented as dictionary with following fields:\n              - {string} query_aligned\n              - {string} matched_aligned ('|' for match, '.' for mismatch, ' ' for insertion/deletion)\n              - {string} target_aligned\n            Normally you will want to print these three in order above joined with newline character.\n\n\n\n-----\nUsage\n-----\n\n\n.. code:: python\n\n    import edlib\n\n    edlib.align(\"ACTG\", \"CACTRT\", mode=\"HW\", task=\"path\")\n    # {'locations': [(1, 3), (1, 4)], 'cigar': '3=1I', 'alphabetLength': 5, 'editDistance': 1}\n\n    # You can provide additional equalities.\n    edlib.align(\"ACTG\", \"CACTRT\", mode=\"HW\", task=\"path\", additionalEqualities=[(\"R\", \"A\"), (\"R\", \"G\")])\n    # {'locations': [(1, 4)], 'cigar': '4=', 'alphabetLength': 5, 'editDistance': 0}\n\n\n\n---------\nBenchmark\n---------\n\nI run a simple benchmark on 7 Feb 2017 (using timeit, on Python3) to get a feeling of how Edlib compares to other Python libraries: `editdistance <https://pypi.python.org/pypi/editdistance>`_ and `python-Levenshtein <https://pypi.python.org/pypi/python-Levenshtein>`_.\n\nAs input data I used pairs of DNA sequences of different lengths, where each pair has about 90% similarity.\n\n::\n\n   #1: query length: 30, target length: 30\n   edlib.align(query, target): 1.88\u00b5s\n   editdistance.eval(query, target): 1.26\u00b5s\n   Levenshtein.distance(query, target): 0.43\u00b5s\n\n   #2: query length: 100, target length: 100\n   edlib.align(query, target): 3.64\u00b5s\n   editdistance.eval(query, target): 3.86\u00b5s\n   Levenshtein.distance(query, target): 14.1\u00b5s\n\n   #3: query length: 1000, target length: 1000\n   edlib.align(query, target): 0.047ms\n   editdistance.eval(query, target): 5.4ms\n   Levenshtein.distance(query, target): 1.9ms\n\n   #4: query length: 10000, target length: 10000\n   edlib.align(query, target): 0.0021s\n   editdistance.eval(query, target): 0.56s\n   Levenshtein.distance(query, target): 0.2s\n\n   #5: query length: 50000, target length: 50000\n   edlib.align(query, target): 0.031s\n   editdistance.eval(query, target): 13.8s\n   Levenshtein.distance(query, target): 5.0s\n\n----\nMore\n----\n\nCheck out `C/C++ Edlib docs <http://github.com/Martinsos/edlib>`_ for more information about Edlib!\n\n-----------\nDevelopment\n-----------\n\nCheck out `Edlib python package on Github <https://github.com/Martinsos/edlib/tree/master/bindings/python>`_.\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Lightweight, super fast library for sequence alignment using edit (Levenshtein) distance.",
    "version": "1.3.9",
    "split_keywords": [
        "edit",
        "distance",
        "levenshtein",
        "align",
        "sequence",
        "bioinformatics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "ec47bce3f963af96965f041b030fcc95",
                "sha256": "ea43f510f64fd0c784bfcab1b352ee4d45674e682ee17cf2fc249c57b6adc011"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec47bce3f963af96965f041b030fcc95",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 363284,
            "upload_time": "2022-10-02T19:57:45",
            "upload_time_iso_8601": "2022-10-02T19:57:45.082378Z",
            "url": "https://files.pythonhosted.org/packages/29/f1/8af161ccce0a99552d76fa8df1fa44a2949bef932ad1aee0e718f7f4d74c/edlib-1.3.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5ad69036ae290360ac4d8c89da6c2d21",
                "sha256": "e43950c99c5d7be68250538fa20cd72532433bfc265300761029a84ff9ae665c"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5ad69036ae290360ac4d8c89da6c2d21",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 938511,
            "upload_time": "2022-10-02T19:57:49",
            "upload_time_iso_8601": "2022-10-02T19:57:49.522132Z",
            "url": "https://files.pythonhosted.org/packages/bb/76/46a7e457ac9e2f075fafbbc41e2b5b8452ad14ba4897b77cb9cf42cca1db/edlib-1.3.9-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "69be248d0e282c1386ee134b26e57e8e",
                "sha256": "d4de3389254c59171d7942f90be5d5496f44c41981e661ce859e8582f975180c"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69be248d0e282c1386ee134b26e57e8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 895883,
            "upload_time": "2022-10-02T19:57:53",
            "upload_time_iso_8601": "2022-10-02T19:57:53.694930Z",
            "url": "https://files.pythonhosted.org/packages/1a/f0/3a5e8aef5710af6c901be81a538eab1a22dd4808e6cbc065592fcc259e4c/edlib-1.3.9-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "02356eb4e5535d9dc95b457c56a5c478",
                "sha256": "8cc9ca8c5e295d5b57868857e28697714962cdc603ee7e60ac76f5a64dc0eb2d"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02356eb4e5535d9dc95b457c56a5c478",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 384024,
            "upload_time": "2022-10-02T19:57:56",
            "upload_time_iso_8601": "2022-10-02T19:57:56.398549Z",
            "url": "https://files.pythonhosted.org/packages/23/d2/cce590df04fa43898a117683cd05ddc7681f11eec9d3493cd39668b3961e/edlib-1.3.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "96b58113a94b284369713a7da0b1a5f8",
                "sha256": "9e80a142f3021470de912474e723e4ab512bce5b9b2914c18b006ef7c162dfea"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "96b58113a94b284369713a7da0b1a5f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 963239,
            "upload_time": "2022-10-02T19:58:00",
            "upload_time_iso_8601": "2022-10-02T19:58:00.256990Z",
            "url": "https://files.pythonhosted.org/packages/8b/b0/a9acef4d91e6fd52c1b27958e10568ca6e34ae6e43ab171ce36f151b1b27/edlib-1.3.9-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "20acfe67feae7ede846aaafc09c4135e",
                "sha256": "849c8601c6ec4733a0c2bd0d75e959fc426193daf39841e6c360aab73c9dcacc"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "20acfe67feae7ede846aaafc09c4135e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 923517,
            "upload_time": "2022-10-02T19:58:03",
            "upload_time_iso_8601": "2022-10-02T19:58:03.915229Z",
            "url": "https://files.pythonhosted.org/packages/55/45/96cd8aa7cd2677848316a18c9a22f827e0a0b571686427dbfba08a1d2845/edlib-1.3.9-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "038f1bedd30f04d4403e89f32834b857",
                "sha256": "b2f640f3aeeaa681d9f41ce94a38469beb1d1f3662e798dde635b0b62ebfada4"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp35-cp35m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "038f1bedd30f04d4403e89f32834b857",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 63347,
            "upload_time": "2021-08-20T22:50:26",
            "upload_time_iso_8601": "2021-08-20T22:50:26.079133Z",
            "url": "https://files.pythonhosted.org/packages/37/64/308f739f25c673e7bb772b1e45c1a731d67a73815d2f990c07c95cf6c51f/edlib-1.3.9-cp35-cp35m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ef0afea3f1ae8ce0f82a92353ccbcc17",
                "sha256": "1c7e5137fe5187b09ec00748ef09c3ddd4e3df0356c7c45fce2d938ab63bd221"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp35-cp35m-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef0afea3f1ae8ce0f82a92353ccbcc17",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 299718,
            "upload_time": "2021-08-20T22:47:25",
            "upload_time_iso_8601": "2021-08-20T22:47:25.558041Z",
            "url": "https://files.pythonhosted.org/packages/0f/fc/fa2821c797371dba1d9220b99d79a10d6fa5a916bb022d9d4dc331a1177e/edlib-1.3.9-cp35-cp35m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8a639daa48104e148dd1ef2bf1dd101a",
                "sha256": "edb81a1aad1c390ead8e456b2bd3e549f462f90c4c19b12902a3f84d5716f37c"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp35-cp35m-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a639daa48104e148dd1ef2bf1dd101a",
            "packagetype": "bdist_wheel",
            "python_version": "cp35",
            "requires_python": null,
            "size": 299722,
            "upload_time": "2021-08-20T22:47:27",
            "upload_time_iso_8601": "2021-08-20T22:47:27.065528Z",
            "url": "https://files.pythonhosted.org/packages/3f/b8/f2de332a395f189f7587050bbd5782fcf56af91a6aa4d626d8e4a7bb2a66/edlib-1.3.9-cp35-cp35m-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ad0c55379c632a495334db69ae266fe7",
                "sha256": "5c4fc8d362a2608dbae7d02c1ff875f79ccbd9153b54c5160d3a8618daeb3109"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad0c55379c632a495334db69ae266fe7",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 63911,
            "upload_time": "2021-08-20T22:50:27",
            "upload_time_iso_8601": "2021-08-20T22:50:27.171242Z",
            "url": "https://files.pythonhosted.org/packages/c1/f3/34947e3b3f877b4c5a39ce72552e2d8e9f272df27a91bcee3dd3d4bce1c3/edlib-1.3.9-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "721aea86ca112faabebb6b9ca9df2ee2",
                "sha256": "7f5033d4dc9ae1723348175a96437d3fad2784cdd3944bb9104abbfc633ceeb0"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp36-cp36m-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "721aea86ca112faabebb6b9ca9df2ee2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 304335,
            "upload_time": "2021-08-20T22:47:28",
            "upload_time_iso_8601": "2021-08-20T22:47:28.694785Z",
            "url": "https://files.pythonhosted.org/packages/08/a3/37558fb19e54e40e360c8f3e255007d19f262c45298bf3148b92faf3311c/edlib-1.3.9-cp36-cp36m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b50858a518c595b628d814c3d9ea5b51",
                "sha256": "7fc232ece8ba16c1d3c90819beb51a74fd5e04aec22bd09adbfbcb84b32b2aca"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp36-cp36m-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b50858a518c595b628d814c3d9ea5b51",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 304337,
            "upload_time": "2021-08-20T22:47:30",
            "upload_time_iso_8601": "2021-08-20T22:47:30.614790Z",
            "url": "https://files.pythonhosted.org/packages/18/c5/a65d5a33a4b5d261806374f15addae922b72eb0ee456ec0919f60baf3797/edlib-1.3.9-cp36-cp36m-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a6b7d58bbf8165c8bd4fd6764e70728b",
                "sha256": "cfa6e3b5497bdc3414dfb41dc0ceb31ef3c803b95d881da2fc7308c306379be3"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6b7d58bbf8165c8bd4fd6764e70728b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 329138,
            "upload_time": "2022-10-02T19:58:06",
            "upload_time_iso_8601": "2022-10-02T19:58:06.787760Z",
            "url": "https://files.pythonhosted.org/packages/c1/e5/cc6397be994c2cd08c464363bf299e3d92e4ee38d0e574d63ae066fe247a/edlib-1.3.9-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3c08e03bd066ec78ef6cfb086140a208",
                "sha256": "03652c2113ed977e6d7b056ebaff40d98e5b1092c5c20e0f49452c64a654490e"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3c08e03bd066ec78ef6cfb086140a208",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 911270,
            "upload_time": "2022-10-02T19:58:09",
            "upload_time_iso_8601": "2022-10-02T19:58:09.780161Z",
            "url": "https://files.pythonhosted.org/packages/9a/c5/9451fceff4ade391c7f6371ab72cc0994b00f6a05500e4edd67bb3a12f42/edlib-1.3.9-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e29d482153539eb94846b4cb7e9a4b79",
                "sha256": "65b9ff4dc6731b6916a38ff012a2c594701a226e1ed5f6b1d3f514feef84766d"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e29d482153539eb94846b4cb7e9a4b79",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 867968,
            "upload_time": "2022-10-02T19:58:12",
            "upload_time_iso_8601": "2022-10-02T19:58:12.926752Z",
            "url": "https://files.pythonhosted.org/packages/6a/3d/69f9a69d694d9e9c6b95d45080146a88bd6e5e4a60847c4a62952c8166e6/edlib-1.3.9-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "45e66b0deb5d4032f18a617a7a6fdd61",
                "sha256": "b91a80d3e6763a5ba1ee8f6eb87abb22edd2243d1672b227dc9f8f5eacc2f09e"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45e66b0deb5d4032f18a617a7a6fdd61",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 64121,
            "upload_time": "2021-08-20T22:50:28",
            "upload_time_iso_8601": "2021-08-20T22:50:28.714793Z",
            "url": "https://files.pythonhosted.org/packages/fa/06/51efcdec74b5d660f769d145e915b25c6af48b078b0445faf93c566a9f59/edlib-1.3.9-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7f239222e02d66c0e39a27d1ee7eb2ee",
                "sha256": "40af82e085a6b8dac6d055e69ad4e4ca2e502e2a7c8e4b48e7c9c46534f249ec"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp37-cp37m-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f239222e02d66c0e39a27d1ee7eb2ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 305551,
            "upload_time": "2021-08-20T22:47:32",
            "upload_time_iso_8601": "2021-08-20T22:47:32.582706Z",
            "url": "https://files.pythonhosted.org/packages/10/c5/24485548a5c0722e5f5ee650f70f189c921d7ab4463e465b366759749d39/edlib-1.3.9-cp37-cp37m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "02d507381d13653d5d3cbbb7f858333f",
                "sha256": "d32939d7433c92e836daf6622c1f26252c84a6b7729a0aa93e960e36ffdff386"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp37-cp37m-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02d507381d13653d5d3cbbb7f858333f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 305556,
            "upload_time": "2021-08-20T22:47:33",
            "upload_time_iso_8601": "2021-08-20T22:47:33.743650Z",
            "url": "https://files.pythonhosted.org/packages/8a/cb/e3933173b86ed5317a203bbf7b0dac651933cd1564cec569b7fe8fab198a/edlib-1.3.9-cp37-cp37m-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d37bab8eb4b3eafe2c7959bda3e900d5",
                "sha256": "52ae06e0a4c54011a1caae18b137f53b1f57b2608b5083cd6c2e7e582fd39925"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d37bab8eb4b3eafe2c7959bda3e900d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 325614,
            "upload_time": "2022-10-02T19:58:16",
            "upload_time_iso_8601": "2022-10-02T19:58:16.776771Z",
            "url": "https://files.pythonhosted.org/packages/e1/11/fa601ed23fe215383c25507f2e37dcc7fa3357f4b3adfc35f32eb0b31944/edlib-1.3.9-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "abdab6574685f26c2508ee5a04c881d7",
                "sha256": "b2b5410a1338e0e6e41f9b72af5769840eb1a90963051b51fe9284c55e6c4b6c"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "abdab6574685f26c2508ee5a04c881d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 912090,
            "upload_time": "2022-10-02T19:58:20",
            "upload_time_iso_8601": "2022-10-02T19:58:20.588674Z",
            "url": "https://files.pythonhosted.org/packages/92/44/1ba497013a8eee28fb87e845096581b038ecac42663b919724853ec6d5ae/edlib-1.3.9-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d57fa2a55f6185a59ea605512e4306d7",
                "sha256": "af4d04cb2919605270676b70a29b83877c7bcb57b4c27afa26e9c0c66bb587b4"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d57fa2a55f6185a59ea605512e4306d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 866871,
            "upload_time": "2022-10-02T19:58:24",
            "upload_time_iso_8601": "2022-10-02T19:58:24.229264Z",
            "url": "https://files.pythonhosted.org/packages/a2/ce/489cbfe23c3bdc061df2ffdd11dc1a5b703bea29137982f5a787d1323d52/edlib-1.3.9-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f7fcc50c6ba2feae25d992036f340edc",
                "sha256": "0ee63131cdf127d1f4849aa0f98bf3d6974cc60c1ca51ebefbf3d4356eb9f638"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7fcc50c6ba2feae25d992036f340edc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 64747,
            "upload_time": "2021-08-20T22:50:30",
            "upload_time_iso_8601": "2021-08-20T22:50:30.202837Z",
            "url": "https://files.pythonhosted.org/packages/b2/c3/18c80b379f0ad7c20a9b45cd40dd03ae02f75911e575c44f652aac8c7488/edlib-1.3.9-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c9bc83b1eb24501a8ba661c5dbdfe063",
                "sha256": "b1e5d136091383bb5b1ebc6b5a74feeb0651b4455c6630be11594a84c02e9ba6"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp38-cp38-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9bc83b1eb24501a8ba661c5dbdfe063",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 342142,
            "upload_time": "2021-08-20T22:47:35",
            "upload_time_iso_8601": "2021-08-20T22:47:35.110013Z",
            "url": "https://files.pythonhosted.org/packages/45/62/154a685b41c08cc4243066b5fc597c278130ae3beab95a6e8ef6bad17849/edlib-1.3.9-cp38-cp38-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "477592d589eb9ddabf43c88241b42ec1",
                "sha256": "21099859eaa656bea35e21ce0d8562df57e55838812a43521cd46096a5d206ff"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp38-cp38-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "477592d589eb9ddabf43c88241b42ec1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 342147,
            "upload_time": "2021-08-20T22:47:36",
            "upload_time_iso_8601": "2021-08-20T22:47:36.263492Z",
            "url": "https://files.pythonhosted.org/packages/cc/5b/12921906fcf5e0bd27539389ce4a91588c2bba4c519d559bb9864f86d24b/edlib-1.3.9-cp38-cp38-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1af21d497675393c470f15e88cfe803c",
                "sha256": "5467333846538a14a6410885ffe2097eab6685f81942c6ffa8c68ca834ff79e1"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1af21d497675393c470f15e88cfe803c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 359459,
            "upload_time": "2022-10-02T19:58:27",
            "upload_time_iso_8601": "2022-10-02T19:58:27.521366Z",
            "url": "https://files.pythonhosted.org/packages/d1/2b/7199f0efcef448cdb13030e759073db58641c65eafaef2f0f326395514d2/edlib-1.3.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c27dd8a86ed07783bab138965526ab03",
                "sha256": "6a906af39c40e9391ac7e75b92e86fa858f48e54f59a0f44df39749e6f616928"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c27dd8a86ed07783bab138965526ab03",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 949895,
            "upload_time": "2022-10-02T19:58:30",
            "upload_time_iso_8601": "2022-10-02T19:58:30.234703Z",
            "url": "https://files.pythonhosted.org/packages/36/d8/6531cab13da996714eb50b251306b6bc779e4bd8e59311d1e845d5039ea4/edlib-1.3.9-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9f6ee9f0c79d0d72a1a7bea6f5b01d5f",
                "sha256": "d32736c155e3d52f0bbd5ff14d5a3b2bcf3d9291aed060179754387ebc871119"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f6ee9f0c79d0d72a1a7bea6f5b01d5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 906967,
            "upload_time": "2022-10-02T19:58:34",
            "upload_time_iso_8601": "2022-10-02T19:58:34.594922Z",
            "url": "https://files.pythonhosted.org/packages/0f/80/5fe29922c9b44847906914ab39f173cc093f38665d9cd6316a13f9155542/edlib-1.3.9-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6e20135c8162788fb3df616d8f360e8b",
                "sha256": "402c17b2ee5c684c543fb5120ca2a24a288a798d083839bf8cab2560808ca4df"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e20135c8162788fb3df616d8f360e8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 65750,
            "upload_time": "2021-08-20T22:50:31",
            "upload_time_iso_8601": "2021-08-20T22:50:31.692392Z",
            "url": "https://files.pythonhosted.org/packages/25/81/820155ad3219043194ae8b262b1e04c69da7d958f8c9ff0756918e22e6c4/edlib-1.3.9-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7e0063c97c358395c8f392fd8b84ba8b",
                "sha256": "499ec22da9f078a199c73b5e1455e31130e4026baacc0b84e9c516fcea551ad0"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp39-cp39-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e0063c97c358395c8f392fd8b84ba8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 327330,
            "upload_time": "2021-08-20T22:47:37",
            "upload_time_iso_8601": "2021-08-20T22:47:37.284464Z",
            "url": "https://files.pythonhosted.org/packages/2e/5c/82b049acc196d8929396b392ea2f302189ad5b67a3a0f7735520acb02734/edlib-1.3.9-cp39-cp39-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "982d41b4e5d539782a7ac41738a5b1dd",
                "sha256": "20d3743e231334ed8f3db3b400dd5b3db66b8eca5f6176114fef947978c20293"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp39-cp39-manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "982d41b4e5d539782a7ac41738a5b1dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 327333,
            "upload_time": "2021-08-20T22:47:38",
            "upload_time_iso_8601": "2021-08-20T22:47:38.913568Z",
            "url": "https://files.pythonhosted.org/packages/db/77/1d3f44d2c1c5c843d2edc6c9af5eba2b4c18a7b812d3c83dd8abb7be6533/edlib-1.3.9-cp39-cp39-manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2bb568378ee515618d0303c30a1aaa42",
                "sha256": "fc5257b90edecc476eadcc08144932ef99ebee307b8dbb49568a69578706a72a"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2bb568378ee515618d0303c30a1aaa42",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 352100,
            "upload_time": "2022-10-02T19:58:36",
            "upload_time_iso_8601": "2022-10-02T19:58:36.771874Z",
            "url": "https://files.pythonhosted.org/packages/34/11/c8cc46327f9fb459bee41d424f15057b9e3360cec1606e86f44e10b94adf/edlib-1.3.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "39b00970abbe78676a4bf58661191cee",
                "sha256": "a29312e40f01fdae3f9aa4222e4a5cc7dc878991fe560d061a2b9a96a2c20498"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "39b00970abbe78676a4bf58661191cee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 938537,
            "upload_time": "2022-10-02T19:58:39",
            "upload_time_iso_8601": "2022-10-02T19:58:39.663052Z",
            "url": "https://files.pythonhosted.org/packages/c6/c0/85456353281f3454cbc2b7fab3c8f246cf6467d5d3efe024f05567b39ffb/edlib-1.3.9-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3e72b236fe5b05623c8f524a60f4cbc9",
                "sha256": "a395efe582889cecea0a5c38a4fca4a6c24a7023c4ba0b30621abc140fc45c04"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e72b236fe5b05623c8f524a60f4cbc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 893465,
            "upload_time": "2022-10-02T19:58:42",
            "upload_time_iso_8601": "2022-10-02T19:58:42.698980Z",
            "url": "https://files.pythonhosted.org/packages/5f/19/9449c9b84b85fc1c857573e4115ed44ab1029ced29c9c87374baef9c3cb8/edlib-1.3.9-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "54b6981fe812adf3f5dc8bd1cd6720a3",
                "sha256": "64c3dfab3ebe3e759565a0cc71eb4df23cf3ce1713fd558af3c473dddc2a3766"
            },
            "downloads": -1,
            "filename": "edlib-1.3.9.tar.gz",
            "has_sig": false,
            "md5_digest": "54b6981fe812adf3f5dc8bd1cd6720a3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 91402,
            "upload_time": "2021-08-20T22:47:40",
            "upload_time_iso_8601": "2021-08-20T22:47:40.542666Z",
            "url": "https://files.pythonhosted.org/packages/61/a2/2aba5f66878d186f0b1ef22d3b3ce71ccfcbf56e51e50208d868b7b96927/edlib-1.3.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2021-08-20 22:47:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Martinsos",
    "github_project": "edlib",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "appveyor": true,
    "lcname": "edlib"
}
        
Elapsed time: 0.02465s