├── .gitignore ├── LICENSE ├── README.md ├── ai.py ├── aiml ├── AimlParser.py ├── DefaultSubs.py ├── Kernel.py ├── LangSupport.py ├── PatternMgr.py ├── Utils.py ├── WordSub.py └── __init__.py ├── aiml_set ├── 20q.aiml ├── Computers.aiml ├── Date.aiml ├── Geography.aiml ├── Happy.aiml ├── Knowledge.aiml ├── Science.aiml ├── binary.aiml ├── bornin.aiml ├── calendar.aiml ├── general.aiml ├── jokes.aiml ├── learn.aiml ├── maimeng.aiml ├── math.aiml ├── rude.aiml └── sex.aiml ├── app.py ├── config.py ├── handlers.py ├── plugins ├── __init__.py ├── feed.py ├── ip.py ├── oschina.py ├── simsimi.py ├── talkbot.py └── v2ex.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/README.md -------------------------------------------------------------------------------- /ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/ai.py -------------------------------------------------------------------------------- /aiml/AimlParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml/AimlParser.py -------------------------------------------------------------------------------- /aiml/DefaultSubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml/DefaultSubs.py -------------------------------------------------------------------------------- /aiml/Kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml/Kernel.py -------------------------------------------------------------------------------- /aiml/LangSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml/LangSupport.py -------------------------------------------------------------------------------- /aiml/PatternMgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml/PatternMgr.py -------------------------------------------------------------------------------- /aiml/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml/Utils.py -------------------------------------------------------------------------------- /aiml/WordSub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml/WordSub.py -------------------------------------------------------------------------------- /aiml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml/__init__.py -------------------------------------------------------------------------------- /aiml_set/20q.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/20q.aiml -------------------------------------------------------------------------------- /aiml_set/Computers.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/Computers.aiml -------------------------------------------------------------------------------- /aiml_set/Date.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/Date.aiml -------------------------------------------------------------------------------- /aiml_set/Geography.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/Geography.aiml -------------------------------------------------------------------------------- /aiml_set/Happy.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/Happy.aiml -------------------------------------------------------------------------------- /aiml_set/Knowledge.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/Knowledge.aiml -------------------------------------------------------------------------------- /aiml_set/Science.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/Science.aiml -------------------------------------------------------------------------------- /aiml_set/binary.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/binary.aiml -------------------------------------------------------------------------------- /aiml_set/bornin.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/bornin.aiml -------------------------------------------------------------------------------- /aiml_set/calendar.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/calendar.aiml -------------------------------------------------------------------------------- /aiml_set/general.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/general.aiml -------------------------------------------------------------------------------- /aiml_set/jokes.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/jokes.aiml -------------------------------------------------------------------------------- /aiml_set/learn.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/learn.aiml -------------------------------------------------------------------------------- /aiml_set/maimeng.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/maimeng.aiml -------------------------------------------------------------------------------- /aiml_set/math.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/math.aiml -------------------------------------------------------------------------------- /aiml_set/rude.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/rude.aiml -------------------------------------------------------------------------------- /aiml_set/sex.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/aiml_set/sex.aiml -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/config.py -------------------------------------------------------------------------------- /handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/handlers.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/plugins/__init__.py -------------------------------------------------------------------------------- /plugins/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/plugins/feed.py -------------------------------------------------------------------------------- /plugins/ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/plugins/ip.py -------------------------------------------------------------------------------- /plugins/oschina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/plugins/oschina.py -------------------------------------------------------------------------------- /plugins/simsimi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/plugins/simsimi.py -------------------------------------------------------------------------------- /plugins/talkbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/plugins/talkbot.py -------------------------------------------------------------------------------- /plugins/v2ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/plugins/v2ex.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/messense/wechat-bot/HEAD/requirements.txt --------------------------------------------------------------------------------