├── .gitignore ├── README.md ├── dict.png ├── pic3.png ├── requirements.txt ├── setup.py ├── stardict.png ├── webyoudao.png └── youdao ├── __init__.py ├── config.py ├── lib ├── CPyStarDictIndex.cpp ├── __init__.py ├── cpystardict.py └── pystardict.py ├── main.py ├── model.py └── spider.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/README.md -------------------------------------------------------------------------------- /dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/dict.png -------------------------------------------------------------------------------- /pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/pic3.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/setup.py -------------------------------------------------------------------------------- /stardict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/stardict.png -------------------------------------------------------------------------------- /webyoudao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/webyoudao.png -------------------------------------------------------------------------------- /youdao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /youdao/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/youdao/config.py -------------------------------------------------------------------------------- /youdao/lib/CPyStarDictIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/youdao/lib/CPyStarDictIndex.cpp -------------------------------------------------------------------------------- /youdao/lib/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'chenlong' 2 | -------------------------------------------------------------------------------- /youdao/lib/cpystardict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/youdao/lib/cpystardict.py -------------------------------------------------------------------------------- /youdao/lib/pystardict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/youdao/lib/pystardict.py -------------------------------------------------------------------------------- /youdao/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/youdao/main.py -------------------------------------------------------------------------------- /youdao/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/youdao/model.py -------------------------------------------------------------------------------- /youdao/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longcw/youdao/HEAD/youdao/spider.py --------------------------------------------------------------------------------