网络自动化 - 自动检查链接
我是网络应用程序的新手,我想检查何时有新版本的 Dota 地图,我会检查 getdota.com 中的链接。 我该如何做到这一点以及哪种语言,我希望它在每次启动魔兽争霸时进行检查,并自动将新地图下载到特定文件夹。 我的问题是:您能否提供有关网络自动化或类似内容的特定文章的链接。 先谢谢了:)
I'm new to web app and I want to check when there's a new version of dota map, I'll check links in getdota.com.
How can I do this and which language, I want it checks every time you start warcraft, and auto download new map to specific folder.
My question is : Can you give a link to a specific article about web automation or something like that.
Thanks first :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是
Python
中的示例。它解析
getdota.com
页面,读取下载地图的POST
请求的参数,获取文件并将其保存在配置的目录中(默认为当前目录)。Below is an example in
Python
.It parses
getdota.com
page, reads parameters forPOST
request for downloading a map, gets the file and saves it in configured directory (by default current directory).