├── .gitignore ├── LICENSE ├── NEWS ├── QR.jpg ├── README.md ├── README_zh.md ├── TODO ├── breadbot ├── __init__.py ├── core │ ├── __init__.py │ ├── chat.py │ ├── common.py │ └── memory.py ├── lib │ ├── __init__.py │ ├── dicts │ │ ├── stardict-lazyworm-ce-2.4.2 │ │ │ ├── lazyworm-ce.dict │ │ │ ├── lazyworm-ce.idx │ │ │ ├── lazyworm-ce.idx.oft │ │ │ └── lazyworm-ce.ifo │ │ └── stardict-lazyworm-ec-2.4.2 │ │ │ ├── lazyworm-ec.dict │ │ │ ├── lazyworm-ec.idx │ │ │ ├── lazyworm-ec.idx.oft │ │ │ └── lazyworm-ec.ifo │ ├── idea.py │ ├── import_data.py │ ├── stardict.py │ ├── teach.py │ └── web.py └── server │ ├── __init__.py │ ├── manage.py │ ├── server │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── simple_api │ ├── __init__.py │ ├── apps.py │ ├── urls.py │ └── views.py │ └── wechat │ ├── __init__.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── templates │ └── wechat │ │ └── text_message_template.xml │ ├── urls.py │ └── views.py ├── clean.sh ├── files ├── bin │ └── breadbot ├── etc │ └── bread.cfg ├── logs │ └── .gitignore └── temp │ └── .gitignore ├── install.sh ├── requirements.txt ├── setup.cfg ├── setup.py ├── tox.ini └── uninstall.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/NEWS -------------------------------------------------------------------------------- /QR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/QR.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/README_zh.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/TODO -------------------------------------------------------------------------------- /breadbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/__init__.py -------------------------------------------------------------------------------- /breadbot/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/core/__init__.py -------------------------------------------------------------------------------- /breadbot/core/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/core/chat.py -------------------------------------------------------------------------------- /breadbot/core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/core/common.py -------------------------------------------------------------------------------- /breadbot/core/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/core/memory.py -------------------------------------------------------------------------------- /breadbot/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/__init__.py -------------------------------------------------------------------------------- /breadbot/lib/dicts/stardict-lazyworm-ce-2.4.2/lazyworm-ce.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/dicts/stardict-lazyworm-ce-2.4.2/lazyworm-ce.dict -------------------------------------------------------------------------------- /breadbot/lib/dicts/stardict-lazyworm-ce-2.4.2/lazyworm-ce.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/dicts/stardict-lazyworm-ce-2.4.2/lazyworm-ce.idx -------------------------------------------------------------------------------- /breadbot/lib/dicts/stardict-lazyworm-ce-2.4.2/lazyworm-ce.idx.oft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/dicts/stardict-lazyworm-ce-2.4.2/lazyworm-ce.idx.oft -------------------------------------------------------------------------------- /breadbot/lib/dicts/stardict-lazyworm-ce-2.4.2/lazyworm-ce.ifo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/dicts/stardict-lazyworm-ce-2.4.2/lazyworm-ce.ifo -------------------------------------------------------------------------------- /breadbot/lib/dicts/stardict-lazyworm-ec-2.4.2/lazyworm-ec.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/dicts/stardict-lazyworm-ec-2.4.2/lazyworm-ec.dict -------------------------------------------------------------------------------- /breadbot/lib/dicts/stardict-lazyworm-ec-2.4.2/lazyworm-ec.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/dicts/stardict-lazyworm-ec-2.4.2/lazyworm-ec.idx -------------------------------------------------------------------------------- /breadbot/lib/dicts/stardict-lazyworm-ec-2.4.2/lazyworm-ec.idx.oft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/dicts/stardict-lazyworm-ec-2.4.2/lazyworm-ec.idx.oft -------------------------------------------------------------------------------- /breadbot/lib/dicts/stardict-lazyworm-ec-2.4.2/lazyworm-ec.ifo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/dicts/stardict-lazyworm-ec-2.4.2/lazyworm-ec.ifo -------------------------------------------------------------------------------- /breadbot/lib/idea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/idea.py -------------------------------------------------------------------------------- /breadbot/lib/import_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/import_data.py -------------------------------------------------------------------------------- /breadbot/lib/stardict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/stardict.py -------------------------------------------------------------------------------- /breadbot/lib/teach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/teach.py -------------------------------------------------------------------------------- /breadbot/lib/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/lib/web.py -------------------------------------------------------------------------------- /breadbot/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/__init__.py -------------------------------------------------------------------------------- /breadbot/server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/manage.py -------------------------------------------------------------------------------- /breadbot/server/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /breadbot/server/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/server/settings.py -------------------------------------------------------------------------------- /breadbot/server/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/server/urls.py -------------------------------------------------------------------------------- /breadbot/server/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/server/wsgi.py -------------------------------------------------------------------------------- /breadbot/server/simple_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /breadbot/server/simple_api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/simple_api/apps.py -------------------------------------------------------------------------------- /breadbot/server/simple_api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/simple_api/urls.py -------------------------------------------------------------------------------- /breadbot/server/simple_api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/simple_api/views.py -------------------------------------------------------------------------------- /breadbot/server/wechat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /breadbot/server/wechat/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/wechat/apps.py -------------------------------------------------------------------------------- /breadbot/server/wechat/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /breadbot/server/wechat/templates/wechat/text_message_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/wechat/templates/wechat/text_message_template.xml -------------------------------------------------------------------------------- /breadbot/server/wechat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/wechat/urls.py -------------------------------------------------------------------------------- /breadbot/server/wechat/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/breadbot/server/wechat/views.py -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/clean.sh -------------------------------------------------------------------------------- /files/bin/breadbot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/files/bin/breadbot -------------------------------------------------------------------------------- /files/etc/bread.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/files/etc/bread.cfg -------------------------------------------------------------------------------- /files/logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/temp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/install.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/tox.ini -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideamark/breadbot/HEAD/uninstall.sh --------------------------------------------------------------------------------