Skip to main content

PyRuSH is the python implementation of RuSH (Rule-based sentence Segmenter using Hashing), which is originally developed using Java. RuSH is an efficient, reliable, and easy adaptable rule-based sentence segmentation solution. It is specifically designed to handle the telegraphic written text in clinical note. It leverages a nested hash table to execute simultaneous rule processing, which reduces the impact of the rule-base growth on execution time and eliminates the effect of rule order on accuracy.

Project description

PyRuSH is the python implementation of RuSH (Ru le-based sentence S egmenter using H ashing), which is originally developed using Java. RuSH is an efficient, reliable, and easy adaptable rule-based sentence segmentation solution. It is specifically designed to handle the telegraphic written text in clinical note. It leverages a nested hash table to execute simultaneous rule processing, which reduces the impact of the rule-base growth on execution time and eliminates the effect of rule order on accuracy.

If you wish to cite RuSH in a publication, please use:

Jianlin Shi ; Danielle Mowery ; Kristina M. Doing-Harris ; John F. Hurdle.RuSH: a Rule-based Segmentation Tool Using Hashing for Extremely Accurate Sentence Segmentation of Clinical Text. AMIA Annu Symp Proc. 2016: 1587.

The full text can be found here.

Installation

pip install PyRuSH

How to use

A standalone RuSH class is available to be directly used in your code. From 1.0.4, pyRush adopt spaCy 3.x api to initiate an component.

>>> from PyRuSH import RuSH
>>> input_str = "The patient was admitted on 03/26/08\n and was started on IV antibiotics elevation" +\
>>>              ", was also counseled to minimizing the cigarette smoking. The patient had edema\n\n" +\
>>>              "\n of his bilateral lower extremities. The hospital consult was also obtained to " +\
>>>              "address edema issue question was related to his liver hepatitis C. Hospital consult" +\
>>>              " was obtained. This included an ultrasound of his abdomen, which showed just mild " +\
>>>              "cirrhosis. "
>>> rush = RuSH('../conf/rush_rules.tsv')
>>> sentences=rush.segToSentenceSpans(input_str)
>>> for sentence in sentences:
>>>     print("Sentence({0}-{1}):\t>{2}<".format(sentence.begin, sentence.end, input_str[sentence.begin:sentence.end]))

Spacy Componentized PyRuSH

Start from version 1.0.3, PyRuSH adds Spacy compatible Sentencizer component: PyRuSHSentencizer.

>>> from PyRuSH import PyRuSHSentencizer
>>> from spacy.lang.en import English
>>> nlp = English()
>>> nlp.add_pipe("medspacy_pyrush")
>>> doc = nlp("This is a sentence. This is another sentence.")
>>> print('\n'.join([str(s) for s in doc.sents]))

A Colab Notebook Demo

Feel free to try this runnable Colab notebook Demo

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

PyRuSH-1.0.9a0.tar.gz (67.1 kB view details)

Uploaded Source

Built Distributions

PyRuSH-1.0.9a0-cp312-cp312-win_amd64.whl (90.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

PyRuSH-1.0.9a0-cp312-cp312-musllinux_1_2_x86_64.whl (218.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

PyRuSH-1.0.9a0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

PyRuSH-1.0.9a0-cp312-cp312-macosx_10_13_x86_64.whl (90.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

PyRuSH-1.0.9a0-cp311-cp311-win_amd64.whl (90.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

PyRuSH-1.0.9a0-cp311-cp311-musllinux_1_2_x86_64.whl (211.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

PyRuSH-1.0.9a0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (211.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

PyRuSH-1.0.9a0-cp311-cp311-macosx_10_9_x86_64.whl (90.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

PyRuSH-1.0.9a0-cp310-cp310-win_amd64.whl (89.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

PyRuSH-1.0.9a0-cp310-cp310-musllinux_1_2_x86_64.whl (199.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

PyRuSH-1.0.9a0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

PyRuSH-1.0.9a0-cp310-cp310-macosx_10_9_x86_64.whl (90.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

PyRuSH-1.0.9a0-cp39-cp39-win_amd64.whl (89.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

PyRuSH-1.0.9a0-cp39-cp39-musllinux_1_2_x86_64.whl (198.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

PyRuSH-1.0.9a0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

PyRuSH-1.0.9a0-cp39-cp39-macosx_10_9_x86_64.whl (90.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

PyRuSH-1.0.9a0-cp38-cp38-win_amd64.whl (90.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

PyRuSH-1.0.9a0-cp38-cp38-musllinux_1_2_x86_64.whl (196.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

PyRuSH-1.0.9a0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (199.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

PyRuSH-1.0.9a0-cp38-cp38-macosx_10_9_x86_64.whl (90.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

PyRuSH-1.0.9a0-cp36-cp36m-win_amd64.whl (92.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

PyRuSH-1.0.9a0-cp36-cp36m-musllinux_1_2_x86_64.whl (92.9 kB view details)

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

PyRuSH-1.0.9a0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

PyRuSH-1.0.9a0-cp36-cp36m-macosx_10_9_x86_64.whl (86.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file PyRuSH-1.0.9a0.tar.gz.

File metadata

  • Download URL: PyRuSH-1.0.9a0.tar.gz
  • Upload date:
  • Size: 67.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for PyRuSH-1.0.9a0.tar.gz
Algorithm Hash digest
SHA256 23f2098dfb4e64fdc558feea76aa78b33a46c78540e2ed56b3d01b51a9b6fb9c
MD5 92a00f59df52ec9aa354a3c0b712c601
BLAKE2b-256 654a0ecfac5ca159b22f0fc52ba2af52e90abc820e80e445f195a5ac0fd8a670

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: PyRuSH-1.0.9a0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 90.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for PyRuSH-1.0.9a0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 882d31194d6499e8681b5ae97d6fef6d46369656a11435f06b91d7ef04026800
MD5 0ab6d513a2cc2e137269e572f1f9be26
BLAKE2b-256 fa15223040b2c53e4fb7e532085c433045d5d83dcce4c0cd6182e80eb111658a

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 056e17a572e6e57b362fea995702679d2a69b5c5bb5f08f46f38db8e010c9ed2
MD5 c5234b2c05af73b79f2afdfa37245863
BLAKE2b-256 5d7cab604e3b60ab20380e32585e2d8820b73eaff38a1ab8905426e3845d19cc

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98fc84f9d09cb45f0f2a5bcb9f87cd4059979023433ee68f796a92e0b62e3a78
MD5 3c269c07215b425f9846adc44f6f462c
BLAKE2b-256 94bc4f9e8b64352c26463a7fe1648840ba35a27a163834be3605daafb4153111

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d65a5d2be9f3581d73d0bb4f3483e3c4c92230953373e3371ed859c662c378b1
MD5 ba091b724a995e5f95993605a0ebce6a
BLAKE2b-256 76f8fadef4423f8d85ef4067ee7ef775fc190d8c8367307ba03e9515fb17a70b

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: PyRuSH-1.0.9a0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 90.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for PyRuSH-1.0.9a0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f5d7cc2115435188977c35fccb3e449dd6a30b7583f31ed9461692b3fb273c60
MD5 6d1e0e547a644a5b086b61577705a412
BLAKE2b-256 97ca181dcbf53f1e870a7e93933ec128f058659209ac60853a4586fefd0ed93e

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a41d7772363f0655033c436a2a112acf08e2b570a35f84fb5ba3aa6a32686c50
MD5 bc5ecc4fefed385364589c7e3ecc4248
BLAKE2b-256 3e52a4ec044722615fc24dda025d71846d57cd250801095af8ff83ea106cc514

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88e82e41fca198ba8db74ac296f8c3d94d70b58c095fb1b6dae88c3de1f61b61
MD5 ac18a6c16b8a612ebc040dae1db45dd9
BLAKE2b-256 546ba157dd282044314cf82fbd1d360334230b55fd46a7f8545d9cc3f6631c12

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a510cb9cdcd0e32cedbb02ae775f554ee73f2dee205133b5024446d69044169
MD5 1cdd155573d61350890fc870d56f16a8
BLAKE2b-256 939ec6f0f22e2f169534fba7d1936516b23023287c7f047bd6dacfeef2c7ce79

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: PyRuSH-1.0.9a0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 89.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for PyRuSH-1.0.9a0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d9e09e6f5e5b23c6cc91a5551b79e2298fba1aed6f1d1b20d8b2b39d2e53deaa
MD5 6301bbb4bbc094098d0fac70bba87a21
BLAKE2b-256 d9c10de110d153ea24e5ce58afff7e1edb03cf277921faccd67d14fb48336641

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fed85d4875c6e81519a12359efaa7d8f5ef5645a980f9d43d9238e10102a459d
MD5 03f7028fba3d9b76fcd224adcc8e1ad8
BLAKE2b-256 016c5069d6c42886cbf1ba93bb36c92a52d22c52f6713e035177c471447de972

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e7ced88b1b758e62a4993e8d896987ac53da85d65c3f03d2c33ef943f24a8d1
MD5 c239505d2eaab657b7128ccafb652909
BLAKE2b-256 fba47efad36fb2e8fc7589fe2ae02ff5c16f25057a991ac6ce3a1fabd83a7de3

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1542cfaf14917f7593e8c3c0ba68004f1910670df1baf63e12468967b927c78c
MD5 6b341e4509b5985e3a086c549a654f19
BLAKE2b-256 3753582a2a7712357543b54cfba86720c56a92ad3c92310b6ddb979657830cbe

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: PyRuSH-1.0.9a0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 89.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for PyRuSH-1.0.9a0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bb888091e1d3bacc99ee64dfaddc4e5a1b5f30ffb3065ca697f4c2de64a93a80
MD5 6f0f5bb23714cb24df8ed14dac7602d5
BLAKE2b-256 83f6356e5243fec6d93f28bb07682b562d48398166b4fa72d6fcc47453af56a3

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1f8b98077fc99064e8af410643acbbb0577d0bf44a83ececadde9218a3c11c2
MD5 b8341d1fadb25bdc1fd95fd52e1957e0
BLAKE2b-256 6f29da9010eb51a22defbe567c2e77a5ad07a5ea52f12f530686f7942f13d061

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66baeb59a52f8201237f88b20c0afadfcf619f3c4d705e6142d3870a16a3d299
MD5 8fa6e25a8a46e7b3bfcb5611994002f4
BLAKE2b-256 8af4691a322c1d6a7dafed921415287ec094ede9b2ece060b7d240a4cba91fbe

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4715a91a374fda694fd5c3b511cf024c20fe0a647651eedf14fd149d9475412
MD5 717eb7ac2eaf06a06f14b8716548e5ba
BLAKE2b-256 872dc7c17fc22febc56cf90dc98cd74af24a851d1c92abdee32f286ba9905e92

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: PyRuSH-1.0.9a0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 90.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for PyRuSH-1.0.9a0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 426ebfecfc1ca80f01e610d7ce89535121ee678ae8b55f71e5ffd63754c4411d
MD5 12a77b88b1cd31072fdec790faf471ac
BLAKE2b-256 846d8305912d0fbd50cff09f7f75c795d686640f1966af443bc6a9d64871a35f

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c01c3bf31cf816ae4635167b9a2e7263b506e86faf430cd975b0387328ff16ea
MD5 36d62025bc434d63ee86e3a8f040c05d
BLAKE2b-256 f7898263bef5d66be353e9846bc7a8baf6619fabc53a010ec7cde0ab5ced2f8a

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29af4e714a35f7d24b569ebead10fecf42ef046c0e28c906ca5e5a3f1b80711a
MD5 203b938643d86709ea81816fb18d1b35
BLAKE2b-256 fd618c7e1a9ea200e1446e6955c65f6fe932261057d942f17151e9632fa7c62d

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b58479018d5aa0ccc21506fa77aab67e2372ec03f1bafd6d3a50f9a076bf9a97
MD5 a465a48efe885d5baa0d4cc3a0396195
BLAKE2b-256 2f4b8b927563d7348f965d9c5727e299b0abcb04508fa71146d6cd722c225480

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: PyRuSH-1.0.9a0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 92.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for PyRuSH-1.0.9a0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 136fb6748134c1c415ab6a015cfb9c759e71b04ce2aedcbee6a0a5e4566e2bb7
MD5 630784041be4b1331a16015e28041953
BLAKE2b-256 59f632b29b01894f5b871715b5bb2ebb92b7aaf4ecd923ecea61c4de7db5fc1a

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 636252747f396b1c42a0dda960fa2a6b2d6fc78ba6749a90fa8d9684401e9c6a
MD5 ee16403da5bb8d360ff815ef979dcddc
BLAKE2b-256 d16618961d23f9fb277dd086ace3f91cf116238de8146a9b9bdcf367c01c5d24

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd1fb84065f34b27bdb7befceb5d195db00784dc2f5508af5bd51ff744a171f1
MD5 0cc396cf1602f100297fa45239d88f3b
BLAKE2b-256 d1bc7c9858a4c5a1f30e2305bb8a5c6f44f01f81b68498d3c21122613ab1bbfb

See more details on using hashes here.

Provenance

File details

Details for the file PyRuSH-1.0.9a0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for PyRuSH-1.0.9a0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d68b382cceb21f48eef7aadf279a53193786927a19bb3722c3883a0c67f132a
MD5 61b697733215f2f5b6426427d3506dfb
BLAKE2b-256 a9e3c4487e3a3b20f550f65f1d1f22cf4caf0c0dbab14da710bd58212a7584f6

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