gitextract_2u5gsm6r/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── feature_request.md │ ├── improvement.md │ └── magic.md ├── .gitignore ├── .pylintrc ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── README.rst ├── bin/ │ ├── busm_failed.py │ ├── fin_schedule.py │ ├── getnews.sh │ ├── publish.py │ └── weekly.py ├── docs/ │ ├── SOUP_NOTES.md │ └── changelog.md ├── postman/ │ ├── TWMKT.postman_collection.json │ └── TWMKT.postman_environment.json ├── requirements.txt ├── setup.py └── twnews/ ├── __init__.py ├── __main__.py ├── cache.py ├── common.py ├── conf/ │ ├── logging.yaml │ ├── news-soup.json │ └── usage.txt ├── exceptions.py ├── finance/ │ ├── __init__.py │ ├── broker.py │ ├── tdcc.py │ ├── ticksmap.py │ ├── tpex.py │ └── twse.py ├── res/ │ ├── ticksmap-captcha.xrc │ ├── ticksmap-locations.geojson │ └── ticksmap-template.html ├── samples/ │ ├── appledaily.html.xz │ ├── chinatimes.html.xz │ ├── cna.html.xz │ ├── ettoday.html.xz │ ├── ltn.html.xz │ ├── setn.html.xz │ └── udn.html.xz ├── search.py ├── soup.py └── tests/ ├── __init__.py ├── search/ │ ├── __init__.py │ ├── test_search_appledaily.py │ ├── test_search_cna.py │ ├── test_search_ettoday.py │ ├── test_search_ltn.py │ ├── test_search_setn.py │ └── test_search_udn.py └── soup/ ├── __init__.py ├── test_soup_appledaily.py ├── test_soup_chinatimes.py ├── test_soup_cna.py ├── test_soup_common.py ├── test_soup_ettoday.py ├── test_soup_ltn.py ├── test_soup_setn.py └── test_soup_udn.py