gitextract_6rwwu85q/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ ├── feature-request.md │ │ └── usage-question.md │ └── stale.yml ├── .gitignore ├── .travis.yml ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── addressparser/ │ ├── __init__.py │ ├── __main__.py │ ├── drawer.py │ ├── exceptions.py │ ├── pca.csv │ └── structures.py ├── docs/ │ ├── _config.yml │ ├── convert_json_to_csv.py │ ├── hk_mo_tw.json │ └── pca_202112.json ├── examples/ │ ├── base_demo.py │ ├── cmd_demo.py │ ├── custom_address_parse.txt │ ├── draw_demo.py │ ├── enable_cut_demo.py │ ├── find_place_demo.py │ ├── parser_stdin.py │ └── pos_sensitive_demo.py ├── requirements.txt ├── setup.py └── tests/ ├── __init__.py ├── addr.csv ├── custom_word_freq.dict ├── test_area.py ├── test_base.py ├── test_city.py ├── test_cut.py ├── test_drawer.py ├── test_province.py └── test_structures.py