-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata_extraction.py
134 lines (100 loc) · 4.09 KB
/
data_extraction.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import requests
from abc import ABC
from bs4 import BeautifulSoup
from dataclasses import dataclass
from datetime import datetime, date
@dataclass
class Media(ABC):
link: str
title: str
format: str # 'audio', 'ebook', 'emagazine'
library: str
available: bool
availability_date: date
@property
def full_url(self):
return f"https://www.onleihe.de/{self.library}/frontend/{self.link}"
@property
def id(self):
return int(self.link.split('-')[2])
@dataclass
class Book(Media):
_author: str
description: str
insert_date: date
def __hash__(self):
return hash(self.id)
def __eq__(self, other):
if not isinstance(other, Media):
return NotImplemented
return self.id == other.id
@property
def author(self):
return self._author.replace("\n", " ")
@author.setter
def author(self, value):
self._author = value
@dataclass
class Magazine(Media):
def __hash__(self):
return hash(self.id)
def __eq__(self, other):
if not isinstance(other, Media):
return NotImplemented
return self.id == other.id
def extract_book_info(book_element: BeautifulSoup, library: str) -> Book:
author_element = book_element.find('p', {'test-id': 'cardAuthor'})
author = author_element.text.strip().replace('\xa0', ' ')
title_element = book_element.find('h3', {'test-id': 'cardTitle'})
title = title_element.text.strip()
link_element = book_element.find('a', {'test-id': 'mediaInfoLink'})
link = link_element['href']
description_element = book_element.find('p', {'test-id': 'cardAbstract'})
if description_element:
description = description_element.text.strip().replace('\xa0', ' ')
else:
description = None
date_element = book_element.find('small', {'test-id': 'cardInsertDate'}).find('span')
insert_date_str = date_element.text.strip()
insert_date = datetime.strptime(insert_date_str, '%d.%m.%Y').date()
if book_element.find('svg', {'test-id': 'ic_eaudio'}):
book_format = 'audio'
else:
book_format = 'ebook'
try:
availability_date_element = book_element.find('span', {'test-id': 'cardAvailability'}).text.strip()
availability_date = datetime.strptime(availability_date_element, '%d.%m.%Y').date()
available = False
except AttributeError:
availability_date = date.today()
available = True
return Book(link, title, book_format, library, available, availability_date, author, description, insert_date)
def extract_magazine_info(magazine_element: BeautifulSoup, library: str) -> Magazine:
title_element = magazine_element.find('h3', {'test-id': 'cardTitle'})
title = title_element.text.strip()
link_element = magazine_element.find('a', {'test-id': 'mediaInfoLink'})
link = link_element['href']
availability_date_element = magazine_element.select_one('[test-id="cardAvailability"]').text.strip()
if "Verfügbar" in availability_date_element:
availability_date = date.today()
available = True
elif "Ausgeliehen" in availability_date_element:
availability_date = date(1970, 1, 1)
available = False
else:
availability_date_str = availability_date_element.split('Voraussichtlich verfügbar ab:\xa0')[-1].strip()
availability_date = datetime.strptime(availability_date_str, '%d.%m.%Y').date()
available = False
return Magazine(link, title, 'emagazine', library, available, availability_date)
def get_media_from_onleihe(url: str, elements: int = 50, timeout: int = 10):
data = {'elementsPerPage': str(elements)}
response = requests.post(url, data=data, timeout=timeout)
response.raise_for_status()
library = url.split('/')[3]
soup = BeautifulSoup(response.content, 'html.parser')
media_containers = soup.find_all('div', class_='card')
for container in media_containers:
if container.find('p', {'test-id': 'cardAuthor'}):
yield extract_book_info(container, library)
else:
yield extract_magazine_info(container, library)