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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

PyRuSH-1.0.9-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.9-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.9-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.9-cp311-cp311-win_amd64.whl (89.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

PyRuSH-1.0.9-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.9-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.9-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.9-cp310-cp310-win_amd64.whl (89.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

PyRuSH-1.0.9-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.9-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.9-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.9-cp39-cp39-win_amd64.whl (89.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

PyRuSH-1.0.9-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.9-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.9-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.9-cp38-cp38-win_amd64.whl (90.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

PyRuSH-1.0.9-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.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (199.2 kB view details)

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

PyRuSH-1.0.9-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.9-cp36-cp36m-win_amd64.whl (92.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

PyRuSH-1.0.9-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.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (92.2 kB view details)

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

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: PyRuSH-1.0.9.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.9.tar.gz
Algorithm Hash digest
SHA256 263296d121924972891e2dcff51ec29971c5c15256c061cc4e746c9ef6080e84
MD5 ec9d8b70d52b4f19df0185dd41c368f0
BLAKE2b-256 92335c1b4ea9746b9ca2707f4f374f8ae90643c14fa5bda94edb329a3676fb57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: PyRuSH-1.0.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 90.1 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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 94f84384569ea33a242490228305038766165c7674ea3b6ac1167391e314a023
MD5 386e65c0309e38d343fd58cd9f91ffa0
BLAKE2b-256 2f0f82c5e613f7c8f1392f86e569a10f57df33c7ea178fae5f696d1c787acece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0935150d4e26aea7d121ba925123aa60aa489717bb796110dbe816a8ac98eec1
MD5 b1d9ebb9595130b661bc6d06cd7802d8
BLAKE2b-256 598f05c9bd3bd00501e4abfb544c4623726599737597d3cf83dbb39bce866569

See more details on using hashes here.

File details

Details for the file PyRuSH-1.0.9-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.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 653f7ac92b628ec540a538be1e614ccaba9b26bd59b83b5c65f98fc27be31f8f
MD5 892f30d821627f94e5ccfacaa0e71157
BLAKE2b-256 00d1dcf40849e72689648a1db4a852ee280744314aa7907e8a964e4e8b3bc54b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8d94f9f8d5f0e5af933fb15884d320b4cb1d447f0e8fad574297c2b69d05a635
MD5 996836fabd4c72ee5a8d8545638e0fa2
BLAKE2b-256 acbbcbf7e985d0b8dc34342a0f368ebfe893677a22e00836244cd6fd63435fdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: PyRuSH-1.0.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 89.9 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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f0762bcc791b05a8fba9aa7e695b28997a12c0a831764b0d7c10b61043c6e5d6
MD5 aea8eebf9d760f704390b80d200d8f51
BLAKE2b-256 2e5a65217cce498edf392b2f9ed2a8e99521020ba6198c1a1c80849deacb5856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d50724ffabfae998a1526a1159c8d2fc4c9e0c2a6990dcf042c7d014c52d489a
MD5 43fde9a303b018b131489b16e8e5630c
BLAKE2b-256 701ed1cf28fe5c4773778e618ba0c3efea94476114ef290b2c19ba8fc01b7bd7

See more details on using hashes here.

File details

Details for the file PyRuSH-1.0.9-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.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9065c9cbc69006195ca0774346d29c729a79db25b4128aa02a5e861f74fd8c69
MD5 1c9ba2c4c80ef37c067dc523863e45a8
BLAKE2b-256 f3f25d1bff452c3deb7247273cdb40d6df0bcb4e01bb4350085062ee2a1eccfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33ff9526976c9260ab1aa7717f124f6b107d9c90bd13ed4394267a0d8a28c722
MD5 119a4d16176400b2b645186e262cd93b
BLAKE2b-256 e8d3c59681583fcb1051ad228d0470a9705992aa0a5cc90db9f01e448b29369a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: PyRuSH-1.0.9-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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d0ed6be72e745ee3162224c2bca1b2ca0e50ca332b07d072c65045dd9529c25
MD5 09bfbe92a6982a73d684b8f82b552396
BLAKE2b-256 d8925cef025fad45423a4ad4fb094b7e2592a5f7fd386acac7318c8c056801ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49382da67806e48d1d236c91d5a0d761824a58d51da06e94e8a938dc05602723
MD5 ac703494677804711bc7320c366b1e9c
BLAKE2b-256 4404ca4c23b285612ebf7f83811aa56c7dacd9e62ab5e93c7b2e4006e238704d

See more details on using hashes here.

File details

Details for the file PyRuSH-1.0.9-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.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b670646c666c8dc4c678b8c539bebc56e89634cc61b41430ebce3e5ed4c6b361
MD5 d630ca1e7001df4f4e19e01e5a5940c2
BLAKE2b-256 48e517ebdce3d4b04d83e026b364444d250040ccaba08ea2746f5b9cb8b2b863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85d12241bdf1f92e5a1be922287db2d47ca62f57fd3ca9628f37a618f5537eee
MD5 926207dd61634c3b3d4dd041e191c03a
BLAKE2b-256 96aa2970526054fb946fead047b269eb8ab49524bff08abaccf760dcdee66531

See more details on using hashes here.

File details

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

File metadata

  • Download URL: PyRuSH-1.0.9-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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6304df5217db11f71e81f86f7a42cb461cfd6a164ebc56b3e58cb63b5d4324d7
MD5 c8e24519b518da3d0d6b920e17e63a46
BLAKE2b-256 4d095ed9f9fde88f616330ab4b9a927ec570b778b87e2629820592e1d9779baa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5068e86d175defb6ca105d4e0dfc3629cebfbb656dffc9ab063761fec7c7c8b6
MD5 91e0f5040552a3d284b9117087fa398f
BLAKE2b-256 5f64776dd1a49b906c82662f9e69f6d9e3800296923080ace74a7bed4835868f

See more details on using hashes here.

File details

Details for the file PyRuSH-1.0.9-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.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 663ae6b6e4a1318e85135adea0d606e5c1be4899f64f0b36d2ec6432b5706292
MD5 a0f0cc8b493f34bad58e9760534f626b
BLAKE2b-256 ba6019c0636e5d62d4984cbf6d7e13329e87831ba4947a050b9e47adec6f1c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99340c2e00f08816685d3fc68c4df8fc7e2725dd1a1206dbea8ea9eda8e5c828
MD5 fcd44a2378c9174b0226c0525cad0884
BLAKE2b-256 baca03b9190b802ad6303ae5502fb8d046ca82094d36d51abfb6c7b6633b0f4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: PyRuSH-1.0.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 90.0 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.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 75f19c82c060f601b47e1720c401a3a69579854f7845db4998c81915e6839ca0
MD5 0ae34be7030fefc2797f7309b891822e
BLAKE2b-256 f8540ebc8934c6e60cd28ca2d21a7aa0fa7f3fe475def7f8d54094a0752503ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83075d9924f98ba46c0b0dd3d5de54e3f43cd8936ea3601f76b830cdb7dc5df8
MD5 79ccf3b60e39800b63bed0f5a5d53fb3
BLAKE2b-256 eb0c1f9f2237f90d419e5956b42514bd874f8f505acd1ff295164c550dc652a2

See more details on using hashes here.

File details

Details for the file PyRuSH-1.0.9-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.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a290e5d1b51afd27f1e1e61acd8b620825bb72fb07a1a64cfbbdec7a246e927c
MD5 816dac553a7432bdb5777150f6b4ea03
BLAKE2b-256 d4f5f63b3c070a7839e690223d4debb79466c75f00b1f262d99bb2ed1da85361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0253b04289af8b52a3bcc40103bab57ece21c54712f59001b36554e64665e21c
MD5 9a10ffa802dfac23b9541e3d9380b400
BLAKE2b-256 d15604610eab4ad86175561096349f6ab0a3e453765098011492ec19d3e4e58f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: PyRuSH-1.0.9-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.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bb5844b15ee4d5a5aa717d32fe5892a64c0ab1c835c5611d88d785864f651c27
MD5 a554bce31aa807ac6d07fdf7f2e9c0ee
BLAKE2b-256 af37f1c192d95f02659bfe43bfb73981250f12b2bcd3a7199f7d04ebc79e11c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c881ff36028b290662279706cb1f23cc974ec036af7f5ee5de85767f3ab94ba
MD5 0d0c0ffc7247fe4d2e1df79398aadb92
BLAKE2b-256 786004763d7045ba31c37f3e7f9b22c8f43618f6fbbf572455a86fec7f7b75c3

See more details on using hashes here.

File details

Details for the file PyRuSH-1.0.9-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.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b261d95ad50485138e2af31ae6ce919631a10adf9c6d22a33f27047fc530108b
MD5 77e25dd8850eb3a8808ccd0168d235a4
BLAKE2b-256 86fd89c9d04a864a8bce6db37dfef8682a4b422bbb0212599a4e481242d33b03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for PyRuSH-1.0.9-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2265f31e2a820bc5801ac9cb65fd5808921f3aecb38c6d604ab250fe4e33a1d
MD5 ac6691c99e03677b9dce04b061baf867
BLAKE2b-256 7d5513326fc4ccd6728e373b9048e8597ae7d9370e686a9b73de24d2c0e8fd27

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