-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbranje_strani.py
49 lines (34 loc) · 1.11 KB
/
branje_strani.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
try:
from requests_html import HTMLSession, HTML
except Exception as e:
print("Prosim namesti knjižnico requests_html z uporabo pip-a.")
def stran_v_niz(url):
"""
Funkcije za dobivanje strani in shranjevanje strani.
"""
try:
seansa = HTMLSession()
odgovor = seansa.get(url)
odgovor.html.render()
vsebina = odgovor.html.html
seansa.close()
except Exception as e:
print(
f"Pri doseganju spletne strani je prišlo do naslednje napake:{e}")
else:
return vsebina
def shrani_niz(besedilo, pot):
with open(pot, 'w', encoding='utf-8') as datoteka:
datoteka.write(besedilo)
def shrani_stran(url, pot):
shrani_niz(stran_v_niz(url), pot)
# funkcije za naložitev strani iz tekstovne datoteke
def niz_v_html_objekt(niz):
# Vrne html objekt knjižnice requests_html
html = HTML(html=niz)
return html
def preberi_datoteko(pot):
with open(pot, 'r', encoding='utf-8') as datoteka:
return datoteka.read()
def nalozi_stran_iz_datoteke(pot):
return niz_v_html_objekt(preberi_datoteko(pot))