我正在尝试创建一个从网站下载文件的python脚本, 但我无法找到解决方案:
<form name="dl" id="dl" action="/subtitle/download" method="post">
<button class="Positive" id="downloadButton" onclick="DownloadSubtitle(this)" type="submit">
Download English Subtitle
</button>
<input name="mac" id="mac" type="hidden" value="QvGN39b5EsEDobZfxpItT7XDYN2b4yBreI8TJIBfpdyi5SFknjIDx-DuLi9J51RZ0">
</form>
供参考:http://subscene.com/subtitles/the-big-bang-theory-sixth-season/english/649386
我希望能够下载字幕文件。 我无法找到如何从这些javascript函数中获取结果, 我想如果我从该函数获取一个带有它和mac的数据,我会得到它 文件结果..我错了吗?
*目前使用urllib2打开页面,HTMLParser解析它并获得结果。