Last active
November 25, 2019 14:09
-
-
Save c02y/5a399c6480e72d8bfebcf8da8f8e0e7e to your computer and use it in GitHub Desktop.
Download RoundTable mp3 files from http://english.cri.cn/4926/more/11680/more11680.htm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import os | |
import scrapy | |
import urllib.request | |
class AudioSpider(scrapy.Spider): | |
name = 'audio' | |
allowed_domains = ['english.cri.cn'] | |
start_urls = ['http://english.cri.cn/4926/more/11680/more11680.htm'] | |
prefix_url = 'http://english.cri.cn' | |
def parse(self, response): | |
audio_names = response.xpath('//tr[*]/td[*]/a[contains(text(), "RoundTable")]/text()').extract() | |
audio_jump_url_tails = response.xpath('//tr[*]/td[*]/a[contains(text(), "RoundTable")]/@href').extract() | |
for i, j in zip(audio_names, audio_jump_url_tails): | |
audio_jump_url = self.prefix_url + j | |
yield scrapy.Request(audio_jump_url, callback=self.parse_jump_link, dont_filter=True, meta={'name': i}) | |
next_page_tail = response.xpath('//a[contains(text(), "Next")]/@href').extract_first() | |
if next_page_tail: | |
next_page = self.prefix_url + next_page_tail | |
yield scrapy.Request(next_page, callback=self.parse) | |
def parse_jump_link(self, response): | |
audio_link = response.xpath('//*[@id="ccontent"]/a/@href').extract_first() | |
file_name = response.meta.get('name') + '.mp3' | |
if not os.path.isfile(file_name): | |
urllib.request.urlretrieve(audio_link, file_name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.