telegram bot 推送电影天堂最新电影
-
构建镜像
切换到dockerfile文件所在目录
sudo docker build . -t movie_bot
-
启动镜像
sudo docker run -d -p 8000:8000 movie_bot
-
发送 GET 请求 imgType 自己填写, 得到 json 数据
http://{YOUR_SCRAPYRT_IP}:8000/crawl.json?start_requests=true&spider_name=movie
- python 3+
- scrapy
- scrapyrt
-
首先准备 scrapy 爬虫项目
-
下载并安装 scrapyrt, 并用当前目录的 resources.py 替换项目中的 resources.py
-
使用命令 scrapy crawl movie 确认爬虫可以正常使用后, 执行 scrapyrt -p 8000 开始在 8000 端口监听 web 请求
-
发送 GET 请求 imgType 自己填写, 得到 json 数据
http://{YOUR_SCRAPYRT_IP}:8000/crawl.json?start_requests=true&spider_name=movie
将 GoogleScript
目录中的代码拷贝到 google script 平台上, 具体步骤推荐该视频: Telegram bot 机器人编程系列, 并且替换其中的 YOUR_CHAT_ID
, YOUR_BOT_TOKEN
和 上一步搭建 scrapyrt
的服务端 ip地址 YOUR_SCRAPYRT_IP
, 然后运行 app.gs
中的 sendMovie
方法, 即可看到效果。
:0: UserWarning: You do not have a working installation of the service_identity module: 'cannot import name opentype'. Please install it from https://pypi.python.org/pypi/service_identity and make sure all of its dependencies are satisfied. Without the service_identity module, Twisted can perform only rudimentary TLS client hostname verification. Many valid certificate/hostname mappings may be rejected.
pip install service_identity