-
Notifications
You must be signed in to change notification settings - Fork 0
/
Złom.py
102 lines (88 loc) · 3.55 KB
/
Złom.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
import pandas as pd
from bs4 import BeautifulSoup
from selenium import webdriver
options = webdriver.ChromeOptions()
# options.add_argument('user-data-dir=C:\\Users\\Damian\\AppData\\Local\\Google\\Chrome\\User Data')
# options.add_argument('--headless')
driver = webdriver.Chrome(options=options,
executable_path=r'C:/Users/Damian/Desktop/chromedriver.exe')
driver.get('https://zlom.info.pl/')
driver.find_element_by_name("username").send_keys('xxxxxxxxxx')
driver.find_element_by_name("password").send_keys('xxxxxxxxxx')
driver.find_element_by_name("Submit").click()
def stworz_liste_linkow():
base_url = 'https://zlom.info.pl/wskazniki-cen-zlomu/ceny-zlomu.html?start='
base_url_ceny = 'https://zlom.info.pl'
linki = []
for i in range(0, 430, 10):
url = base_url + str(i)
driver.get(url)
kod_zrodlowy = driver.page_source
soup = BeautifulSoup(kod_zrodlowy, "html.parser")
for a in soup.find_all('a', attrs={'class': 'k2ReadMore'}):
linki.append(base_url_ceny + a.get('href'))
return linki
def stworz_liste_tabel():
lista_tabel = {}
for link in lista_linkow:
while True:
try:
driver.get(link)
kod_zrodlowy = driver.page_source
soup = BeautifulSoup(kod_zrodlowy, "html.parser")
tabela = pd.read_html(str(soup.find_all('table')[0]))[0].dropna().transpose()
tabela = tabela.rename(columns=tabela.iloc[0]).drop(tabela.index[0])
nazwa_tabeli = str(link.split('-')[-2] + '_' + link.split('-')[-3])
tabela.rename(index={1: nazwa_tabeli}, inplace=True)
lista_tabel[nazwa_tabeli] = tabela
print(f'OK - {link}')
except BaseException as error:
print(error)
continue
break
print('Pomyślnie stworzono listę wszystkich tabel')
return lista_tabel
try:
lista_linkow = stworz_liste_linkow()
print('Pomyślnie stworzono listę linków')
except BaseException as error:
print(error)
tabele = stworz_liste_tabel()
df = pd.DataFrame()
for tabela in tabele.values():
df = df.append(tabela, sort=False)
print('Pomyślnie połączono tabele')
df.to_excel('C:/Users/Damian/Desktop/Ceny_złomu_przed_obróbką.xlsx')
print('Pomyślnie zapisano plik przed obróbką')
nazwy_kolumn = df.columns
for nazwa in nazwy_kolumn:
try:
df[nazwa] = df[nazwa].apply(lambda x: x.split('\xa0')[0] if pd.notnull(x) else x)
except BaseException as error:
print(error)
continue
print('Koniec działania split (twarda spacja)')
for nazwa in nazwy_kolumn:
try:
df[nazwa] = df[nazwa].apply(lambda x: x.split(' ')[0] if pd.notnull(x) else x)
except BaseException as error:
print(error)
continue
print('Koniec działania split (zwykła spacja)')
for nazwa in nazwy_kolumn:
try:
df[nazwa] = df[nazwa].apply(lambda x: x.replace(',', '.') if pd.notnull(x) else x)
except BaseException as error:
print(error)
continue
print('Koniec działania replace')
for nazwa in nazwy_kolumn:
try:
df[nazwa] = pd.to_numeric(df[nazwa])
except BaseException as error:
print(error)
continue
print('Koniec działania to_numeric')
print('Wykonano wszystkie operacje na tabeli wynikowej')
df.to_excel('C:/Users/Damian/Desktop/Ceny_złomu_po_obróbce.xlsx')
print('Pomyślnie wyeksportowano tabelę do pliku')