Last active
March 16, 2024 14:55
-
-
Save vijayanandrp/574e5da2df817ee6f20bfa937ab9b5e9 to your computer and use it in GitHub Desktop.
Wikipedia Scraper using Scrapy
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 scrapy | |
import re | |
import unicodedata | |
from scrapy.crawler import CrawlerProcess | |
from urllib.parse import urlparse | |
class WikiSpider(scrapy.Spider): | |
name = 'wiki_company' | |
start_urls = ['https://en.wikipedia.org/wiki/xxx'] | |
def parse(self, response): | |
parsed_uri = urlparse(response.url) | |
domain = '{uri.scheme}://{uri.netloc}/'.format(uri=parsed_uri) | |
def _clean(value): | |
value = ' '.join(value) | |
value = value.replace('\n', '') | |
value = unicodedata.normalize("NFKD", value) | |
value = re.sub(r' , ', ', ', value) | |
value = re.sub(r' \( ', ' (', value) | |
value = re.sub(r' \) ', ') ', value) | |
value = re.sub(r' \)', ') ', value) | |
value = re.sub(r'\[\d.*\]', ' ', value) | |
value = re.sub(r' +', ' ', value) | |
return value.strip() | |
strings = [] | |
for i in range(0, 100): | |
try: | |
for node in response.xpath('//*[@id="mw-content-text"]/div/p[{}]'.format(i)): | |
text = _clean(node.xpath('string()').extract()) | |
if len(text): | |
strings.append(text) | |
except Exception as error: | |
strings.append(str(error)) | |
info_card = dict() | |
i = 0 | |
rows = response.xpath('//*[@id="mw-content-text"]/div/table[@class="infobox vcard" ]/tr') | |
for row in rows: | |
# Scraping Image in info box | |
value = dict() | |
if row.css('.image'): | |
if row.css('img'): | |
i += 1 | |
item = 'Logo_{}'.format(i) | |
try: | |
value['logo_thumb_url'] = row.css('img').xpath('@src').extract_first().replace('//', '') | |
try: | |
value['logo_url'] = domain + row.css('a::attr(href)').extract_first()[1:] | |
try: | |
text = _clean(row.xpath('string()').extract()) | |
if text: | |
value['text'] = text | |
except: | |
pass | |
except: | |
pass | |
except: | |
pass | |
# Scraping info box values | |
elif row.xpath('th'): | |
item = row.xpath('th//text()').extract() | |
item = [_.strip() for _ in item if _.strip() and _.replace('\n', '')] | |
item = ' '.join(item) | |
item = item.replace('\n', '') | |
item = unicodedata.normalize("NFKD", item) | |
item = re.sub(r' +', ' ', item) | |
item = item.strip() | |
if row.xpath('td/div/ul/li'): | |
value = [] | |
for li in row.xpath('td/div/ul/li'): | |
value.append(''.join(li.xpath('.//text()').extract())) | |
value = [_.strip() for _ in value if _.strip() and _.replace('\n', '')] | |
value = ', '.join(value) | |
else: | |
value = row.xpath('td//text()').extract() | |
value = [_.strip() for _ in value if _.strip() and _.replace('\n', '')] | |
if item == 'Website': | |
value = ''.join(value) | |
else: | |
value = ' '.join(value) | |
value = value.replace('\n', '') | |
value = unicodedata.normalize("NFKD", value) | |
value = re.sub(r' , ', ', ', value) | |
value = re.sub(r' \( ', ' (', value) | |
value = re.sub(r' \) ', ') ', value) | |
value = re.sub(r' \)', ') ', value) | |
value = re.sub(r'\[\d\]', ' ', value) | |
value = re.sub(r' +', ' ', value) | |
value = value.strip() | |
info_card[item] = value | |
yield { | |
'Title': response.css('#firstHeading::text').extract_first(), | |
'Organization_name': response.css('#mw-content-text > div >' | |
' table.infobox.vcard > caption::text').extract_first(), | |
**info_card, | |
'strings': strings | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment