Skip to main content

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.

Project description

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.

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sesdiff-0.3.2.tar.gz (4.9 kB view details)

Uploaded Source

Built Distributions

sesdiff-0.3.2-cp312-none-win_amd64.whl (143.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

sesdiff-0.3.2-cp312-none-win32.whl (135.7 kB view details)

Uploaded CPython 3.12 Windows x86

sesdiff-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (444.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

sesdiff-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (460.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

sesdiff-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (238.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

sesdiff-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (244.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

sesdiff-0.3.2-cp311-none-win_amd64.whl (143.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

sesdiff-0.3.2-cp311-none-win32.whl (136.4 kB view details)

Uploaded CPython 3.11 Windows x86

sesdiff-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (444.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

sesdiff-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (459.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

sesdiff-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (239.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

sesdiff-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (245.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

sesdiff-0.3.2-cp310-none-win_amd64.whl (143.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

sesdiff-0.3.2-cp310-none-win32.whl (136.3 kB view details)

Uploaded CPython 3.10 Windows x86

sesdiff-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (444.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

sesdiff-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (459.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

sesdiff-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (239.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

sesdiff-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl (245.6 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

sesdiff-0.3.2-cp39-none-win_amd64.whl (144.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

sesdiff-0.3.2-cp39-none-win32.whl (137.2 kB view details)

Uploaded CPython 3.9 Windows x86

sesdiff-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (445.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

sesdiff-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl (461.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

sesdiff-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.2-cp39-cp39-macosx_11_0_arm64.whl (239.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

sesdiff-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl (245.9 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

sesdiff-0.3.2-cp38-none-win_amd64.whl (144.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

sesdiff-0.3.2-cp38-none-win32.whl (137.0 kB view details)

Uploaded CPython 3.8 Windows x86

sesdiff-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl (445.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

sesdiff-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl (460.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

sesdiff-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.2-cp37-none-win_amd64.whl (144.5 kB view details)

Uploaded CPython 3.7 Windows x86-64

sesdiff-0.3.2-cp37-none-win32.whl (137.0 kB view details)

Uploaded CPython 3.7 Windows x86

sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl (445.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_aarch64.whl (460.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

File details

Details for the file sesdiff-0.3.2.tar.gz.

File metadata

  • Download URL: sesdiff-0.3.2.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2.tar.gz
Algorithm Hash digest
SHA256 684c063f9d9b5731a83a072b33b0276868b7ae78acb36bf43f04b4281e612b12
MD5 344504084306f0c6c494c292d17b1517
BLAKE2b-256 ef2d0cc7409f6dd296cbbe1edeb82dc652cea177a4e001e9d2bfcf502c6ac4d0

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp312-none-win_amd64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 143.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 fc761a555230b4c56f8fa4815b9c98623687386aa40531632ea2bcc418a680e2
MD5 714e312b887b05d199d3c790b01d2fed
BLAKE2b-256 6ea7793ff8305a5c395edb15821c63abe45ce50b90a1a2efe65fe1e57444a939

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp312-none-win32.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp312-none-win32.whl
  • Upload date:
  • Size: 135.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 b4bacb43327bec6c1cb9f015ad03da84e1f5a1d0a5f6a844e2b16a1d1463b428
MD5 ecc8d2568f8971cea5e59fc65725fd75
BLAKE2b-256 da4f3181cd60e73cf4e491be231187487cb44fa2bf0e4ba44dc5764c0c9b360a

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2a01c342b521fd2107c5342896ccbf3951e87094b82ec1592c9d86aa209b33a
MD5 dac3537f24f568d609c6ebad0076b250
BLAKE2b-256 abf2dd239e53c3982fe42c1d38bcd5c12f366a45368298fa3e687bffdd14de65

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3eefbc9f0183126dac1717796deeb2ee1289a07a0eed75b9ac8ca35111dbb614
MD5 fe73adc9b711eeafa4a66d1bbc6202fe
BLAKE2b-256 89a0c5f2db74d53568b625346c12addb12f023e5e5da2590b53a01deaedd536f

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8190896d1167e4dfe2ac99880f55c4a78c8933524db0e6fc3e7c0c3f69fd201
MD5 7c76478e75f8ff41e9af168611ac28c6
BLAKE2b-256 df951b58c488c237b4777c04d86191a1bca8d5c37ba46bfb1d9fe17496511684

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 849a227aaaa27d58a1a01b80a9df66867e800232cdeda13ca6796b8380c2ad8a
MD5 9f7b53df68fbd2e818bad43f61c18c2d
BLAKE2b-256 e5c9d2617491bd68e64814bbe465a4905ecb79bf40560ecc159c10327b048bc3

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 238.4 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f65cd5fd72434a5a12dfb5570ea16c844d061f3df1ebd09fa06971393ddd355
MD5 e4d5cfecae9430556a455256c116db3d
BLAKE2b-256 5aa41d9e9e7ef34c7f81c63225e931996d0544cac6650b7d6c3452212ef262d7

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3257c8c96e3189973263ddc63192a54384e14bfb51cba39d4e97758ceb9dc0ed
MD5 f085ebab796cd24acd0cb3ea62755df6
BLAKE2b-256 edfe74e23998bb720863fcade638e4552b9853e38d085968dba06413f8adfed8

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp311-none-win_amd64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 143.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f39ad61d7549668a8c3eae154d5d0ee216b54d2ffd5831a58f439535450dcf9c
MD5 9f954fc20dca1568d0953745411908b5
BLAKE2b-256 d3a35bbfc75bbcab88680bdc2878b6d92f284168b770c5b65d9790f8dbecc4c9

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp311-none-win32.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp311-none-win32.whl
  • Upload date:
  • Size: 136.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 98c2bc34795e5f0ad1e2920a4af5aa50f5ba4d5a5ac5d47a49e4be6cbb9e7442
MD5 a6793a241176cf18efef5344d3458ebe
BLAKE2b-256 8d0cb8405b60e7fd7bc0766551da344a04efa90e8759a836bf922c2bee1e3e47

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1917365394e66d6b5daa5ac4476dba165a4889ea3cf7c9055439eeac7d6e33be
MD5 8ae4f9fedbbc1fd6195da4c78f5ccdfc
BLAKE2b-256 15e91bcfed5fbe45981b920a7341273887cc4ddd0ef421acd125faa92f7b0170

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5473806705e80e1fbfa7f56fbe9b2c5d83dfcfec4ffb3069e3a85317eeb0743
MD5 ea5c8be85cf44bbafa62ff35b89dee99
BLAKE2b-256 0558f71a59ae15d639b978a5c6cb282f32fbc267ef9b16e533cc0f8c70ebb5ee

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63783cb46e97d026e40eff5c94643e92324251899e3293da00c42e2f9ba31350
MD5 3dc2e35d842e3fc0d2cfb2acb52045b0
BLAKE2b-256 20184419de27e46a59533b04cf9c0266a1b50e785f0b02e249549397bd10a23f

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0989f4ded80e703bc73c6cf2de1df42c3817445f29b33b3755a02565a95da382
MD5 6dc739afb1e830f56bcc471bc33e98b3
BLAKE2b-256 3c4be41b6bed6f93d098203ea3ee82f2542453079569a15920bd237375b93898

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 239.3 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e09befe67481b92b1b4ca08224567972782a35918349165a1b6d1a076085202
MD5 8c6cbc5ed7015fb7142fe6860df42a31
BLAKE2b-256 18957e322fcf460035642991e83c13fdb8fa66a5b05c89f4ae98d3a4bce23eda

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2eb8ce40fea5d3f4110a4840c4ee9f022f6c3e6a5ee25a0c7e2eb1e1ae10e5e6
MD5 b3e9617d29e38bc22207b07bff425c4f
BLAKE2b-256 d8a7793fb1b2d633760206f2fa05b6cb7f355a1dc611b5f447378c75f37813df

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp310-none-win_amd64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 143.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 388fa66fb4eabc744d60e52d512e5452c971e50423bfe8ef070e4bde1f7a5277
MD5 4698f5350b8f6e7f85a8f81c00b0644c
BLAKE2b-256 44037b92feaafbb6def0af6282f3b5f33b4f3538bd741d925fa69137a97f88a8

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp310-none-win32.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp310-none-win32.whl
  • Upload date:
  • Size: 136.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c0c281560f2d5c73345baf8027e0b3505cff66835f1970baf62c194459e4b5a9
MD5 c052435c590b90bf91924454900ed611
BLAKE2b-256 53d85e109a0de3946110ebc65f4dad0584673e800cf4bbec0ff97bfa15279915

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bebbd5c0ab9adf917287cd39c6a92c4cf877c481ca47273dc5799a785f9c04b7
MD5 5e11be3a1a32d3211f50a7bcbd3ea764
BLAKE2b-256 453a4ea1e0e6f391ccb7105cfb3883ab2ff3c3af29aecd95cf7a776a968873cf

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e19247539b7ca8a1f8f2f0f43006cc6c0d27db218f52bef33cee3a79e31391f
MD5 ce0862991ef662a16eb0751b6e54c503
BLAKE2b-256 2ee7f3a41f1ab3b52ae38c00ba01c8d4e14776ea09b67318a8a88b6d2c72f51c

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c868ca58b6af1a493013962d951d56fc8709ffa5a7a0266ab82503a881ffbfe
MD5 caa52664d28309b6470f7526cb8e125e
BLAKE2b-256 53d7a06af88c8cf2bab0350e66bbed38cb193671ea5fce44d6a03f24728e60c0

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 469822d4e35881a977b30af12604fb8ccf28efa7de00d1236224d3859253ee8c
MD5 68b26ac0228273f6a957c5e2e3e4cdc8
BLAKE2b-256 feed73035329d14dbf746dc08cab47cec9474bffd7682c1482a3a414103e0bce

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 239.2 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 164b4a926a550fc53373f2ced4f97a2c24341b63cd941984e2dc226fc257463d
MD5 daa184f6a042bfc4fd25d336971ebc78
BLAKE2b-256 ba63b2a017258967c95bdf3580febe420b5bb48264be2308d83114c76c32a1fb

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00964374d0f320082e7bb3528ea1ca7bf83107edeb8afe18c5542d0fc3746ed5
MD5 c4ce39c08fd8ef60811bf34d45efded5
BLAKE2b-256 bb074fab704b4cb729e13caaa68dd30ceabdc3ffee1fe73cafe317f81d0b54dc

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp39-none-win_amd64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 144.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a743804a0764f85b272f547cf6ec762232423924a43a40fd6d267e0c7a283313
MD5 91d77c8751368da4813a304354003779
BLAKE2b-256 aa228cd81c7cbccf5c035556862e04877f27fb84fde48d4d70273711ee70e1f6

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp39-none-win32.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp39-none-win32.whl
  • Upload date:
  • Size: 137.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b47720e5cec563390c5da183aeeab7a91d066a6df7cb9f8012984d18533f4d99
MD5 c962c8a5640da16f5d4735f0567285cc
BLAKE2b-256 d082c7be05789b57d41ab67842b61f4729605a3c535adaf4fe378f9d8aae23be

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 445.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 957fdd7aed7415c93f09169aee6c48dd4b7b19c066aefc225de41c6413c186dc
MD5 3640f7ce7fa161a932b366219d39f30f
BLAKE2b-256 e094f700a13220808b1c2af7e0d20e4aaf63576bb8e466a5b6459902fc8b77bb

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 461.2 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e9df8e3b40f9514e25a150d4ae9fc89891b3da739c288327950b50c4c63ebef
MD5 09786e583a493d204b084da536c46065
BLAKE2b-256 d70882fa945f5e3bd9bb6de0447d5d0200bf02861b5b4b8d122fba13c801ee12

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d118e41fb8e511da24aeca2c4cfd179d618f39fbb989c2a0661eae44c1448a11
MD5 3e8de875a9a24ad00d34e5d72d627ca0
BLAKE2b-256 b6b0e0a989d857c83e701c1710f4437d6c4c557aca706a374c0ae58c09cc75ee

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e78d43e08fc8ab1e4590464aeda573888e37adb6d034b6dd74e1eaa8d480e789
MD5 7f174b8740022153d2e7e6bae80e7a83
BLAKE2b-256 363af241f02553733312ed3dcca17e7d01188b406a7afcce571939e1c7a4535f

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 239.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb924f78baa04c08c1aaf84c917593754188264a71a6a6c4d050bb3fc78d252a
MD5 57bb9b1977f53c41e23435985371136d
BLAKE2b-256 6a92e1917406324256fe39f18892bfcbfab9f4057931f3cdffd66463805ceb34

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 245.9 kB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 128d1008e001cae2bcc712489eb263bc75a5adbd99eae6576456e2756d89ee7c
MD5 657f8e7dd45d1edb92ac94b0903b52ff
BLAKE2b-256 3afb08d5c14e8a766fc3429fd123b89984052b01646d0656341a6095f3fcadb0

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp38-none-win_amd64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 144.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2523ebe2c0d6f270b981ff8c106cda0fbc38cbbbc2b366b4bec4723aafe870ed
MD5 047986d4fe23bd1e5c4598258960d9b6
BLAKE2b-256 ad822628343096322de657b3b8394adde8766108a8d2740a03cacfd33743b888

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp38-none-win32.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp38-none-win32.whl
  • Upload date:
  • Size: 137.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 302aaa8ec03cac5af03c9232cf102a778ed0a9be4adafda4674acbaa34208160
MD5 79d54894e6c247ea460d63609c5c4f2b
BLAKE2b-256 043c02a366103ab59ac3b1ae02bdf9c919bee21a0525d9d014646bbc169c6f8f

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 445.5 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f984dbe2d64ac3ff48dcc84455483dea00042b093cfa1fb40f4b4b93d425657c
MD5 89fc4286a973fa29a13080fb05f46922
BLAKE2b-256 7cd6808a25bc64791b7a7963c76f8ec35e756daf3b29cb86e9d525d374e69cd7

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 460.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d0a0efc9968edbdc88398679285bdde2a154272cca97a0464dfed4f072c1216
MD5 3b8dbd4c7a3b7039b395355f7b4a108c
BLAKE2b-256 436c1d77e65bcf87c3a95d604dcfe312e471639227cd6a828dbd670df67e1ce7

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7afba8c8ef37321bcd859f573eb444731296e443112ec6de2613e2873a901cc1
MD5 7642872b891e1d2aaf65518eab38eb24
BLAKE2b-256 e6a1d1aaa902c6e684548a4d05c2f46d2dbf2bd5b203d217aba3cd268a9b014f

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeda0c9c1268e08b853a52344ceb1907da95fecfc26fad8e50578d3eeee8a6ba
MD5 3437b331520ce76a2ffe1bb03d145541
BLAKE2b-256 51773b087b0e95b456528bbb2a84023085729705d1fe0d0735560a06774801d8

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp37-none-win_amd64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 144.5 kB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 e9ca093027030f6e2b2d08b1bfae3b12bbe9a11464b065f8b8f028bff0e0e1b9
MD5 0e83aec299d80302e34f435c42d1ff48
BLAKE2b-256 5be24b4fc62e3886792593e2efa25f901b8b521eb6ce51121f5bc78d4bf4bcc4

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp37-none-win32.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp37-none-win32.whl
  • Upload date:
  • Size: 137.0 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 defa0cfc4813f07be8504a12c55b3dac638189aacbbd49d7fa246a2184af49fc
MD5 a7f2aafe0317dc82c3241e9e595fb97a
BLAKE2b-256 eeab18b2fa9e7a378ff266d29d2c2784bc966d72780ec1b781aaaf5b266e0f69

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 445.6 kB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.1.dev0+g94f810c.d20240510 CPython/3.12.7

File hashes

Hashes for sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c30f29dee5b233967992c58836420289168487f22fb7ad409546a6b6b18e336
MD5 0ed1dd95dc6e47a3bfa3c739ebc4b070
BLAKE2b-256 64a70cd50b0dac5ef1fcfc683b2506d5a267d81d76e722e69f5f6cb6974bd2b9

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4990fcbc7bb22c4783fe2f662e46bb54ad21f11fa7747a690611044d5989998
MD5 1efa4d38901015f1d8ee9fc2540e5746
BLAKE2b-256 6d373b445a163e36210b10e539da1b493a7d175a514e2b780787311122ccdff9

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 529cc113795e3dd939f54bf0ea31d16c74a49e1006d0b812bb534dceab003a60
MD5 348e28138e0a23787045e030dfbec256
BLAKE2b-256 436d19fb9385563851db59119c1e7824d07736cc6eedeb0f9916282e7f41da36

See more details on using hashes here.

Provenance

File details

Details for the file sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sesdiff-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcc82dfaeef381f303c7ff7ad43ddfb1b9643463ca388c7e3c1c97c47300b14c
MD5 024ec55a897b2ca4401696f5468767a0
BLAKE2b-256 f303fd2bf73fce5356c7cd90ec548eb577a90348a4bc92f70263d6c72994ecc5

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page