-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathFantacalcio.py
280 lines (236 loc) · 8.49 KB
/
Fantacalcio.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
import ast
import os
from random import randint
import time
from bs4 import BeautifulSoup
import requests
from tqdm import tqdm
import pandas as pd
from loguru import logger
ruoli = ["Portieri", "Difensori", "Centrocampisti", "Trequartisti", "Attaccanti"]
skills = {
"Fuoriclasse": 1,
"Titolare": 3,
"Buona Media": 2,
"Goleador": 4,
"Assistman": 2,
"Piazzati": 2,
"Rigorista": 5,
"Giovane talento": 2,
"Panchinaro": -4,
"Falloso": -2,
"Outsider": 2,
}
def get_giocatori(ruolo: str) -> list:
html = requests.get(
"https://www.fantacalciopedia.com/lista-calciatori-serie-a/"
+ ruolo.lower()
+ "/"
)
soup = BeautifulSoup(html.content, "html.parser")
calciatori = []
giocatori = soup.find_all("article")
for giocatore in giocatori:
calciatore = giocatore.find("a").get("href")
calciatori.append(calciatore)
return calciatori
def get_attributi(url: str) -> dict:
time.sleep(randint(0, 2000) / 1000)
attributi = dict()
html = requests.get(url.strip())
soup = BeautifulSoup(html.content, "html.parser")
attributi["Nome"] = soup.select_one("h1").get_text().strip()
selettore = "div.col_one_fourth:nth-of-type(1) span.stickdan"
attributi["Punteggio"] = soup.select_one(selettore).text.strip().replace("/100", "")
selettore = " div.col_one_fourth:nth-of-type(n+2) div"
medie = [el.find("span").text.strip() for el in soup.select(selettore)]
anni = [
el.find("strong").text.split(" ")[-1].strip() for el in soup.select(selettore)
]
i = 0
for anno in anni:
attributi[f"Fantamedia anno {anno}"] = medie[i]
i += 1
selettore = "div.col_one_third:nth-of-type(2) div"
stats_ultimo_anno = soup.select_one(selettore)
parametri = [
el.text.strip().replace(":", "") for el in stats_ultimo_anno.find_all("strong")
]
valori = [el.text.strip() for el in stats_ultimo_anno.find_all("span")]
attributi.update(dict(zip(parametri, valori)))
selettore = ".col_one_third.col_last div"
stats_previste = soup.select_one(selettore)
parametri = [
el.text.strip().replace(":", "") for el in stats_previste.find_all("strong")
]
valori = [el.text.strip() for el in stats_previste.find_all("span")]
attributi.update(dict(zip(parametri, valori)))
selettore = ".label12 span.label"
ruolo = soup.select_one(selettore)
attributi["Ruolo"] = ruolo.get_text().strip()
selettore = "span.stickdanpic"
skills = [el.text for el in soup.select(selettore)]
attributi["Skills"] = skills
selettore = "div.progress-percent"
investimento = soup.select(selettore)[2]
attributi["Buon investimento"] = investimento.text.replace("%", "")
selettore = "div.progress-percent"
investimento = soup.select(selettore)[3]
attributi["Resistenza infortuni"] = investimento.text.replace("%", "")
selettore = "img.inf_calc"
try:
consigliato = soup.select_one(selettore).get("title")
if "Consigliato per la giornata" in consigliato:
attributi["Consigliato prossima giornata"] = True
else:
attributi["Consigliato prossima giornata"] = False
except:
attributi["Consigliato prossima giornata"] = False
selettore = "span.new_calc"
nuovo = soup.select_one(selettore)
if not nuovo == None:
attributi["Nuovo acquisto"] = True
else:
attributi["Nuovo acquisto"] = False
selettore = "img.inf_calc"
try:
infortunato = soup.select_one(selettore).get("title")
if "Infortunato" in infortunato:
attributi["Infortunato"] = True
else:
attributi["Infortunato"] = False
except:
attributi["Infortunato"] = False
selettore = "#content > div > div.section.nobg.nomargin > div > div > div:nth-child(2) > div.col_three_fifth > div.promo.promo-border.promo-light.row > div:nth-child(3) > div:nth-child(1) > div > img"
squadra = soup.select_one(selettore).get("title").split(":")[1].strip()
attributi["Squadra"] = squadra
selettore = " div.col_one_fourth:nth-of-type(n+2) div"
try:
trend = soup.select(selettore)[0].find("i").get("class")[1]
if trend == "icon-arrow-up":
attributi["Trend"] = "UP"
else:
attributi["Trend"] = "DOWN"
except:
attributi["Trend"] = "STABLE"
selettore = "div.col_one_fourth:nth-of-type(2) span.rouge"
presenze_attuali = soup.select_one(selettore).text
attributi["Presenze campionato corrente"] = presenze_attuali
return attributi
def appetibilita(df: pd.DataFrame) -> float:
# cleaning
for col in df.columns:
df.loc[df[col] == "nd", col] = 0
# appetibilità =( Fantamedia anno scorso * Partite giocate anno scorso/38 * peso
# + Fantamedia anno corrente * Partite giocate anno corrente/giornata * 100-peso )/ quotazione
# + skills + altri parametri
res = []
giocatemax = 1
for index, row in df.iterrows():
if int(row[-1]) > int(giocatemax):
giocatemax = int(row[-1])
for index, row in df.iterrows():
appetibilita = 0
appetibilita_today = 0
# media pesata fantamedia
if int(row[5]) > 0:
appetibilita += float(row[7]) * int(row[5]) / 38 *20/100 #era row 2
if not (
df.columns[2].split(" ")[-1] == df.columns[6].split(" ")[-1]
and int(row[-1]) > 5
): # stesso anno
appetibilita = (
appetibilita * float(row[6]) * int(row[-1]) / giocatemax *80/100
)
else:
appetibilita = float(row[7]) * int(row[5]) / 38
# media pesata fantamedia * convenienza rispetto alla quotazione * media scorso anno
appetibilita=appetibilita*float(row['Punteggio'])*30/100
if float(row[1]) == 0: pt=1
else: pt=float(row[1])
appetibilita = (
appetibilita / pt * 100 / 40
)
# skills
try:
valori = ast.literal_eval(row[-9])
plus = 0
for skill in valori:
plus += skills[skill]
appetibilita += plus
except:
pass
if row["Nuovo acquisto"]:
appetibilita -= 2
if row["Buon investimento"] == 60:
appetibilita += 3
if row["Consigliato prossima giornata"]:
appetibilita += 1
if row["Trend"] == "UP":
appetibilita += 2
if row["Infortunato"]:
appetibilita -= 1
if row["Resistenza infortuni"] > 60:
appetibilita += 4
if row["Resistenza infortuni"] == 60:
appetibilita += 2
res.append(appetibilita)
return res
if __name__ == "__main__":
giocatori_urls = []
if not os.path.exists("giocatori_urls.txt"):
for i in tqdm(range(0, len(ruoli), 1)):
lista = get_giocatori(ruoli[i])
[giocatori_urls.append(el) for el in lista]
with open(r"giocatori_urls.txt", "w") as fp:
for item in giocatori_urls:
fp.write("%s\n" % item)
logger.debug("URL scritti")
else:
logger.debug("Leggo la lista giocatori")
with open("giocatori_urls.txt", "r") as fp:
giocatori_urls = fp.readlines()
if not os.path.exists("giocatori.csv"):
giocatori = []
for i in tqdm(range(0, len(giocatori_urls), 1)):
giocatore = get_attributi(giocatori_urls[i])
giocatori.append(giocatore)
df = pd.DataFrame.from_dict(giocatori)
df.to_csv("giocatori.csv", index=False)
logger.debug("CSV scritto")
else:
logger.debug("Leggo il dataset giocatori")
df = pd.read_csv("giocatori.csv")
df["Convenienza"] = appetibilita(df)
# riordino le colonne come piace a me
temp = df.columns
df = df[
[
temp[11],
temp[0],
temp[18],
temp[1],
temp[21],
temp[19],
temp[12],
temp[20],
temp[6],
temp[2],
temp[5],
temp[7],
temp[3],
temp[4],
temp[16],
temp[17],
temp[8],
temp[9],
temp[10],
temp[13],
temp[14],
temp[15],
]
]
df.sort_values(by="Convenienza", ascending=False)
# df.to_csv("giocatori_appet.csv", index=False)
df.to_excel("giocatori_excel.xls")
logger.debug("Finito!")