gitextract_tdn32462/ ├── .gitignore ├── HISTORY.md ├── LICENSE ├── README.md ├── example/ │ ├── example01.py │ └── example02.py ├── setup.py ├── test/ │ ├── Segmentation_test.py │ ├── TextRank4Keyword_test.py │ ├── TextRank4Sentence_test.py │ ├── codecs_test.py │ ├── doc/ │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ └── 05.txt │ ├── jieba_test.py │ └── util_test.py └── textrank4zh/ ├── Segmentation.py ├── TextRank4Keyword.py ├── TextRank4Sentence.py ├── __init__.py ├── stopwords.txt └── util.py