gitextract_fudjadwr/ ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── CNAME │ ├── convert.py │ ├── example.html │ ├── index.html │ ├── jike_api.html │ ├── objects.html │ ├── source_notebooks/ │ │ ├── example.ipynb │ │ ├── index.ipynb │ │ ├── jike_api.ipynb │ │ └── objects.ipynb │ ├── static/ │ │ └── custom.css │ └── templates/ │ └── full.tpl ├── jike/ │ ├── __init__.py │ ├── __main__.py │ ├── client.py │ ├── constants.py │ ├── objects/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── message.py │ │ ├── topic.py │ │ ├── user.py │ │ └── wrapper.py │ ├── qr_code.py │ ├── session.py │ └── utils.py ├── nlp/ │ └── generate_dataset.py ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── test_base.py │ ├── test_client.py │ ├── test_message.py │ ├── test_qr_code.py │ ├── test_session.py │ ├── test_topic.py │ ├── test_user.py │ ├── test_utils.py │ └── test_wrapper.py └── tox.ini