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.1.tar.gz (4.9 kB view details)

Uploaded Source

Built Distributions

sesdiff-0.3.1-cp312-none-win_amd64.whl (140.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

sesdiff-0.3.1-cp312-none-win32.whl (133.0 kB view details)

Uploaded CPython 3.12 Windows x86

sesdiff-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (442.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

sesdiff-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (457.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

sesdiff-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (235.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

sesdiff-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (242.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

sesdiff-0.3.1-cp311-none-win_amd64.whl (141.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

sesdiff-0.3.1-cp311-none-win32.whl (134.0 kB view details)

Uploaded CPython 3.11 Windows x86

sesdiff-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (442.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

sesdiff-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (457.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

sesdiff-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (236.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

sesdiff-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (243.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

sesdiff-0.3.1-cp310-none-win_amd64.whl (141.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

sesdiff-0.3.1-cp310-none-win32.whl (133.8 kB view details)

Uploaded CPython 3.10 Windows x86

sesdiff-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (442.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

sesdiff-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (457.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

sesdiff-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (236.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

sesdiff-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl (243.0 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

sesdiff-0.3.1-cp39-none-win_amd64.whl (142.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

sesdiff-0.3.1-cp39-none-win32.whl (134.7 kB view details)

Uploaded CPython 3.9 Windows x86

sesdiff-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (443.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

sesdiff-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (458.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

sesdiff-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (237.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

sesdiff-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl (243.2 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

sesdiff-0.3.1-cp38-none-win_amd64.whl (142.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

sesdiff-0.3.1-cp38-none-win32.whl (134.6 kB view details)

Uploaded CPython 3.8 Windows x86

sesdiff-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl (443.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

sesdiff-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl (458.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

sesdiff-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

sesdiff-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

sesdiff-0.3.1-cp37-none-win_amd64.whl (142.0 kB view details)

Uploaded CPython 3.7 Windows x86-64

sesdiff-0.3.1-cp37-none-win32.whl (134.6 kB view details)

Uploaded CPython 3.7 Windows x86

sesdiff-0.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl (443.4 kB view details)

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

sesdiff-0.3.1-cp37-cp37m-musllinux_1_2_aarch64.whl (458.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

sesdiff-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.9 kB view details)

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

sesdiff-0.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: sesdiff-0.3.1.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.1.tar.gz
Algorithm Hash digest
SHA256 7f44b114aa18235cfb3dd3b96164e39a5dbc457a7be3c72661222a6005ba9c33
MD5 ca1d9c5fe655b8f8d3cf2219b2cb218e
BLAKE2b-256 6d9931c48c362e070070e215aea42aa2f3f8c6f107a72d4595053f6ad9a2a938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 140.6 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.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a2f37233085e42da770da82199c90bc61c25477d055f27cb84cd523b8b8183f3
MD5 09b0623ba44c7cc3165897ddcde11e0c
BLAKE2b-256 7512ac4be0864096603b9c880dae87b2f87ef3c62d1c32ab7e828eb1ff5f92e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp312-none-win32.whl
  • Upload date:
  • Size: 133.0 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.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 75123ed97931f1d500e3bc10a6fe4a53c52e3d08a34d063dafd483beca5f822d
MD5 fe8c09bff63cfbd26ae7ad0cefde6c59
BLAKE2b-256 dfa347d73facd190a0d763fb64114e506a18abd91c229766af48611f52cc5315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1527e8e2ca2adcc4f229fedca8297dd0e2eaedf9eaf2b913ea06a05ac18cd36
MD5 4e1746300ad10065fc2d7871395cbd8a
BLAKE2b-256 19744610528ad4c4114bf378cc3c8581c33e37cd70ba69e8e43698f063347f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9195b720f17074667cee1f5d21aee7e31899784cd87a1145cac210d68a238625
MD5 99c4fd37f75483d16c853c6d908b996c
BLAKE2b-256 397e5b41494914d8506e318f420aa7fb83fb14fd9b1f27616c8fb3065d1eefed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43aaf8bfcd39f9be897b7abc930266e47635752a92334ffe78a5617f0ba24ae3
MD5 39adfaeb38f6258fe3111c6660eed31b
BLAKE2b-256 e160bdf16ae9bc25523d788e6dfa29d1558e5750d79df435f2af4a2bb5e0fe85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27beb039ae116cc990b2195b984a23b216fd7fa9349ce315f1a855c85a7ea24d
MD5 1c134f988a62f22f6e64d9beb51eaffa
BLAKE2b-256 f66bdfb831275e74e87d232b2f45483c52417c28b71db7c3a85993328d921844

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 235.9 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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc0542057831f2bd637b21f1ebbf994db5429ac72e979f6eb4da0ee20578f221
MD5 7a3bf3318449ed9ab2eb167375f817a1
BLAKE2b-256 1fa1014f61af727ce809eac3ed5ccde2e8b1f155940e8922e6b47b02d6537db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9bf442b3fa12d36190e5fed5aae4ff82d4386d93eb2ee7b53c541feff4d9c4e6
MD5 41821486c5e3017e1b40300329dbfa59
BLAKE2b-256 63b8738731360b43f79a51d8a0760a685aa7517b93ecc1648eb5df29920862a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 141.5 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.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 79e3eb003b7a30ae307d39d83836b6f7356661e2057cc7a9394439302249c9bb
MD5 68913709557791bfad6a7b4e1d3df9a0
BLAKE2b-256 a816b307e5844c079ed488648ff941a9e73d8196d771f7f3539a4c49a4f29815

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp311-none-win32.whl
  • Upload date:
  • Size: 134.0 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.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 41e618d04a88ea8fe72544cce78ab77da5fcae10f30aac1034796d5ef47f87b6
MD5 bb6fb109300dae3623ac7f8fdde4acbf
BLAKE2b-256 d43ee74879bf01b9a8bc68a35db2449d0d53c386f895d559fa8713306121fcd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce2262135ca8f680c79967fe606e55fde4ea8be39391220eab16763d9250ca71
MD5 66b9adff07f33f13816597b4b5b81a76
BLAKE2b-256 ecfbee539a3accbe4be2cbcc8e8ce5b21786fb4913464b6486d8bae18272dd05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29953e471e3e828cc48975bf0e27d326ecb6fa3d11ed137e6c3b8ff6fbb803cf
MD5 cffc9bb47e50d6c6b066c720d6e8b4ae
BLAKE2b-256 cf3151d1f62422afe41d1c2dbfe3d9e96e514050d6da7d924ae4ac57291223f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 715b0664156ebef7fdec42ed81cb0d88ab23aff63458bd230e7a800da9fc75e7
MD5 58af3340d838d44ce78a9780bd561565
BLAKE2b-256 c68c047089e110414604e0826748c78b7e6c9cdd35f0a6e5f03681fc7bd116a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77ba57c5008ea6d9b8a511d334a43cdd9ccd3d28c2ee1e4392fd60dc4ba7ff75
MD5 fff93410ff34ca140605d5d03fd106de
BLAKE2b-256 f8ed4c94b057e8cb6a48125496ad2cf84ec59f28302f82c8cc41e6df5883483f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 236.8 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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32f6c848f9dead30421ae80de03996a42cc419ea702868d2273b64ea65ae675b
MD5 491867227f86e369b020c09c9228fa14
BLAKE2b-256 0f5c23f5ebdad43b64516757f87c9cb06a9ba2496ff476cd620cd2d8608b36bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd08b26ba4e3ef3ebd40b2f6158a4df8c0da62d2b1c9ddcedbed6a306f260d59
MD5 ca5c31aed6ae28014fd1f945d5cb6eaa
BLAKE2b-256 75d912537fa3b646dafcb747e251a4a7baba5aca8a8c2b66dfb03dd5e7518aa8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 141.5 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.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 44e26bb162d435e6d242b19ed5742d515477d04a1d7d1929a213c97f7078a8b7
MD5 e9ba7f4f6ccc460c5587c3e610ebda66
BLAKE2b-256 a3753b1a1a96b67c51667bd7312064fda1f7ac58006490d8e6fb3114c1d64214

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp310-none-win32.whl
  • Upload date:
  • Size: 133.8 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.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e3a62ed9f2237a17afaaf5fcec606e51fbf7f8ccd368dc245c573b171c95a0a1
MD5 37bc8674efa792899f1080898443f655
BLAKE2b-256 6d65dcf5639830e7aff274b233e3688cc43285637212021700aa9ab2f2d2049d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eff37becff53861d9f6f262b4826663b47c2d41c2d76614377e7c51d02a5ea6e
MD5 3591d39a554c408426c50c3f958b0ce2
BLAKE2b-256 9a132e8485f2404294964310317306921c89f9121cbda3434f1bddf9d53e9b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67fb0b5d0e98e70c0b69031ebe49080cbcad5ee4e59cbfb5d2a9e9ab76d46c82
MD5 97515c820f8b12a1aed08dded8b54ff7
BLAKE2b-256 afb455da46ff14b81485ef7d880e8f74ff01602862c32d6aa38534bb7ef97f6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b0b14006cfcf00f8d7d1631a2c3e60ec2bceca42a3b88d6db393705f9e0490c
MD5 483fffc7d956bae590efe77f6740c180
BLAKE2b-256 6b9b7e4a5b6415b38eeb6803af34df88437a092a4fdc093334d95819dc20de70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01eacc9d867ce53bb93b9e41b4e9ce308b295b66e2cf6512e02144385858b491
MD5 f5d1f5ebfe8b486bda4e18d697a32ae2
BLAKE2b-256 535ddb45683b81b53e1ee810fa7c4b2cb9a83eadcd54f8c1a82827dfaeedd4b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 236.8 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.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f76f135d4668dfb1e79b8bbd975b1e62600d5a173910cd7fed1f4fa2fbff214
MD5 861a932b48f7453af0b6e484d5205978
BLAKE2b-256 f6065263c76c9a5e1f0d0fa8b864c983268ca8e97b3631d7aea8d805c67a2800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47304b63968660113c22885cd3e3fda407d8869f2bc83a45b0865448417ebb72
MD5 759b2b0f515cbea529bd29ab7fffc890
BLAKE2b-256 3134f7db1645dafafcde3353d2aa9a80c984ecb9a50754bd76d20c32a8ca4891

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 142.2 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.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 602345f954826f651684426b59d16980605153d37796f39b3e1c1e97421cf27a
MD5 8d809a8d6ce70f81b4e2c162fb5f303c
BLAKE2b-256 9d0db2109e695ed0463ed506239086cc29111b77036715e534fe4351224f68d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp39-none-win32.whl
  • Upload date:
  • Size: 134.7 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.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d0cbbe92e6e38cbb5c0b9137758ea0d2e077c6581ebe97b1529e95719d7f271f
MD5 8338acd04d820daeeaff1b9e7441cbea
BLAKE2b-256 0c88d070489cf527d8314c3affbded9f930c75e4be464e4980e1b44a303aa9de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 443.6 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.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b092508fc254e4ec7f63df8cc2e70e5529df83a23850643db8dcff1b5887cbec
MD5 529b87c6aaeacc761aece5febfb51b18
BLAKE2b-256 b4252013c87f05c11e19603d47cdc9cd1776c5e5d55e2db81de443bbd7c62b3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 458.7 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.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd5e232b512c21381d8680da45716a2b48e561ff3f8839f05eba40833fd294c1
MD5 a39303c2797da6fb7a5f9f4d3ab84e7d
BLAKE2b-256 1143cc5adc928f65eb01e25bef978e2a7dc76005ed3a662ac6c150d083b75324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49632ad2f00ceda7ab92ac0b4204524b68733d403a6ce194cc6b3277c239dd9c
MD5 ed1cd59fc96f099858ebc81cc5181b97
BLAKE2b-256 f5131b0a035ca6932a22cb2b489f2a4d818b82966cd174bbfc1d79069247077c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d0a5c18a28dedcf4cff5e2338901ac78fc04ee60ebbf31defefdfbf252aaa3d
MD5 4bd0376f61cff434fbb5624e3b4e1083
BLAKE2b-256 45c54f3082256b1132b5797275709e7246458c09123e2ef56c5281b4da185cbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 237.0 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.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbb117d89c14626a669cf2f1dec6803f7dc18e3f1d84c99512517b139f4c2b73
MD5 d4cd68975d854655165135f53e3d890f
BLAKE2b-256 f51fac5f2401d05d0196b0fda29fda22f81ac63549f22d483f8003854b628d18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 243.2 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.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21bb442c9785efe6c40beec4eb900458d14a13330e0ec4f6216b3c038736d921
MD5 df0d362415ca62d7507a54f40322b3fd
BLAKE2b-256 6b1db28fd9d9676323306bba4415ed775dc073e9f7ff3cb50104a46db2d26c8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 142.1 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.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3beaa12a1b20cfb934c1f087c8ae5e939b01ec0508667efba6bef02a8da0f285
MD5 e5b9b833fc5a1b1c83ee7cf6c609f56f
BLAKE2b-256 45a750abd8a04f43264a5a5635254c2928200df597b01a2414d1eda4984ed994

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp38-none-win32.whl
  • Upload date:
  • Size: 134.6 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.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a0b9258d4fe66fabae229cfd7e60a0ae499b0173a1cf30b1b7cbeb86fa734f86
MD5 8b5421897a445bf8461137c425a868ad
BLAKE2b-256 5b6b23551eaaf872e1bdc2426fc8bd468a562309dc3537bdf021dd754af05eda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 443.2 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.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ee44695ba5d51c42d470ab5c110e3803abe7ee72b7f23d809e2785ea5511eda
MD5 371a07e82e98d93697ed0f4277470772
BLAKE2b-256 79db2dbe5246f2b06ed0319015e9b8abe9e971ce8d8b279cbb4b9b1b085e80fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 458.4 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.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd30f216e6ae29fae833ff6c384f6da26544b5d0c816d4f9cd4312339e960dae
MD5 8193fbfbbf5b53081565db89ca7e50c8
BLAKE2b-256 9a8865c7bf73db45e04565a001bff582ca66e30512c9b56cbad964745c23a220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89ec5b2e06343f73648048652fceca7e01b5735f03a76d65e83e04734709d1a6
MD5 cddbb9c8748771f0cd7aad0fcd65f621
BLAKE2b-256 25665bf697c0a253771065d8afbcd175bca67a68b68c516b3674b8b84d2bcf9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 470f3d3162f3f5a6aeb5260a42f92640ef254a7d5aa97f42c8a462f5e29ea5d6
MD5 e35ccc8423fd45fac037fd59c742a9f1
BLAKE2b-256 a426c3a692a3411661125b14a0dafbc6dc8f3db031d1a446b2c1c1405c0d19ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 142.0 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.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c67733a7e29be42c10b85496126d5b2a11d3684a3f2ba9b9306d8ce7d0c27d5
MD5 4a7d5f11fdd4846beaf7f1e609ecf825
BLAKE2b-256 a6ffe8bbffc6e92c3f13b66fb42cffd10f32c5e35c142c93c2a58146924ce74d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp37-none-win32.whl
  • Upload date:
  • Size: 134.6 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.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 8931b260031953f59c76047eff8e0d515193bdbd1976807adc00dbca86b15bfc
MD5 0f239a154fb6eedfd625cc8ebc2f7963
BLAKE2b-256 2f9df00c5c86896805d5f8b978b998bf2fe3a3fdf13f53487f3605ffa6565fb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sesdiff-0.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 443.4 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.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7f1bcb3cace23608627402d726bde16d5c4fc7aa8653a0032636d5205382bf9
MD5 5ab4c7f14f6518baf1eb1b9d0309ac8e
BLAKE2b-256 633d43ddfa35f80ea4711eab09915753348c500cedba1bd901d2582960a99040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e6543b9c997352418d804e37f77b3e4ceaeed8869598cacd3c14b8a77c3c37b
MD5 e62e374a21a91c4e184b5b3e6f3c7a1f
BLAKE2b-256 452444523f9f72e2eabecd8f2a3442edb496d59f6be856c03325b999d5df60b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecdb2a7d2f6c17a0e71d05c21a41df291cd6d064d0c22ab7589c478b34b04d62
MD5 a72df827ce1ecc771ed742eefa9d2d7e
BLAKE2b-256 94eef19cdafbc6e6b2a8608c97ec088be993fedeefc4b30bc3a2ebc0de70c7c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sesdiff-0.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd7336c0c3cadce0db5203e38ba5258ec39430cdc19aa7307f51e2ce52493170
MD5 1a6a0131f236598e46460e71e64a1d86
BLAKE2b-256 7ea61dc4d4b4f98868ae68871b6cfb7d9c6ce67060b79e1601d87fddbe0e187c

See more details on using hashes here.

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