Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created October 29, 2020 07:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/768e7b08e92df622cd0576053d8fe049 to your computer and use it in GitHub Desktop.
Save r-ryantm/768e7b08e92df622cd0576053d8fe049 to your computer and use it in GitHub Desktop.
/nix/store/5ilphxzp1sqrg3ls3dxxcvzq1niy14hn-python3.7-py_stringmatching-0.4.2
├── lib
│   └── python3.7
│   └── site-packages
│   ├── py_stringmatching
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── utils.cpython-37.pyc
│   │   ├── similarity_measure
│   │   │   ├── affine.py
│   │   │   ├── bag_distance.py
│   │   │   ├── cosine.py
│   │   │   ├── cython
│   │   │   │   ├── cython_affine.c
│   │   │   │   ├── cython_affine.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── cython_jaro.c
│   │   │   │   ├── cython_jaro.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── cython_jaro_winkler.c
│   │   │   │   ├── cython_jaro_winkler.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── cython_levenshtein.c
│   │   │   │   ├── cython_levenshtein.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── cython_needleman_wunsch.c
│   │   │   │   ├── cython_needleman_wunsch.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── cython_smith_waterman.c
│   │   │   │   ├── cython_smith_waterman.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── cython_utils.c
│   │   │   │   ├── cython_utils.cpython-37m-x86_64-linux-gnu.so
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── dice.py
│   │   │   ├── editex.py
│   │   │   ├── generalized_jaccard.py
│   │   │   ├── hamming_distance.py
│   │   │   ├── hybrid_similarity_measure.py
│   │   │   ├── __init__.py
│   │   │   ├── jaccard.py
│   │   │   ├── jaro.py
│   │   │   ├── jaro_winkler.py
│   │   │   ├── levenshtein.py
│   │   │   ├── monge_elkan.py
│   │   │   ├── needleman_wunsch.py
│   │   │   ├── overlap_coefficient.py
│   │   │   ├── partial_ratio.py
│   │   │   ├── partial_token_sort.py
│   │   │   ├── phonetic_similarity_measure.py
│   │   │   ├── __pycache__
│   │   │   │   ├── affine.cpython-37.pyc
│   │   │   │   ├── bag_distance.cpython-37.pyc
│   │   │   │   ├── cosine.cpython-37.pyc
│   │   │   │   ├── dice.cpython-37.pyc
│   │   │   │   ├── editex.cpython-37.pyc
│   │   │   │   ├── generalized_jaccard.cpython-37.pyc
│   │   │   │   ├── hamming_distance.cpython-37.pyc
│   │   │   │   ├── hybrid_similarity_measure.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── jaccard.cpython-37.pyc
│   │   │   │   ├── jaro.cpython-37.pyc
│   │   │   │   ├── jaro_winkler.cpython-37.pyc
│   │   │   │   ├── levenshtein.cpython-37.pyc
│   │   │   │   ├── monge_elkan.cpython-37.pyc
│   │   │   │   ├── needleman_wunsch.cpython-37.pyc
│   │   │   │   ├── overlap_coefficient.cpython-37.pyc
│   │   │   │   ├── partial_ratio.cpython-37.pyc
│   │   │   │   ├── partial_token_sort.cpython-37.pyc
│   │   │   │   ├── phonetic_similarity_measure.cpython-37.pyc
│   │   │   │   ├── ratio.cpython-37.pyc
│   │   │   │   ├── sequence_similarity_measure.cpython-37.pyc
│   │   │   │   ├── similarity_measure.cpython-37.pyc
│   │   │   │   ├── smith_waterman.cpython-37.pyc
│   │   │   │   ├── soft_tfidf.cpython-37.pyc
│   │   │   │   ├── soundex.cpython-37.pyc
│   │   │   │   ├── tfidf.cpython-37.pyc
│   │   │   │   ├── token_similarity_measure.cpython-37.pyc
│   │   │   │   ├── token_sort.cpython-37.pyc
│   │   │   │   └── tversky_index.cpython-37.pyc
│   │   │   ├── ratio.py
│   │   │   ├── sequence_similarity_measure.py
│   │   │   ├── similarity_measure.py
│   │   │   ├── smith_waterman.py
│   │   │   ├── soft_tfidf.py
│   │   │   ├── soundex.py
│   │   │   ├── tfidf.py
│   │   │   ├── token_similarity_measure.py
│   │   │   ├── token_sort.py
│   │   │   └── tversky_index.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_simfunctions.cpython-37.pyc
│   │   │   │   ├── test_sim_Soundex.cpython-37.pyc
│   │   │   │   └── test_tokenizers.cpython-37.pyc
│   │   │   ├── test_simfunctions.py
│   │   │   ├── test_sim_Soundex.py
│   │   │   └── test_tokenizers.py
│   │   ├── tokenizer
│   │   │   ├── alphabetic_tokenizer.py
│   │   │   ├── alphanumeric_tokenizer.py
│   │   │   ├── definition_tokenizer.py
│   │   │   ├── delimiter_tokenizer.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── alphabetic_tokenizer.cpython-37.pyc
│   │   │   │   ├── alphanumeric_tokenizer.cpython-37.pyc
│   │   │   │   ├── definition_tokenizer.cpython-37.pyc
│   │   │   │   ├── delimiter_tokenizer.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── qgram_tokenizer.cpython-37.pyc
│   │   │   │   ├── tokenizer.cpython-37.pyc
│   │   │   │   └── whitespace_tokenizer.cpython-37.pyc
│   │   │   ├── qgram_tokenizer.py
│   │   │   ├── tokenizer.py
│   │   │   └── whitespace_tokenizer.py
│   │   └── utils.py
│   └── py_stringmatching-0.4.2.dist-info
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
15 directories, 110 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment