├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── chatpush ├── __init__.py ├── routes.py ├── settings.py ├── static │ └── img │ │ └── qr_code.png ├── templates │ └── index.html └── wx.py ├── config ├── __init__.py ├── mail_config.py ├── shop.json ├── tmall.json └── wechat_config.py ├── data.txt ├── img ├── pic.jpg └── qrcode.jpg ├── jdBuyMask ├── __init__.py ├── config.py ├── configDemo.ini ├── jdEmail.py ├── jdProgram.py ├── jdlogger.py ├── message.py ├── requirements.txt ├── util.py ├── wechat_ftqq.py └── 感谢作者 ├── log ├── __init__.py └── logger.py ├── src ├── chromedriver ├── chromedriver.exe ├── jdurl.txt ├── mail.py └── tmurl.txt ├── tmall_order.py ├── util ├── __init__.py ├── jd.txt ├── tm.txt └── util.py ├── watcher.py └── wechat_push.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/README.md -------------------------------------------------------------------------------- /chatpush/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/chatpush/__init__.py -------------------------------------------------------------------------------- /chatpush/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/chatpush/routes.py -------------------------------------------------------------------------------- /chatpush/settings.py: -------------------------------------------------------------------------------- 1 | # 默认配置 2 | 3 | DEBUG = True 4 | SECRET_KEY = 'default key' 5 | -------------------------------------------------------------------------------- /chatpush/static/img/qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/chatpush/static/img/qr_code.png -------------------------------------------------------------------------------- /chatpush/templates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chatpush/wx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/chatpush/wx.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/mail_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/config/mail_config.py -------------------------------------------------------------------------------- /config/shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/config/shop.json -------------------------------------------------------------------------------- /config/tmall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/config/tmall.json -------------------------------------------------------------------------------- /config/wechat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/config/wechat_config.py -------------------------------------------------------------------------------- /data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/data.txt -------------------------------------------------------------------------------- /img/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/img/pic.jpg -------------------------------------------------------------------------------- /img/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/img/qrcode.jpg -------------------------------------------------------------------------------- /jdBuyMask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jdBuyMask/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/jdBuyMask/config.py -------------------------------------------------------------------------------- /jdBuyMask/configDemo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/jdBuyMask/configDemo.ini -------------------------------------------------------------------------------- /jdBuyMask/jdEmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/jdBuyMask/jdEmail.py -------------------------------------------------------------------------------- /jdBuyMask/jdProgram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/jdBuyMask/jdProgram.py -------------------------------------------------------------------------------- /jdBuyMask/jdlogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/jdBuyMask/jdlogger.py -------------------------------------------------------------------------------- /jdBuyMask/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/jdBuyMask/message.py -------------------------------------------------------------------------------- /jdBuyMask/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.8.2 2 | requests==2.22.0 3 | pillow==7.0.0 4 | -------------------------------------------------------------------------------- /jdBuyMask/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/jdBuyMask/util.py -------------------------------------------------------------------------------- /jdBuyMask/wechat_ftqq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/jdBuyMask/wechat_ftqq.py -------------------------------------------------------------------------------- /jdBuyMask/感谢作者: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/jdBuyMask/感谢作者 -------------------------------------------------------------------------------- /log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/log/logger.py -------------------------------------------------------------------------------- /src/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/src/chromedriver -------------------------------------------------------------------------------- /src/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/src/chromedriver.exe -------------------------------------------------------------------------------- /src/jdurl.txt: -------------------------------------------------------------------------------- 1 | "https://u.jd.com/bsxNtB", 2 | -------------------------------------------------------------------------------- /src/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/src/mail.py -------------------------------------------------------------------------------- /src/tmurl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/src/tmurl.txt -------------------------------------------------------------------------------- /tmall_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/tmall_order.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/jd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/util/jd.txt -------------------------------------------------------------------------------- /util/tm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/util/tm.txt -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/util/util.py -------------------------------------------------------------------------------- /watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/watcher.py -------------------------------------------------------------------------------- /wechat_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westnestling/N95-watcher/HEAD/wechat_push.py --------------------------------------------------------------------------------