## Sesdiff python binding
## Description
This is a python library that reads relates two strings and computes the
shortest edit script (Myers' diff algorithm) to go from the string in column A
to the string in column B. It also computes the edit distance (aka levenshtein
distance).
There is also a [command line version](../) available.
## Installation
```
pip install sesdiff
```
## Usage
The `shortest_edit_script` function returns an `EditScript` instance containing
the instructions needed to get from string A to string B. Instructions are
represented as two-tuples with the first string being a character representing
the edit instruction type (`+` for insertion, `-` for deletion, `=` for
identity) and the second the actual textual content.
```python
from sesdiff import shortest_edit_script, Mode
#normal mode
result = shortest_edit_script("hablaron","hablar")
assert result.distance() == 2
assert len(result) == 2
assert result[0] == ('=',"hablar")
assert result[1] == ('-',"on")
#print all instructions
for instruction in result:
print(instruction)
#suffix mode
result = shortest_edit_script("hablaron","hablar", Mode.SUFFIX)
assert result.distance() == 2
assert len(result) == 1
assert result[0] == ('-',"on")
#works fine with unicode:
result = shortest_edit_script("говорим","говорить")
assert result.distance() == 3
assert len(result) == 3
assert result[0] == ('=',"говори")
assert result[1] == ('-',"м")
assert result[2] == ('+',"ть")
```
## Limitations
The apply functionality from the main library/CLI tool is not implemented yet.
Do not use this library if you're merely interested in computing levenshtein
distance, it comes with performance overhead to return the actual edit scripts.
Raw data
{
"_id": null,
"home_page": "https://github.com/proycon/sesdiff/",
"name": "sesdiff",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "nlp, text-processing, lemmatization, linguistics",
"author": "Maarten van Gompel <proycon@anaproy.nl>",
"author_email": "Maarten van Gompel <proycon@anaproy.nl>",
"download_url": "https://files.pythonhosted.org/packages/ef/2d/0cc7409f6dd296cbbe1edeb82dc652cea177a4e001e9d2bfcf502c6ac4d0/sesdiff-0.3.2.tar.gz",
"platform": null,
"description": "## Sesdiff python binding\n\n## Description\n\nThis is a python library that reads relates two strings and computes the\nshortest edit script (Myers' diff algorithm) to go from the string in column A\nto the string in column B. It also computes the edit distance (aka levenshtein\ndistance).\n\nThere is also a [command line version](../) available.\n\n## Installation\n\n```\npip install sesdiff\n```\n\n## Usage\n\nThe `shortest_edit_script` function returns an `EditScript` instance containing\nthe instructions needed to get from string A to string B. Instructions are\nrepresented as two-tuples with the first string being a character representing\nthe edit instruction type (`+` for insertion, `-` for deletion, `=` for\nidentity) and the second the actual textual content.\n\n```python\nfrom sesdiff import shortest_edit_script, Mode\n\n#normal mode\nresult = shortest_edit_script(\"hablaron\",\"hablar\")\nassert result.distance() == 2\nassert len(result) == 2 \nassert result[0] == ('=',\"hablar\")\nassert result[1] == ('-',\"on\")\n\n#print all instructions\nfor instruction in result:\n print(instruction)\n\n#suffix mode\nresult = shortest_edit_script(\"hablaron\",\"hablar\", Mode.SUFFIX)\nassert result.distance() == 2\nassert len(result) == 1\nassert result[0] == ('-',\"on\")\n\n#works fine with unicode:\nresult = shortest_edit_script(\"\u0433\u043e\u0432\u043e\u0440\u0438\u043c\",\"\u0433\u043e\u0432\u043e\u0440\u0438\u0442\u044c\")\nassert result.distance() == 3\nassert len(result) == 3\nassert result[0] == ('=',\"\u0433\u043e\u0432\u043e\u0440\u0438\")\nassert result[1] == ('-',\"\u043c\")\nassert result[2] == ('+',\"\u0442\u044c\")\n```\n\n## Limitations\n\nThe apply functionality from the main library/CLI tool is not implemented yet.\n\nDo not use this library if you're merely interested in computing levenshtein\ndistance, it comes with performance overhead to return the actual edit scripts.\n\n",
"bugtrack_url": null,
"license": "GPL-3.0+",
"summary": "Generates a shortest edit script (Myers' diff algorithm) to indicate how to get from the strings in column A to the strings in column B. Also provides the edit distance (levenshtein). This is the Python binding.",
"version": "0.3.2",
"project_urls": {
"Homepage": "https://github.com/proycon/sesdiff/",
"Source Code": "https://github.com/proycon/sesdiff"
},
"split_keywords": [
"nlp",
" text-processing",
" lemmatization",
" linguistics"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "bb074fab704b4cb729e13caaa68dd30ceabdc3ffee1fe73cafe317f81d0b54dc",
"md5": "c4ce39c08fd8ef60811bf34d45efded5",
"sha256": "00964374d0f320082e7bb3528ea1ca7bf83107edeb8afe18c5542d0fc3746ed5"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "c4ce39c08fd8ef60811bf34d45efded5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 245602,
"upload_time": "2024-10-15T08:59:09",
"upload_time_iso_8601": "2024-10-15T08:59:09.246123Z",
"url": "https://files.pythonhosted.org/packages/bb/07/4fab704b4cb729e13caaa68dd30ceabdc3ffee1fe73cafe317f81d0b54dc/sesdiff-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba63b2a017258967c95bdf3580febe420b5bb48264be2308d83114c76c32a1fb",
"md5": "daa184f6a042bfc4fd25d336971ebc78",
"sha256": "164b4a926a550fc53373f2ced4f97a2c24341b63cd941984e2dc226fc257463d"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "daa184f6a042bfc4fd25d336971ebc78",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 239244,
"upload_time": "2024-10-15T08:59:12",
"upload_time_iso_8601": "2024-10-15T08:59:12.275917Z",
"url": "https://files.pythonhosted.org/packages/ba/63/b2a017258967c95bdf3580febe420b5bb48264be2308d83114c76c32a1fb/sesdiff-0.3.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "feed73035329d14dbf746dc08cab47cec9474bffd7682c1482a3a414103e0bce",
"md5": "68b26ac0228273f6a957c5e2e3e4cdc8",
"sha256": "469822d4e35881a977b30af12604fb8ccf28efa7de00d1236224d3859253ee8c"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "68b26ac0228273f6a957c5e2e3e4cdc8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 282881,
"upload_time": "2024-10-15T08:59:14",
"upload_time_iso_8601": "2024-10-15T08:59:14.366461Z",
"url": "https://files.pythonhosted.org/packages/fe/ed/73035329d14dbf746dc08cab47cec9474bffd7682c1482a3a414103e0bce/sesdiff-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53d7a06af88c8cf2bab0350e66bbed38cb193671ea5fce44d6a03f24728e60c0",
"md5": "caa52664d28309b6470f7526cb8e125e",
"sha256": "8c868ca58b6af1a493013962d951d56fc8709ffa5a7a0266ab82503a881ffbfe"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "caa52664d28309b6470f7526cb8e125e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 276709,
"upload_time": "2024-10-15T08:59:15",
"upload_time_iso_8601": "2024-10-15T08:59:15.713144Z",
"url": "https://files.pythonhosted.org/packages/53/d7/a06af88c8cf2bab0350e66bbed38cb193671ea5fce44d6a03f24728e60c0/sesdiff-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ee7f3a41f1ab3b52ae38c00ba01c8d4e14776ea09b67318a8a88b6d2c72f51c",
"md5": "ce0862991ef662a16eb0751b6e54c503",
"sha256": "0e19247539b7ca8a1f8f2f0f43006cc6c0d27db218f52bef33cee3a79e31391f"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ce0862991ef662a16eb0751b6e54c503",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 459892,
"upload_time": "2024-10-15T08:59:18",
"upload_time_iso_8601": "2024-10-15T08:59:18.050892Z",
"url": "https://files.pythonhosted.org/packages/2e/e7/f3a41f1ab3b52ae38c00ba01c8d4e14776ea09b67318a8a88b6d2c72f51c/sesdiff-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "453a4ea1e0e6f391ccb7105cfb3883ab2ff3c3af29aecd95cf7a776a968873cf",
"md5": "5e11be3a1a32d3211f50a7bcbd3ea764",
"sha256": "bebbd5c0ab9adf917287cd39c6a92c4cf877c481ca47273dc5799a785f9c04b7"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5e11be3a1a32d3211f50a7bcbd3ea764",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 444929,
"upload_time": "2024-10-15T08:59:19",
"upload_time_iso_8601": "2024-10-15T08:59:19.453549Z",
"url": "https://files.pythonhosted.org/packages/45/3a/4ea1e0e6f391ccb7105cfb3883ab2ff3c3af29aecd95cf7a776a968873cf/sesdiff-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "53d85e109a0de3946110ebc65f4dad0584673e800cf4bbec0ff97bfa15279915",
"md5": "c052435c590b90bf91924454900ed611",
"sha256": "c0c281560f2d5c73345baf8027e0b3505cff66835f1970baf62c194459e4b5a9"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "c052435c590b90bf91924454900ed611",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 136280,
"upload_time": "2024-10-15T08:59:20",
"upload_time_iso_8601": "2024-10-15T08:59:20.750414Z",
"url": "https://files.pythonhosted.org/packages/53/d8/5e109a0de3946110ebc65f4dad0584673e800cf4bbec0ff97bfa15279915/sesdiff-0.3.2-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44037b92feaafbb6def0af6282f3b5f33b4f3538bd741d925fa69137a97f88a8",
"md5": "4698f5350b8f6e7f85a8f81c00b0644c",
"sha256": "388fa66fb4eabc744d60e52d512e5452c971e50423bfe8ef070e4bde1f7a5277"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "4698f5350b8f6e7f85a8f81c00b0644c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 143810,
"upload_time": "2024-10-15T08:59:22",
"upload_time_iso_8601": "2024-10-15T08:59:22.153078Z",
"url": "https://files.pythonhosted.org/packages/44/03/7b92feaafbb6def0af6282f3b5f33b4f3538bd741d925fa69137a97f88a8/sesdiff-0.3.2-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8a7793fb1b2d633760206f2fa05b6cb7f355a1dc611b5f447378c75f37813df",
"md5": "b3e9617d29e38bc22207b07bff425c4f",
"sha256": "2eb8ce40fea5d3f4110a4840c4ee9f022f6c3e6a5ee25a0c7e2eb1e1ae10e5e6"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b3e9617d29e38bc22207b07bff425c4f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 245742,
"upload_time": "2024-10-15T08:59:23",
"upload_time_iso_8601": "2024-10-15T08:59:23.425570Z",
"url": "https://files.pythonhosted.org/packages/d8/a7/793fb1b2d633760206f2fa05b6cb7f355a1dc611b5f447378c75f37813df/sesdiff-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18957e322fcf460035642991e83c13fdb8fa66a5b05c89f4ae98d3a4bce23eda",
"md5": "8c6cbc5ed7015fb7142fe6860df42a31",
"sha256": "0e09befe67481b92b1b4ca08224567972782a35918349165a1b6d1a076085202"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8c6cbc5ed7015fb7142fe6860df42a31",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 239262,
"upload_time": "2024-10-15T08:59:25",
"upload_time_iso_8601": "2024-10-15T08:59:25.301182Z",
"url": "https://files.pythonhosted.org/packages/18/95/7e322fcf460035642991e83c13fdb8fa66a5b05c89f4ae98d3a4bce23eda/sesdiff-0.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c4be41b6bed6f93d098203ea3ee82f2542453079569a15920bd237375b93898",
"md5": "6dc739afb1e830f56bcc471bc33e98b3",
"sha256": "0989f4ded80e703bc73c6cf2de1df42c3817445f29b33b3755a02565a95da382"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6dc739afb1e830f56bcc471bc33e98b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 282883,
"upload_time": "2024-10-15T08:59:27",
"upload_time_iso_8601": "2024-10-15T08:59:27.413776Z",
"url": "https://files.pythonhosted.org/packages/3c/4b/e41b6bed6f93d098203ea3ee82f2542453079569a15920bd237375b93898/sesdiff-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20184419de27e46a59533b04cf9c0266a1b50e785f0b02e249549397bd10a23f",
"md5": "3dc2e35d842e3fc0d2cfb2acb52045b0",
"sha256": "63783cb46e97d026e40eff5c94643e92324251899e3293da00c42e2f9ba31350"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3dc2e35d842e3fc0d2cfb2acb52045b0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 276811,
"upload_time": "2024-10-15T08:59:29",
"upload_time_iso_8601": "2024-10-15T08:59:29.248345Z",
"url": "https://files.pythonhosted.org/packages/20/18/4419de27e46a59533b04cf9c0266a1b50e785f0b02e249549397bd10a23f/sesdiff-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0558f71a59ae15d639b978a5c6cb282f32fbc267ef9b16e533cc0f8c70ebb5ee",
"md5": "ea5c8be85cf44bbafa62ff35b89dee99",
"sha256": "b5473806705e80e1fbfa7f56fbe9b2c5d83dfcfec4ffb3069e3a85317eeb0743"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ea5c8be85cf44bbafa62ff35b89dee99",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 459949,
"upload_time": "2024-10-15T08:59:30",
"upload_time_iso_8601": "2024-10-15T08:59:30.759431Z",
"url": "https://files.pythonhosted.org/packages/05/58/f71a59ae15d639b978a5c6cb282f32fbc267ef9b16e533cc0f8c70ebb5ee/sesdiff-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15e91bcfed5fbe45981b920a7341273887cc4ddd0ef421acd125faa92f7b0170",
"md5": "8ae4f9fedbbc1fd6195da4c78f5ccdfc",
"sha256": "1917365394e66d6b5daa5ac4476dba165a4889ea3cf7c9055439eeac7d6e33be"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8ae4f9fedbbc1fd6195da4c78f5ccdfc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 444935,
"upload_time": "2024-10-15T08:59:32",
"upload_time_iso_8601": "2024-10-15T08:59:32.987639Z",
"url": "https://files.pythonhosted.org/packages/15/e9/1bcfed5fbe45981b920a7341273887cc4ddd0ef421acd125faa92f7b0170/sesdiff-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d0cb8405b60e7fd7bc0766551da344a04efa90e8759a836bf922c2bee1e3e47",
"md5": "a6793a241176cf18efef5344d3458ebe",
"sha256": "98c2bc34795e5f0ad1e2920a4af5aa50f5ba4d5a5ac5d47a49e4be6cbb9e7442"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "a6793a241176cf18efef5344d3458ebe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 136414,
"upload_time": "2024-10-15T08:59:35",
"upload_time_iso_8601": "2024-10-15T08:59:35.456481Z",
"url": "https://files.pythonhosted.org/packages/8d/0c/b8405b60e7fd7bc0766551da344a04efa90e8759a836bf922c2bee1e3e47/sesdiff-0.3.2-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3a35bbfc75bbcab88680bdc2878b6d92f284168b770c5b65d9790f8dbecc4c9",
"md5": "9f954fc20dca1568d0953745411908b5",
"sha256": "f39ad61d7549668a8c3eae154d5d0ee216b54d2ffd5831a58f439535450dcf9c"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "9f954fc20dca1568d0953745411908b5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 143892,
"upload_time": "2024-10-15T08:59:37",
"upload_time_iso_8601": "2024-10-15T08:59:37.347724Z",
"url": "https://files.pythonhosted.org/packages/d3/a3/5bbfc75bbcab88680bdc2878b6d92f284168b770c5b65d9790f8dbecc4c9/sesdiff-0.3.2-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "edfe74e23998bb720863fcade638e4552b9853e38d085968dba06413f8adfed8",
"md5": "f085ebab796cd24acd0cb3ea62755df6",
"sha256": "3257c8c96e3189973263ddc63192a54384e14bfb51cba39d4e97758ceb9dc0ed"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f085ebab796cd24acd0cb3ea62755df6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 244749,
"upload_time": "2024-10-15T08:59:38",
"upload_time_iso_8601": "2024-10-15T08:59:38.663647Z",
"url": "https://files.pythonhosted.org/packages/ed/fe/74e23998bb720863fcade638e4552b9853e38d085968dba06413f8adfed8/sesdiff-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5aa41d9e9e7ef34c7f81c63225e931996d0544cac6650b7d6c3452212ef262d7",
"md5": "e4d5cfecae9430556a455256c116db3d",
"sha256": "5f65cd5fd72434a5a12dfb5570ea16c844d061f3df1ebd09fa06971393ddd355"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e4d5cfecae9430556a455256c116db3d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 238441,
"upload_time": "2024-10-15T08:59:39",
"upload_time_iso_8601": "2024-10-15T08:59:39.990809Z",
"url": "https://files.pythonhosted.org/packages/5a/a4/1d9e9e7ef34c7f81c63225e931996d0544cac6650b7d6c3452212ef262d7/sesdiff-0.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5c9d2617491bd68e64814bbe465a4905ecb79bf40560ecc159c10327b048bc3",
"md5": "9f7b53df68fbd2e818bad43f61c18c2d",
"sha256": "849a227aaaa27d58a1a01b80a9df66867e800232cdeda13ca6796b8380c2ad8a"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9f7b53df68fbd2e818bad43f61c18c2d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 282298,
"upload_time": "2024-10-15T08:59:41",
"upload_time_iso_8601": "2024-10-15T08:59:41.338846Z",
"url": "https://files.pythonhosted.org/packages/e5/c9/d2617491bd68e64814bbe465a4905ecb79bf40560ecc159c10327b048bc3/sesdiff-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df951b58c488c237b4777c04d86191a1bca8d5c37ba46bfb1d9fe17496511684",
"md5": "7c76478e75f8ff41e9af168611ac28c6",
"sha256": "a8190896d1167e4dfe2ac99880f55c4a78c8933524db0e6fc3e7c0c3f69fd201"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7c76478e75f8ff41e9af168611ac28c6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 275797,
"upload_time": "2024-10-15T08:59:42",
"upload_time_iso_8601": "2024-10-15T08:59:42.516749Z",
"url": "https://files.pythonhosted.org/packages/df/95/1b58c488c237b4777c04d86191a1bca8d5c37ba46bfb1d9fe17496511684/sesdiff-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89a0c5f2db74d53568b625346c12addb12f023e5e5da2590b53a01deaedd536f",
"md5": "fe73adc9b711eeafa4a66d1bbc6202fe",
"sha256": "3eefbc9f0183126dac1717796deeb2ee1289a07a0eed75b9ac8ca35111dbb614"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fe73adc9b711eeafa4a66d1bbc6202fe",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 460565,
"upload_time": "2024-10-15T08:59:43",
"upload_time_iso_8601": "2024-10-15T08:59:43.962553Z",
"url": "https://files.pythonhosted.org/packages/89/a0/c5f2db74d53568b625346c12addb12f023e5e5da2590b53a01deaedd536f/sesdiff-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abf2dd239e53c3982fe42c1d38bcd5c12f366a45368298fa3e687bffdd14de65",
"md5": "dac3537f24f568d609c6ebad0076b250",
"sha256": "b2a01c342b521fd2107c5342896ccbf3951e87094b82ec1592c9d86aa209b33a"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dac3537f24f568d609c6ebad0076b250",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 444887,
"upload_time": "2024-10-15T08:59:45",
"upload_time_iso_8601": "2024-10-15T08:59:45.894758Z",
"url": "https://files.pythonhosted.org/packages/ab/f2/dd239e53c3982fe42c1d38bcd5c12f366a45368298fa3e687bffdd14de65/sesdiff-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da4f3181cd60e73cf4e491be231187487cb44fa2bf0e4ba44dc5764c0c9b360a",
"md5": "ecc8d2568f8971cea5e59fc65725fd75",
"sha256": "b4bacb43327bec6c1cb9f015ad03da84e1f5a1d0a5f6a844e2b16a1d1463b428"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "ecc8d2568f8971cea5e59fc65725fd75",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 135691,
"upload_time": "2024-10-15T08:59:47",
"upload_time_iso_8601": "2024-10-15T08:59:47.089118Z",
"url": "https://files.pythonhosted.org/packages/da/4f/3181cd60e73cf4e491be231187487cb44fa2bf0e4ba44dc5764c0c9b360a/sesdiff-0.3.2-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6ea7793ff8305a5c395edb15821c63abe45ce50b90a1a2efe65fe1e57444a939",
"md5": "714e312b887b05d199d3c790b01d2fed",
"sha256": "fc761a555230b4c56f8fa4815b9c98623687386aa40531632ea2bcc418a680e2"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "714e312b887b05d199d3c790b01d2fed",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 143068,
"upload_time": "2024-10-15T08:59:49",
"upload_time_iso_8601": "2024-10-15T08:59:49.018433Z",
"url": "https://files.pythonhosted.org/packages/6e/a7/793ff8305a5c395edb15821c63abe45ce50b90a1a2efe65fe1e57444a939/sesdiff-0.3.2-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f303fd2bf73fce5356c7cd90ec548eb577a90348a4bc92f70263d6c72994ecc5",
"md5": "024ec55a897b2ca4401696f5468767a0",
"sha256": "fcc82dfaeef381f303c7ff7ad43ddfb1b9643463ca388c7e3c1c97c47300b14c"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "024ec55a897b2ca4401696f5468767a0",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 283737,
"upload_time": "2024-10-15T08:59:50",
"upload_time_iso_8601": "2024-10-15T08:59:50.301656Z",
"url": "https://files.pythonhosted.org/packages/f3/03/fd2bf73fce5356c7cd90ec548eb577a90348a4bc92f70263d6c72994ecc5/sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "436d19fb9385563851db59119c1e7824d07736cc6eedeb0f9916282e7f41da36",
"md5": "348e28138e0a23787045e030dfbec256",
"sha256": "529cc113795e3dd939f54bf0ea31d16c74a49e1006d0b812bb534dceab003a60"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "348e28138e0a23787045e030dfbec256",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 277388,
"upload_time": "2024-10-15T08:59:52",
"upload_time_iso_8601": "2024-10-15T08:59:52.251066Z",
"url": "https://files.pythonhosted.org/packages/43/6d/19fb9385563851db59119c1e7824d07736cc6eedeb0f9916282e7f41da36/sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d373b445a163e36210b10e539da1b493a7d175a514e2b780787311122ccdff9",
"md5": "1efa4d38901015f1d8ee9fc2540e5746",
"sha256": "f4990fcbc7bb22c4783fe2f662e46bb54ad21f11fa7747a690611044d5989998"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1efa4d38901015f1d8ee9fc2540e5746",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 460654,
"upload_time": "2024-10-15T08:59:53",
"upload_time_iso_8601": "2024-10-15T08:59:53.584161Z",
"url": "https://files.pythonhosted.org/packages/6d/37/3b445a163e36210b10e539da1b493a7d175a514e2b780787311122ccdff9/sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64a70cd50b0dac5ef1fcfc683b2506d5a267d81d76e722e69f5f6cb6974bd2b9",
"md5": "0ed1dd95dc6e47a3bfa3c739ebc4b070",
"sha256": "7c30f29dee5b233967992c58836420289168487f22fb7ad409546a6b6b18e336"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0ed1dd95dc6e47a3bfa3c739ebc4b070",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 445575,
"upload_time": "2024-10-15T08:59:55",
"upload_time_iso_8601": "2024-10-15T08:59:55.652759Z",
"url": "https://files.pythonhosted.org/packages/64/a7/0cd50b0dac5ef1fcfc683b2506d5a267d81d76e722e69f5f6cb6974bd2b9/sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eeab18b2fa9e7a378ff266d29d2c2784bc966d72780ec1b781aaaf5b266e0f69",
"md5": "a7f2aafe0317dc82c3241e9e595fb97a",
"sha256": "defa0cfc4813f07be8504a12c55b3dac638189aacbbd49d7fa246a2184af49fc"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp37-none-win32.whl",
"has_sig": false,
"md5_digest": "a7f2aafe0317dc82c3241e9e595fb97a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 137013,
"upload_time": "2024-10-15T08:59:57",
"upload_time_iso_8601": "2024-10-15T08:59:57.350015Z",
"url": "https://files.pythonhosted.org/packages/ee/ab/18b2fa9e7a378ff266d29d2c2784bc966d72780ec1b781aaaf5b266e0f69/sesdiff-0.3.2-cp37-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5be24b4fc62e3886792593e2efa25f901b8b521eb6ce51121f5bc78d4bf4bcc4",
"md5": "0e83aec299d80302e34f435c42d1ff48",
"sha256": "e9ca093027030f6e2b2d08b1bfae3b12bbe9a11464b065f8b8f028bff0e0e1b9"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp37-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "0e83aec299d80302e34f435c42d1ff48",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 144472,
"upload_time": "2024-10-15T08:59:58",
"upload_time_iso_8601": "2024-10-15T08:59:58.588077Z",
"url": "https://files.pythonhosted.org/packages/5b/e2/4b4fc62e3886792593e2efa25f901b8b521eb6ce51121f5bc78d4bf4bcc4/sesdiff-0.3.2-cp37-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51773b087b0e95b456528bbb2a84023085729705d1fe0d0735560a06774801d8",
"md5": "3437b331520ce76a2ffe1bb03d145541",
"sha256": "aeda0c9c1268e08b853a52344ceb1907da95fecfc26fad8e50578d3eeee8a6ba"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3437b331520ce76a2ffe1bb03d145541",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 283340,
"upload_time": "2024-10-15T08:59:59",
"upload_time_iso_8601": "2024-10-15T08:59:59.857356Z",
"url": "https://files.pythonhosted.org/packages/51/77/3b087b0e95b456528bbb2a84023085729705d1fe0d0735560a06774801d8/sesdiff-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6a1d1aaa902c6e684548a4d05c2f46d2dbf2bd5b203d217aba3cd268a9b014f",
"md5": "7642872b891e1d2aaf65518eab38eb24",
"sha256": "7afba8c8ef37321bcd859f573eb444731296e443112ec6de2613e2873a901cc1"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7642872b891e1d2aaf65518eab38eb24",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 277332,
"upload_time": "2024-10-15T09:00:01",
"upload_time_iso_8601": "2024-10-15T09:00:01.212938Z",
"url": "https://files.pythonhosted.org/packages/e6/a1/d1aaa902c6e684548a4d05c2f46d2dbf2bd5b203d217aba3cd268a9b014f/sesdiff-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "436c1d77e65bcf87c3a95d604dcfe312e471639227cd6a828dbd670df67e1ce7",
"md5": "3b8dbd4c7a3b7039b395355f7b4a108c",
"sha256": "4d0a0efc9968edbdc88398679285bdde2a154272cca97a0464dfed4f072c1216"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3b8dbd4c7a3b7039b395355f7b4a108c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 460763,
"upload_time": "2024-10-15T09:00:03",
"upload_time_iso_8601": "2024-10-15T09:00:03.039031Z",
"url": "https://files.pythonhosted.org/packages/43/6c/1d77e65bcf87c3a95d604dcfe312e471639227cd6a828dbd670df67e1ce7/sesdiff-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cd6808a25bc64791b7a7963c76f8ec35e756daf3b29cb86e9d525d374e69cd7",
"md5": "89fc4286a973fa29a13080fb05f46922",
"sha256": "f984dbe2d64ac3ff48dcc84455483dea00042b093cfa1fb40f4b4b93d425657c"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "89fc4286a973fa29a13080fb05f46922",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 445454,
"upload_time": "2024-10-15T09:00:04",
"upload_time_iso_8601": "2024-10-15T09:00:04.473920Z",
"url": "https://files.pythonhosted.org/packages/7c/d6/808a25bc64791b7a7963c76f8ec35e756daf3b29cb86e9d525d374e69cd7/sesdiff-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "043c02a366103ab59ac3b1ae02bdf9c919bee21a0525d9d014646bbc169c6f8f",
"md5": "79d54894e6c247ea460d63609c5c4f2b",
"sha256": "302aaa8ec03cac5af03c9232cf102a778ed0a9be4adafda4674acbaa34208160"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "79d54894e6c247ea460d63609c5c4f2b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 136968,
"upload_time": "2024-10-15T09:00:05",
"upload_time_iso_8601": "2024-10-15T09:00:05.682474Z",
"url": "https://files.pythonhosted.org/packages/04/3c/02a366103ab59ac3b1ae02bdf9c919bee21a0525d9d014646bbc169c6f8f/sesdiff-0.3.2-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad822628343096322de657b3b8394adde8766108a8d2740a03cacfd33743b888",
"md5": "047986d4fe23bd1e5c4598258960d9b6",
"sha256": "2523ebe2c0d6f270b981ff8c106cda0fbc38cbbbc2b366b4bec4723aafe870ed"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "047986d4fe23bd1e5c4598258960d9b6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 144623,
"upload_time": "2024-10-15T09:00:06",
"upload_time_iso_8601": "2024-10-15T09:00:06.960285Z",
"url": "https://files.pythonhosted.org/packages/ad/82/2628343096322de657b3b8394adde8766108a8d2740a03cacfd33743b888/sesdiff-0.3.2-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3afb08d5c14e8a766fc3429fd123b89984052b01646d0656341a6095f3fcadb0",
"md5": "657f8e7dd45d1edb92ac94b0903b52ff",
"sha256": "128d1008e001cae2bcc712489eb263bc75a5adbd99eae6576456e2756d89ee7c"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "657f8e7dd45d1edb92ac94b0903b52ff",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 245907,
"upload_time": "2024-10-15T09:00:08",
"upload_time_iso_8601": "2024-10-15T09:00:08.977597Z",
"url": "https://files.pythonhosted.org/packages/3a/fb/08d5c14e8a766fc3429fd123b89984052b01646d0656341a6095f3fcadb0/sesdiff-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a92e1917406324256fe39f18892bfcbfab9f4057931f3cdffd66463805ceb34",
"md5": "57bb9b1977f53c41e23435985371136d",
"sha256": "bb924f78baa04c08c1aaf84c917593754188264a71a6a6c4d050bb3fc78d252a"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "57bb9b1977f53c41e23435985371136d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 239698,
"upload_time": "2024-10-15T09:00:10",
"upload_time_iso_8601": "2024-10-15T09:00:10.383577Z",
"url": "https://files.pythonhosted.org/packages/6a/92/e1917406324256fe39f18892bfcbfab9f4057931f3cdffd66463805ceb34/sesdiff-0.3.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "363af241f02553733312ed3dcca17e7d01188b406a7afcce571939e1c7a4535f",
"md5": "7f174b8740022153d2e7e6bae80e7a83",
"sha256": "e78d43e08fc8ab1e4590464aeda573888e37adb6d034b6dd74e1eaa8d480e789"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7f174b8740022153d2e7e6bae80e7a83",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 283292,
"upload_time": "2024-10-15T09:00:11",
"upload_time_iso_8601": "2024-10-15T09:00:11.817619Z",
"url": "https://files.pythonhosted.org/packages/36/3a/f241f02553733312ed3dcca17e7d01188b406a7afcce571939e1c7a4535f/sesdiff-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b6b0e0a989d857c83e701c1710f4437d6c4c557aca706a374c0ae58c09cc75ee",
"md5": "3e8de875a9a24ad00d34e5d72d627ca0",
"sha256": "d118e41fb8e511da24aeca2c4cfd179d618f39fbb989c2a0661eae44c1448a11"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3e8de875a9a24ad00d34e5d72d627ca0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 277268,
"upload_time": "2024-10-15T09:00:13",
"upload_time_iso_8601": "2024-10-15T09:00:13.219256Z",
"url": "https://files.pythonhosted.org/packages/b6/b0/e0a989d857c83e701c1710f4437d6c4c557aca706a374c0ae58c09cc75ee/sesdiff-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d70882fa945f5e3bd9bb6de0447d5d0200bf02861b5b4b8d122fba13c801ee12",
"md5": "09786e583a493d204b084da536c46065",
"sha256": "9e9df8e3b40f9514e25a150d4ae9fc89891b3da739c288327950b50c4c63ebef"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "09786e583a493d204b084da536c46065",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 461154,
"upload_time": "2024-10-15T09:00:14",
"upload_time_iso_8601": "2024-10-15T09:00:14.545307Z",
"url": "https://files.pythonhosted.org/packages/d7/08/82fa945f5e3bd9bb6de0447d5d0200bf02861b5b4b8d122fba13c801ee12/sesdiff-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e094f700a13220808b1c2af7e0d20e4aaf63576bb8e466a5b6459902fc8b77bb",
"md5": "3640f7ce7fa161a932b366219d39f30f",
"sha256": "957fdd7aed7415c93f09169aee6c48dd4b7b19c066aefc225de41c6413c186dc"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3640f7ce7fa161a932b366219d39f30f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 445769,
"upload_time": "2024-10-15T09:00:15",
"upload_time_iso_8601": "2024-10-15T09:00:15.971190Z",
"url": "https://files.pythonhosted.org/packages/e0/94/f700a13220808b1c2af7e0d20e4aaf63576bb8e466a5b6459902fc8b77bb/sesdiff-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d082c7be05789b57d41ab67842b61f4729605a3c535adaf4fe378f9d8aae23be",
"md5": "c962c8a5640da16f5d4735f0567285cc",
"sha256": "b47720e5cec563390c5da183aeeab7a91d066a6df7cb9f8012984d18533f4d99"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "c962c8a5640da16f5d4735f0567285cc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 137182,
"upload_time": "2024-10-15T09:00:17",
"upload_time_iso_8601": "2024-10-15T09:00:17.139042Z",
"url": "https://files.pythonhosted.org/packages/d0/82/c7be05789b57d41ab67842b61f4729605a3c535adaf4fe378f9d8aae23be/sesdiff-0.3.2-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa228cd81c7cbccf5c035556862e04877f27fb84fde48d4d70273711ee70e1f6",
"md5": "91d77c8751368da4813a304354003779",
"sha256": "a743804a0764f85b272f547cf6ec762232423924a43a40fd6d267e0c7a283313"
},
"downloads": -1,
"filename": "sesdiff-0.3.2-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "91d77c8751368da4813a304354003779",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 144577,
"upload_time": "2024-10-15T09:00:18",
"upload_time_iso_8601": "2024-10-15T09:00:18.337475Z",
"url": "https://files.pythonhosted.org/packages/aa/22/8cd81c7cbccf5c035556862e04877f27fb84fde48d4d70273711ee70e1f6/sesdiff-0.3.2-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef2d0cc7409f6dd296cbbe1edeb82dc652cea177a4e001e9d2bfcf502c6ac4d0",
"md5": "344504084306f0c6c494c292d17b1517",
"sha256": "684c063f9d9b5731a83a072b33b0276868b7ae78acb36bf43f04b4281e612b12"
},
"downloads": -1,
"filename": "sesdiff-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "344504084306f0c6c494c292d17b1517",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4910,
"upload_time": "2024-10-15T08:59:03",
"upload_time_iso_8601": "2024-10-15T08:59:03.003373Z",
"url": "https://files.pythonhosted.org/packages/ef/2d/0cc7409f6dd296cbbe1edeb82dc652cea177a4e001e9d2bfcf502c6ac4d0/sesdiff-0.3.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-15 08:59:03",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "proycon",
"github_project": "sesdiff",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "sesdiff"
}