├── .gitattributes ├── .gitignore ├── README.md ├── ancient_chinese_dict ├── Ancient_Chinese_Dict.opf ├── images │ └── cover.png ├── make_dict.py └── make_dict.sh └── dict ├── dict ├── __init__.py ├── items.py ├── middlewares.py ├── pipelines.py ├── settings.py └── spiders │ ├── __init__.py │ └── guhanyu.py ├── out_file ├── ancient_chinese.json └── ancient_chinese.mongodb ├── scrapy.cfg └── test_make_url.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/README.md -------------------------------------------------------------------------------- /ancient_chinese_dict/Ancient_Chinese_Dict.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/ancient_chinese_dict/Ancient_Chinese_Dict.opf -------------------------------------------------------------------------------- /ancient_chinese_dict/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/ancient_chinese_dict/images/cover.png -------------------------------------------------------------------------------- /ancient_chinese_dict/make_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/ancient_chinese_dict/make_dict.py -------------------------------------------------------------------------------- /ancient_chinese_dict/make_dict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/ancient_chinese_dict/make_dict.sh -------------------------------------------------------------------------------- /dict/dict/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dict/dict/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/dict/items.py -------------------------------------------------------------------------------- /dict/dict/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/dict/middlewares.py -------------------------------------------------------------------------------- /dict/dict/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/dict/pipelines.py -------------------------------------------------------------------------------- /dict/dict/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/dict/settings.py -------------------------------------------------------------------------------- /dict/dict/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/dict/spiders/__init__.py -------------------------------------------------------------------------------- /dict/dict/spiders/guhanyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/dict/spiders/guhanyu.py -------------------------------------------------------------------------------- /dict/out_file/ancient_chinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/out_file/ancient_chinese.json -------------------------------------------------------------------------------- /dict/out_file/ancient_chinese.mongodb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/out_file/ancient_chinese.mongodb -------------------------------------------------------------------------------- /dict/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/scrapy.cfg -------------------------------------------------------------------------------- /dict/test_make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lwl5219/ancient_chinese/HEAD/dict/test_make_url.py --------------------------------------------------------------------------------