Compare commits
27 Commits
frontend
...
7b457475b4
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b457475b4 | |||
| 8fb2a22c2a | |||
| d1f5f8f3f4 | |||
| 56e68ed751 | |||
| f96a3ed1f1 | |||
| 00bbe05b1c | |||
| e373c6b274 | |||
| e80ee6bf8f | |||
| a25be482b0 | |||
| 4e8cb48c82 | |||
| bc82fcd6b8 | |||
| 5d238cb6b8 | |||
| fe4c9aab3d | |||
| 9e8a60dfa1 | |||
| 7fe4e03945 | |||
| ffcfa12d4c | |||
|
|
f7e80811a0 | ||
| c86a93c153 | |||
| 43eb1d421d | |||
| c2568c86ef | |||
| cf46fdfbb7 | |||
| 791d20139d | |||
| c3a6626d6f | |||
| 5960e44b17 | |||
|
|
13f6e2e3b9 | ||
|
|
9a007f504c | ||
|
|
b5fdbb3230 |
@@ -1,20 +1,12 @@
|
|||||||
|
from flask import session
|
||||||
from lewy_db import baza as ldb
|
from lewy_db import baza as ldb
|
||||||
from lewy_globals import colors as c
|
from lewy_globals import colors as c
|
||||||
|
from lewy_globals import safeTraverse as safe_traverse
|
||||||
import json
|
import json
|
||||||
import lewy_globals
|
import lewy_globals
|
||||||
import requests
|
import requests
|
||||||
import time
|
import time
|
||||||
|
from sqlalchemy import func
|
||||||
def safe_traverse(obj: dict, path: list, default=None):
|
|
||||||
result = obj
|
|
||||||
try:
|
|
||||||
for x in path:
|
|
||||||
result = result[x]
|
|
||||||
except KeyError:
|
|
||||||
result = default
|
|
||||||
# print(f"error reading: {' -> '.join(path)} - returning: {default}")
|
|
||||||
finally:
|
|
||||||
return result
|
|
||||||
|
|
||||||
class scraper:
|
class scraper:
|
||||||
|
|
||||||
@@ -45,22 +37,26 @@ class scraper:
|
|||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def to_iso_compatible_date(self, dmy_date: str):
|
||||||
|
"""
|
||||||
|
Zamienia datę z formatu DD.MM.YY na YYYY-MM-DD
|
||||||
|
|
||||||
|
:param dmy_date: Data w formacie DD.MM.YY
|
||||||
|
:type dmy_date: str
|
||||||
|
"""
|
||||||
|
day, month, year = dmy_date.split(".")
|
||||||
|
return f"{2000 + int(year)}-{month}-{day}"
|
||||||
|
|
||||||
|
|
||||||
def czy_mecz_istnieje(self, zewnetrzne_id_meczu: str):
|
def czy_mecz_istnieje(self, zewnetrzne_id_meczu: str):
|
||||||
# mecz = db.simple_select_all(ldb.mecze, zewnetrzne_id_meczu=zewnetrzne_id_meczu)
|
|
||||||
# if mecz is not None and mecz != []:
|
|
||||||
# return True
|
|
||||||
# else:
|
|
||||||
# return False
|
|
||||||
return self.__czy_x_istnieje("mecze", zewnetrzne_id_meczu=zewnetrzne_id_meczu)
|
return self.__czy_x_istnieje("mecze", zewnetrzne_id_meczu=zewnetrzne_id_meczu)
|
||||||
|
|
||||||
def czy_klub_istnieje(self, id_klubu: str):
|
def czy_klub_istnieje(self, id_klubu: str):
|
||||||
# mecz = db.simple_select_all(ldb.mecze, zewnetrzne_id_meczu=zewnetrzne_id_meczu)
|
|
||||||
# if mecz is not None and mecz != []:
|
|
||||||
# return True
|
|
||||||
# else:
|
|
||||||
# return False
|
|
||||||
return self.__czy_x_istnieje("kluby", id_klubu=id_klubu)
|
return self.__czy_x_istnieje("kluby", id_klubu=id_klubu)
|
||||||
|
|
||||||
|
def czy_nie_trzeba_pobierac_nowych_meczy_zawodnika(self, id_zawodnika: int, zewnetrzne_id_meczu: str):
|
||||||
|
return self.__czy_x_istnieje("sportowcy_w_meczach", id_zawodnika=id_zawodnika, zewnetrzne_id_meczu=zewnetrzne_id_meczu)
|
||||||
|
|
||||||
def id_na_imie_nazwisko_urodziny(self, zewnetrzne_id_sportowca: str = "MVC8zHZD"):
|
def id_na_imie_nazwisko_urodziny(self, zewnetrzne_id_sportowca: str = "MVC8zHZD"):
|
||||||
"""
|
"""
|
||||||
Scraper z dykty xD
|
Scraper z dykty xD
|
||||||
@@ -96,6 +92,10 @@ class scraper:
|
|||||||
# TODO: Sprawdź, czy sportowiec istnieje w bazie.
|
# TODO: Sprawdź, czy sportowiec istnieje w bazie.
|
||||||
# Jeśli nie, dodaj go w podobny sposób, jak
|
# Jeśli nie, dodaj go w podobny sposób, jak
|
||||||
# w sample_data_init() (w lewy_db.py).
|
# w sample_data_init() (w lewy_db.py).
|
||||||
|
# -- Jednak tego tak nie robimy, ponieważ nie uzyskamy wielu informacji.
|
||||||
|
|
||||||
|
id_zawodnika = self.db.get_id_zawodnika_by_zewnetrzne_id(zewnetrzne_id_sportowca)
|
||||||
|
zawodnik = self.db.simple_select_all("sportowcy", zewnetrzne_id_zawodnika=zewnetrzne_id_sportowca)[0]
|
||||||
|
|
||||||
page = 0
|
page = 0
|
||||||
match_num = 0
|
match_num = 0
|
||||||
@@ -115,11 +115,29 @@ class scraper:
|
|||||||
home_club_id = safe_traverse(match, ["homeParticipantUrl"], default="non-existent-club-id")
|
home_club_id = safe_traverse(match, ["homeParticipantUrl"], default="non-existent-club-id")
|
||||||
away_club_id = safe_traverse(match, ["awayParticipantUrl"], default="non-existent-club-id")
|
away_club_id = safe_traverse(match, ["awayParticipantUrl"], default="non-existent-club-id")
|
||||||
|
|
||||||
# Sprawdź, czy mecz nie znajduje się już w bazie
|
# ~Sprawdź, czy mecz nie znajduje się już w bazie~
|
||||||
if self.czy_mecz_istnieje(zewnetrzne_id_meczu=match_id):
|
#
|
||||||
|
# UWAGA! Nie powinniśmy tego sprawdzać jak w komentarzu poniżej!
|
||||||
|
# To sprawdzenie powinno jedynie służyć zapobieganiu dodania istniejących meczy,
|
||||||
|
# natomiast istniejący mecz nie oznacza, że sportowiec ma już statystykę z niego!
|
||||||
|
# Przerwać scrapowanie należy wtedy, gdy znajdzie się statystykę sportowca
|
||||||
|
# z bieżącego meczu, a nie kiedy znajdzie się bieżący mecz w bazie!
|
||||||
|
#
|
||||||
|
# if self.czy_mecz_istnieje(zewnetrzne_id_meczu=match_id):
|
||||||
|
# stop_scraping = True
|
||||||
|
# break
|
||||||
|
#
|
||||||
|
# Rozwiązanie jest mocno nieefektywne przy scrapowaniu całej bazy od zera,
|
||||||
|
# ale rozwiąże przypadki, w których zawodnicy, których śledzimy, grali przeciwko sobie.
|
||||||
|
if self.czy_nie_trzeba_pobierac_nowych_meczy_zawodnika(id_zawodnika=id_zawodnika, zewnetrzne_id_meczu=match_id):
|
||||||
stop_scraping = True
|
stop_scraping = True
|
||||||
break
|
break
|
||||||
|
|
||||||
|
if self.czy_mecz_istnieje(zewnetrzne_id_meczu=match_id):
|
||||||
|
# Nie scrapuj istniejących meczy.
|
||||||
|
# Naturalnie, istniejący mecz nie musi oznaczać potrzeby zakończenia scrapowania.
|
||||||
|
continue
|
||||||
|
|
||||||
# Sprawdź, czy klub znajduje się już w bazie. Jeśli nie,
|
# Sprawdź, czy klub znajduje się już w bazie. Jeśli nie,
|
||||||
# trzeba go dodać przed meczem.
|
# trzeba go dodać przed meczem.
|
||||||
if not self.czy_klub_istnieje(id_klubu=home_club_id):
|
if not self.czy_klub_istnieje(id_klubu=home_club_id):
|
||||||
@@ -135,14 +153,91 @@ class scraper:
|
|||||||
pelna_nazwa=safe_traverse(match, ["awayParticipantName"]),
|
pelna_nazwa=safe_traverse(match, ["awayParticipantName"]),
|
||||||
skrocona_nazwa=safe_traverse(match, ["awayParticipant3CharName"]))
|
skrocona_nazwa=safe_traverse(match, ["awayParticipant3CharName"]))
|
||||||
|
|
||||||
# TODO: (opcjonalnie) zamień *słownik match* na *obiekt mecz*
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# TODO: dodaj obiekt mecz do bazy (simple_insert_one(), simple_insert_many())
|
# TODO: dodaj obiekt mecz do bazy (simple_insert_one(), simple_insert_many())
|
||||||
print(f"{c.OKCYAN}Nowy mecz ({match_num}){c.ENDC}: {match}")
|
print(f"{c.OKCYAN}Nowy mecz ({match_num}){c.ENDC}: {match}")
|
||||||
|
|
||||||
|
iso_converted_date = self.to_iso_compatible_date(safe_traverse(match, ["eventStartTime"], default="1970-01-01"))
|
||||||
|
|
||||||
|
self.db.simple_insert_one("mecze",
|
||||||
|
zewnetrzne_id_meczu = safe_traverse(match, ["eventEncodedId"], default=""),
|
||||||
|
data = iso_converted_date,
|
||||||
|
gospodarze_id = home_club_id,
|
||||||
|
gospodarze = self.db.simple_select_all("kluby", id_klubu=home_club_id)[0],
|
||||||
|
goscie_id = away_club_id,
|
||||||
|
goscie = self.db.simple_select_all("kluby", id_klubu=away_club_id)[0],
|
||||||
|
gosp_wynik = safe_traverse(match, ["homeScore"], default=0),
|
||||||
|
gosc_wynik = safe_traverse(match, ["awayScore"], default=0),
|
||||||
|
sezon = safe_traverse(match, ["tournamentSeason"], default=""),
|
||||||
|
nazwa_turnieju = safe_traverse(match, ["tournamentTitle"], default=""),
|
||||||
|
skrocona_nazwa_turnieju = safe_traverse(match, ["tournamentTemplateShortCode"], default=""),
|
||||||
|
flaga = safe_traverse(match, ["flagId"], default=0),
|
||||||
|
)
|
||||||
match_num += 1
|
match_num += 1
|
||||||
|
|
||||||
|
stats = safe_traverse(match, ["stats"], default="")
|
||||||
|
zewnetrzne_id_meczu = safe_traverse(match, ["eventEncodedId"], default="")
|
||||||
|
|
||||||
|
if stats != False: # gdy sportowiec był aktywny w meczu
|
||||||
|
# print("todo :)")
|
||||||
|
self.db.simple_insert_one("sportowcy_w_meczach",
|
||||||
|
id_zawodnika = id_zawodnika,
|
||||||
|
zawodnik = zawodnik,
|
||||||
|
zewnetrzne_id_meczu = zewnetrzne_id_meczu,
|
||||||
|
# Uwaga! Czasami przygłupy z flashscore zwracają puste pole '' zamiast zera, np. do liczby strzelonych goli.
|
||||||
|
# Dlatego int("0" + "") = int("0"), co zapobiegnie wysypaniu się przy int("").
|
||||||
|
czas_gry = int("0" + safe_traverse(stats, ["595", "value"], default="0").rstrip("'?")),
|
||||||
|
goli = int("0" + safe_traverse(stats, ["596", "value"], default="0")),
|
||||||
|
asyst = int("0" + safe_traverse(stats, ["541", "value"], default="0")),
|
||||||
|
interwencje_bramkarza = 0,
|
||||||
|
suma_interwencji_na_bramke = 0,
|
||||||
|
zolte_kartki = int("0" + safe_traverse(stats, ["599", "value"], default="0")),
|
||||||
|
czerwone_kartki = int("0" + safe_traverse(stats, ["600", "value"], default="0")),
|
||||||
|
wygrana = {"Z": 1, "R": 0, "P": -1}.get(safe_traverse(match, ["winLoseShort"], default=""), 0),
|
||||||
|
wynik = safe_traverse(match, ["rating"], default=0) or 0
|
||||||
|
)
|
||||||
|
|
||||||
|
# # analogicznie zinkrementuj statystyki_sportowcow:
|
||||||
|
# # aby to zrobić, najpierw pobierz najnowszą statystykę sportowca
|
||||||
|
# # ...
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# # a następnie użyj funkcji w lewy_db do inkrementowania danych
|
||||||
|
# # (póki co jeszcze takiej nie ma)
|
||||||
|
# self.db.simple_increment_data("statystyki_sportowcow",
|
||||||
|
# id = ... # pewnie id się przyda
|
||||||
|
# sportowiec = zawodnik,
|
||||||
|
# ostatni_mecz = self.db.get_id_meczu_by_zewnetrzne_id(zewnetrzne_id_meczu),
|
||||||
|
# ilosc_wystapien = 1 if int(safe_traverse(stats, ["595", "value"], default="0").rstrip("'")) > 0 else 0,
|
||||||
|
# minut_gry = int(safe_traverse(stats, ["595", "value"], default="0").rstrip("'")),
|
||||||
|
# gier_sum = 1 if int(safe_traverse(stats, ["595", "value"], default="0").rstrip("'")) > 0 else 0,
|
||||||
|
# goli_sum = int(safe_traverse(stats, ["596", "value"], default="0")),
|
||||||
|
# asyst_sum = int(safe_traverse(stats, ["541", "value"], default="0")),
|
||||||
|
# interwencji_sum = 0,
|
||||||
|
# nieobronionych_interwencji_sum = 0,
|
||||||
|
# zoltych_kartek_sum = int(safe_traverse(stats, ["599", "value"], default="0")),
|
||||||
|
# czerwonych_kartek_sum = int(safe_traverse(stats, ["600", "value"], default="0")),
|
||||||
|
# wygranych_sum = 1 if safe_traverse(match, ["winloseshort"], default="") == "z" else 0,
|
||||||
|
# wynik_sum = safe_traverse(match, ["rating"], default=0),
|
||||||
|
# meczow_do_wynikow_sum = 1 if safe_traverse(match, ["rating"], default=0) not in (0, none) else none
|
||||||
|
# )
|
||||||
|
|
||||||
|
else:
|
||||||
|
# print("też todo :)")
|
||||||
|
# # TODO: TU TEŻ TRZEBA POPRAWIĆ ANALOGICZNIE DO TEGO, CO JEST WEWNĄTRZ IF'A
|
||||||
|
self.db.simple_insert_one("sportowcy_w_meczach",
|
||||||
|
id_zawodnika = id_zawodnika,
|
||||||
|
zawodnik = zawodnik,
|
||||||
|
zewnetrzne_id_meczu = zewnetrzne_id_meczu,
|
||||||
|
czas_gry = 0, #(lambda v: int(str(v).rstrip("'")) if isinstance(v, (str, int, float)) and str(v).rstrip("'").lstrip("-").isdigit() else 0)(safe_traverse(stats if isinstance(stats, dict) else {}, ["595", "value"], default="0")),
|
||||||
|
goli = int("0" + safe_traverse(stats, ["596", "value"], default="0")),
|
||||||
|
asyst = int("0" + safe_traverse(stats, ["541", "value"], default="0")),
|
||||||
|
interwencje_bramkarza = 0,
|
||||||
|
suma_interwencji_na_bramke = 0,
|
||||||
|
zolte_kartki = int("0" + safe_traverse(stats, ["599", "value"], default="0")),
|
||||||
|
czerwone_kartki = int("0" + safe_traverse(stats, ["600", "value"], default="0")),
|
||||||
|
wygrana = {"Z": 1, "R": 0, "P": -1}.get(safe_traverse(match, ["winLoseShort"], default=""), 0),
|
||||||
|
wynik = safe_traverse(match, ["rating"], default=0) or 0
|
||||||
|
)
|
||||||
|
|
||||||
# TODO: Zaktualizuj statystyki sportowca
|
# TODO: Zaktualizuj statystyki sportowca
|
||||||
|
|
||||||
@@ -155,7 +250,7 @@ class scraper:
|
|||||||
# rate limita. - sherl
|
# rate limita. - sherl
|
||||||
|
|
||||||
page += 1
|
page += 1
|
||||||
time.sleep(15)
|
#time.sleep(5)
|
||||||
|
|
||||||
|
|
||||||
def aktualizuj_dane(self):
|
def aktualizuj_dane(self):
|
||||||
@@ -163,8 +258,12 @@ class scraper:
|
|||||||
Pobiera mecze dla każdego sportowca wymienionego
|
Pobiera mecze dla każdego sportowca wymienionego
|
||||||
w pliku konfiguracyjnym.
|
w pliku konfiguracyjnym.
|
||||||
"""
|
"""
|
||||||
|
start_time = time.time()
|
||||||
|
|
||||||
for id_sportowca in lewy_globals.config['sportsmen']['tracked_ids']:
|
for id_sportowca in lewy_globals.config['sportsmen']['tracked_ids']:
|
||||||
self.aktualizuj_dane_sportowca(zewnetrzne_id_sportowca=id_sportowca)
|
self.aktualizuj_dane_sportowca(zewnetrzne_id_sportowca=id_sportowca)
|
||||||
time.sleep(15)
|
time.sleep(5)
|
||||||
|
|
||||||
|
end_time = time.time()
|
||||||
|
|
||||||
|
print(f"Scrapowanie trwało {end_time - start_time}s.")
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
from flask import Flask, Response, render_template
|
from flask import Flask, Response, render_template
|
||||||
from flask_apscheduler import APScheduler
|
from flask_apscheduler import APScheduler
|
||||||
from fs_scraper import scraper as scr
|
from fs_scraper import scraper
|
||||||
from lewy_globals import colors as c
|
from lewy_globals import colors as c
|
||||||
import lewy_api
|
import lewy_api
|
||||||
import lewy_db
|
import lewy_db
|
||||||
@@ -13,7 +13,7 @@ import time
|
|||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
app_host = "None"
|
app_host = "None"
|
||||||
app_port = "None"
|
app_port = "None"
|
||||||
scrape = None
|
scr = None
|
||||||
|
|
||||||
def setup():
|
def setup():
|
||||||
# sanity check: make sure config is set
|
# sanity check: make sure config is set
|
||||||
@@ -58,6 +58,8 @@ def setup():
|
|||||||
sanity_string += f" If you're running a reverse proxy, set {c.OKCYAN}is_proxied{c.ENDC} to true to silence this message.\n"
|
sanity_string += f" If you're running a reverse proxy, set {c.OKCYAN}is_proxied{c.ENDC} to true to silence this message.\n"
|
||||||
print(sanity_string)
|
print(sanity_string)
|
||||||
|
|
||||||
|
# Should fix disconnects: https://stackoverflow.com/a/61739721
|
||||||
|
app.config['SQLALCHEMY_ENGINE_OPTIONS'] = {"pool_pre_ping": True}
|
||||||
app.config['SQLALCHEMY_DATABASE_URI'] = f"{config['general']['db_path_url']}"
|
app.config['SQLALCHEMY_DATABASE_URI'] = f"{config['general']['db_path_url']}"
|
||||||
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|
||||||
|
|
||||||
@@ -77,7 +79,7 @@ def setup():
|
|||||||
app.add_url_rule('/api/<path:received_request>', view_func=lewy_api.api_global_catchall)
|
app.add_url_rule('/api/<path:received_request>', view_func=lewy_api.api_global_catchall)
|
||||||
|
|
||||||
db = lewy_globals.setupDb(app, config)
|
db = lewy_globals.setupDb(app, config)
|
||||||
scraper = scr()
|
scr = scraper()
|
||||||
|
|
||||||
with app.app_context():
|
with app.app_context():
|
||||||
db.create_all()
|
db.create_all()
|
||||||
@@ -95,8 +97,7 @@ def every5seconds():
|
|||||||
|
|
||||||
def every2hours():
|
def every2hours():
|
||||||
# zaktualizuj bazę danych scrapując FS
|
# zaktualizuj bazę danych scrapując FS
|
||||||
# ...
|
scr.aktualizuj_dane()
|
||||||
# scraper.aktualizuj_dane()
|
|
||||||
return
|
return
|
||||||
|
|
||||||
@app.route('/<string:val>', methods=['GET'])
|
@app.route('/<string:val>', methods=['GET'])
|
||||||
|
|||||||
@@ -50,6 +50,16 @@ def not_implemented(data):
|
|||||||
# TODO: change list to string -> data, not data[0]
|
# TODO: change list to string -> data, not data[0]
|
||||||
return 501, f"not recognised/implemented: {data[0]}", []
|
return 501, f"not recognised/implemented: {data[0]}", []
|
||||||
|
|
||||||
|
def __czy_x_istnieje(typ, **id):
|
||||||
|
rekord = getDb().simple_select_all(typ, **id)
|
||||||
|
if rekord is not None and rekord != []:
|
||||||
|
return True
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
|
def czy_sportowiec_istnieje(id_zawodnika: str):
|
||||||
|
return __czy_x_istnieje("sportowcy", id_zawodnika=id_zawodnika)
|
||||||
|
|
||||||
# GET /api/v1
|
# GET /api/v1
|
||||||
def stub_hello():
|
def stub_hello():
|
||||||
"""
|
"""
|
||||||
@@ -85,11 +95,43 @@ def stats():
|
|||||||
return 200, "ok", data_to_send
|
return 200, "ok", data_to_send
|
||||||
|
|
||||||
# GET /api/v1/matches
|
# GET /api/v1/matches
|
||||||
def get_matches(r):
|
def get_matches(r = None, id_zawodnika: str | None = None, rok: int | None = None):
|
||||||
"""
|
"""
|
||||||
TODO: Zwraca mecze.
|
Zwraca mecze.
|
||||||
|
Przykład wywołania:
|
||||||
|
get_matches(r, id_zawodnika=1), tożsame z GET /api/v1/matches?id_zawodnika=1
|
||||||
|
get_matches(r, rok=2024), tożsame z GET /api/v1/matches?rok=2024
|
||||||
|
get_matches(r), tożsame z GET /api/v1/matches
|
||||||
"""
|
"""
|
||||||
pass
|
response_json = []
|
||||||
|
mecze = None
|
||||||
|
|
||||||
|
if id_zawodnika is None:
|
||||||
|
# Gdy nie podano id wprost, sprawdź, czy podano je przez parametr.
|
||||||
|
id_zawodnika = r.args.get('id_zawodnika', -1)
|
||||||
|
|
||||||
|
if rok is None:
|
||||||
|
# Gdy nie podano roku wprost, sprawdź, czy podano je przez parametr.
|
||||||
|
# Jeśli nie, przyjmij None (2025).
|
||||||
|
rok = r.args.get('rok', None)
|
||||||
|
|
||||||
|
# Sprawdź, czy podano jakiekolwiek ID sportowca. Jeżeli nie, wypisz wszystkie mecze.
|
||||||
|
if id_zawodnika == -1:
|
||||||
|
mecze = getDb().get_sportsman_matches(year=rok)
|
||||||
|
|
||||||
|
# Sprawdź, czy sportowiec o podanym (lub niepodanym) id istnieje.
|
||||||
|
# Jeśli nie istnieje, wypisz wszystkie mecze.
|
||||||
|
elif not czy_sportowiec_istnieje(id_zawodnika=id_zawodnika):
|
||||||
|
return 404, "error", {"error_msg": "This sportsman has not been found in the database. Try: id_zawodnika=1"}
|
||||||
|
|
||||||
|
# Gdy sportowiec istnieje, wypisz jego mecze.
|
||||||
|
else:
|
||||||
|
mecze = getDb().get_sportsman_matches(id_zawodnika=id_zawodnika, year=rok)
|
||||||
|
|
||||||
|
for mecz in mecze:
|
||||||
|
response_json.append(mecz.jsonify())
|
||||||
|
# print(f"zwracam mecze: {response_json}")
|
||||||
|
return 200, "ok", response_json
|
||||||
|
|
||||||
# GET /api/v1/debugger_halt?token=XXX...
|
# GET /api/v1/debugger_halt?token=XXX...
|
||||||
@require_authentication
|
@require_authentication
|
||||||
@@ -142,7 +184,7 @@ def lookup(data, request):
|
|||||||
case 'halt':
|
case 'halt':
|
||||||
return debugger_halt(r = request)
|
return debugger_halt(r = request)
|
||||||
case 'matches':
|
case 'matches':
|
||||||
get_matches(r = request)
|
return get_matches(r = request)
|
||||||
case _:
|
case _:
|
||||||
increment_bad_requests()
|
increment_bad_requests()
|
||||||
return not_implemented(data)
|
return not_implemented(data)
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
|||||||
from git import Repo # hash ostatniego commitu
|
#from git import Repo # hash ostatniego commitu
|
||||||
import os
|
import os
|
||||||
import time
|
import time
|
||||||
import toml
|
import toml
|
||||||
@@ -23,9 +23,9 @@ def safeTraverse(obj: dict, path: list, default=None):
|
|||||||
try:
|
try:
|
||||||
for x in path:
|
for x in path:
|
||||||
result = result[x]
|
result = result[x]
|
||||||
except KeyError:
|
except (KeyError, TypeError):
|
||||||
result = default
|
result = default
|
||||||
# print(f"error reading: {' -> '.join(path)} - returning: {default}")
|
print(f"error reading: {' -> '.join(path)} - returning: {default}")
|
||||||
finally:
|
finally:
|
||||||
return result
|
return result
|
||||||
|
|
||||||
@@ -36,11 +36,11 @@ def getCommit() -> str | None:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
def getCommitInFormattedHTML():
|
def getCommitInFormattedHTML():
|
||||||
repo = "<p>Brak informacji o wersji skryptu</p>"
|
repo = "<center><p style=\"color: white;\">Brak informacji o wersji skryptu</p></center>"
|
||||||
commit = getCommit()
|
commit = getCommit()
|
||||||
|
|
||||||
if commit is not None:
|
if commit is not None:
|
||||||
repo = f"<p>Commit: <a href='https://gitea.7o7.cx/roberteam/lewangoalski/commit/{commit}'>{commit[:11]}</a></p>"
|
repo = f"<center><p style=\"color: white;\">Commit: <a href='https://gitea.7o7.cx/roberteam/lewangoalski/commit/{commit}'>{commit[:11]}</a></p></center>"
|
||||||
|
|
||||||
return repo
|
return repo
|
||||||
|
|
||||||
@@ -155,4 +155,4 @@ config = {}
|
|||||||
configfile = "config.toml"
|
configfile = "config.toml"
|
||||||
version = getCommitWithFailsafe()
|
version = getCommitWithFailsafe()
|
||||||
apiVersion = "1"
|
apiVersion = "1"
|
||||||
randomly_generated_passcode = 0
|
randomly_generated_passcode = 0
|
||||||
|
|||||||
@@ -2,37 +2,38 @@ from flask import render_template, request, make_response
|
|||||||
import lewy_api_v1
|
import lewy_api_v1
|
||||||
import lewy_db
|
import lewy_db
|
||||||
import lewy_globals
|
import lewy_globals
|
||||||
|
import json
|
||||||
|
from lewy_api_v1 import get_matches
|
||||||
def get_lewy_stats():
|
def get_lewy_stats():
|
||||||
return {
|
return {
|
||||||
'all_time_stats': {
|
'all_time_stats': {
|
||||||
'goals': 380,
|
'goals': 589+85,
|
||||||
'assists': 120,
|
'assists':154+35,
|
||||||
'matches': 450,
|
'matches': 791+158,
|
||||||
},
|
},
|
||||||
'club_stats': {
|
'club_stats': {
|
||||||
'goals': 132,
|
'goals': 589,
|
||||||
'assists': 112,
|
'assists': 154,
|
||||||
'matches': 245,
|
'matches': 791,
|
||||||
},
|
},
|
||||||
'nation_stats': {
|
'nation_stats': {
|
||||||
'goals': 86,
|
'goals': 85,
|
||||||
'assists': 52,
|
'assists': 35,
|
||||||
'matches': 158,
|
'matches': 158,
|
||||||
},
|
},
|
||||||
'worldcup': {
|
'international_cups': {
|
||||||
'goals': 7,
|
'goals': 110,
|
||||||
'assists': 2,
|
'assists': 19,
|
||||||
'matches': 11,
|
'matches': 152,
|
||||||
},
|
},
|
||||||
'euro': {
|
'national_cups': {
|
||||||
'goals': 6,
|
'goals': 58,
|
||||||
'assists': 2,
|
'assists': 4,
|
||||||
'matches': 18,
|
'matches': 74,
|
||||||
},
|
},
|
||||||
'cards': {
|
'cards': {
|
||||||
'yellow': 24,
|
'yellow': 86,
|
||||||
'red': 4,
|
'red': 2,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -58,11 +59,16 @@ def index():
|
|||||||
|
|
||||||
def mecze():
|
def mecze():
|
||||||
# Możesz dostarczyć szczegóły dotyczące meczów
|
# Możesz dostarczyć szczegóły dotyczące meczów
|
||||||
matches = [
|
selected_date = request.args.get("date", '2025')
|
||||||
{'date': '2024-10-12', 'opponent': 'Real Madrid', 'goals': 2, 'assists': 1, 'minutes': 90},
|
try:
|
||||||
{'date': '2024-10-19', 'opponent': 'Valencia', 'goals': 1, 'assists': 0, 'minutes': 85},
|
selected_date = int(selected_date)
|
||||||
]
|
except:
|
||||||
return render_template('matches.html', matches=matches)
|
selected_date = 2025
|
||||||
|
#with open("static/lewandowski_matches.json", "r") as file:
|
||||||
|
# data = json.load(file)
|
||||||
|
status, msg, matches = get_matches(None, id_zawodnika=1, rok=selected_date)
|
||||||
|
|
||||||
|
return render_template('matches.html', matches=matches, selected_date=selected_date)
|
||||||
|
|
||||||
def statystyki():
|
def statystyki():
|
||||||
dane=get_lewy_stats()
|
dane=get_lewy_stats()
|
||||||
@@ -71,31 +77,107 @@ def statystyki():
|
|||||||
def clubs():
|
def clubs():
|
||||||
selected_club = request.args.get("club","FC Barcelona")
|
selected_club = request.args.get("club","FC Barcelona")
|
||||||
clubs = [
|
clubs = [
|
||||||
{'club': 'FC Barcelona', 'goals': 22,'assist':12},
|
{'club': 'FC Barcelona', 'goals': 101,'assist':20, 'matches':147,'minutes_played': 11684,'yellow_card':12,'red_card': 1, 'wins':101, 'draws': 14,'lost': 32},
|
||||||
{'club': 'Bayern Monachium', 'goals': 132,'assist':12},
|
{'club': 'Bayern Monachium', 'goals': 344,'assist':73,'matches':375,'minutes_played': 31759,'yellow_card':36,'red_card': 0, 'wins':307, 'draws': 35,'lost': 33},
|
||||||
{'club': 'Borussia Dortmund', 'goals': 132,'assist':12},
|
{'club': 'Borussia Dortmund', 'goals': 103,'assist':42,'matches':187,'minutes_played': 14374,'yellow_card':19,'red_card': 1, 'wins':120, 'draws': 40,'lost': 27},
|
||||||
{'club': 'Lech Poznan', 'goals': 132,'assist':12},
|
{'club': 'Lech Poznan', 'goals': 41,'assist':19,'matches':82,'minutes_played': 6858,'yellow_card':9,'red_card': 0, 'wins':'-', 'draws': '-','lost': '-'},
|
||||||
]
|
]
|
||||||
return render_template('club.html', clubs=clubs, selected_club=selected_club)
|
return render_template('club.html', clubs=clubs, selected_club=selected_club)
|
||||||
|
|
||||||
def representation():
|
def representation():
|
||||||
nation_stats = {
|
nation_stats = {
|
||||||
'goals': 86,
|
'goals': 85,
|
||||||
'assists': 52,
|
'assists': 35,
|
||||||
'matches': 158,
|
'matches': 158,
|
||||||
|
'minutes_played': 12108,
|
||||||
|
'yellow_card':10,
|
||||||
|
'red_card': 0,
|
||||||
|
'wins':75,
|
||||||
|
'draws': 35,
|
||||||
|
'lost': 48
|
||||||
}
|
}
|
||||||
return render_template('representation.html', nation_stats=nation_stats)
|
return render_template('representation.html', nation_stats=nation_stats)
|
||||||
def compare():
|
def compare():
|
||||||
selected_player = request.args.get("player","Leo Messi")
|
selected_player = request.args.get("player","Leo Messi")
|
||||||
lewy=get_lewy_stats()
|
lewy=get_lewy_stats()
|
||||||
player2 = [
|
player2 = [
|
||||||
{'name':'Leo Messi','goals': 34,'assists': 12},
|
{'name':'Leo Messi','goals': 865,'assists': 384,'matches':1103},
|
||||||
|
{'name':'Cristiano Ronaldo','goals': 937,'assists': 257,'matches':1280},
|
||||||
|
{'name':'Kylian Mbappé','goals': 330,'assists': 187,'matches':436},
|
||||||
|
{'name':'Zlatan Ibrahimović','goals': 573,'assists': 200,'matches':988},
|
||||||
|
{'name':'Luis Suárez','goals': 511,'assists': 277,'matches':858},
|
||||||
|
{'name':'Erling Haaland','goals': 276,'assists': 49,'matches':342},
|
||||||
|
{'name':'Karim Benzema','goals': 438,'assists': 160,'matches':820},
|
||||||
|
{'name':'Sergio Agüero','goals': 385,'assists': 118,'matches':685},
|
||||||
]
|
]
|
||||||
return render_template('compare.html',player2=player2, selected_player=selected_player,**lewy, )
|
return render_template('compare.html',player2=player2, selected_player=selected_player,**lewy, )
|
||||||
def trophies():
|
def trophies():
|
||||||
trophy = [
|
trophy = [
|
||||||
{'name': 'asdasd', 'year': 2023},
|
{'name': 'Piłkarz Roku FIFA', 'year':'2021'},
|
||||||
{'name': 'ssss', 'sezon': '2022/2023'},
|
{'name': 'Piłkarz Roku FIFA', 'year':'2020'},
|
||||||
|
{'name': 'UEFA Best Player in Europe', 'year':'2020'},
|
||||||
|
{'name': 'Zdobywca Złotego Buta (Europe)', 'sezon':'2021/2022'},
|
||||||
|
{'name': 'Zdobywca Złotego Buta (Europe)', 'sezon':'2020/2021'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2021'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2021'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2020'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2020'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2019'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2017'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2016'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2015'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2014'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2013'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2012'},
|
||||||
|
{'name': 'Piłkarz roku', 'sezon':'2011'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2022/2023'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2021/2022'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2020/2021'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2019/2020'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2019/2020'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2018/2019'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2018/2019'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2017/2018'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2017/2018'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2016/2017'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2016/2017'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2015/2016'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2015/2016'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2013/2014'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2011/2012'},
|
||||||
|
{'name': 'Król strzelców', 'sezon':'2009/2010'},
|
||||||
|
{'name': 'Zdobywca Ligi Mistrzów', 'sezon':'2019/2020'},
|
||||||
|
{'name': 'Zdobywca Klubowych Mistrzostw Świata', 'sezon':'2021'},
|
||||||
|
{'name': 'Mistrz Hiszpanii', 'sezon':'2024/2025'},
|
||||||
|
{'name': 'Mistrz Hiszpanii', 'sezon':'2022/2023'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2021/2022'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2020/2021'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2019/2020'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2018/2019'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2017/2018'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2016/2017'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2015/2016'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2014/2015'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2011/2012'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2010/2011'},
|
||||||
|
{'name': 'Mistrz Niemiec', 'sezon':'2020/2021'},
|
||||||
|
{'name': 'Zdobywca Superpucharu UEFA', 'sezon':'2020/2021'},
|
||||||
|
{'name': 'Zdobywca Pucharu Niemiec', 'sezon':'2019/2020'},
|
||||||
|
{'name': 'Zdobywca Pucharu Niemiec', 'sezon':'2018/2019'},
|
||||||
|
{'name': 'Zdobywca Pucharu Niemiec', 'sezon':'2015/2016'},
|
||||||
|
{'name': 'Zdobywca Pucharu Niemiec', 'sezon':'2011/2012'},
|
||||||
|
{'name': 'Zdobywca Pucharu Hiszpanii', 'sezon':'2024/2025'},
|
||||||
|
{'name': 'Zdobywca Superpucharu Niemiec', 'sezon':'2021/2022'},
|
||||||
|
{'name': 'Zdobywca Superpucharu Niemiec', 'sezon':'2020/2021'},
|
||||||
|
{'name': 'Zdobywca Superpucharu Niemiec', 'sezon':'2018/2019'},
|
||||||
|
{'name': 'Zdobywca Superpucharu Niemiec', 'sezon':'2017/2018'},
|
||||||
|
{'name': 'Zdobywca Superpucharu Niemiec', 'sezon':'2016/2017'},
|
||||||
|
{'name': 'Zdobywca Superpucharu Niemiec', 'sezon':'2013/2014'},
|
||||||
|
{'name': 'Zdobywca Superpucharu Hiszpanii', 'sezon':'2024/2025'},
|
||||||
|
{'name': 'Zdobywca Superpucharu Hiszpanii', 'sezon':'2022/2023'},
|
||||||
|
{'name': 'Mistrz Polski', 'sezon':'2009/2010'},
|
||||||
|
{'name': 'Zdobywca Superpucharu Polski', 'sezon': '2009/2010'},
|
||||||
|
{'name': 'Zdobywca Pucharu Polski', 'sezon': '2008/2009'},
|
||||||
]
|
]
|
||||||
return render_template('trophies.html',trophy=trophy)
|
return render_template('trophies.html',trophy=trophy)
|
||||||
|
|
||||||
|
|||||||
11421
FlaskWebProject/FlaskWebProject/static/lewandowski_matches.json
Normal file
11421
FlaskWebProject/FlaskWebProject/static/lewandowski_matches.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -744,6 +744,26 @@ body.poland-mode .general-stats-section .grid article:nth-child(2){background-co
|
|||||||
body.poland-mode .general-stats-section .grid article:nth-child(3){background-color: var(--barca-blue);}
|
body.poland-mode .general-stats-section .grid article:nth-child(3){background-color: var(--barca-blue);}
|
||||||
body.poland-mode .about-section-image::after{
|
body.poland-mode .about-section-image::after{
|
||||||
background:var(--polska-red-dark);
|
background:var(--polska-red-dark);
|
||||||
|
}
|
||||||
|
body.poland-mode .section__matches
|
||||||
|
{
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
body.poland-mode .section__matches h2
|
||||||
|
{
|
||||||
|
background-color: var(--polska-red);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
body.poland-mode .section__matches th
|
||||||
|
{
|
||||||
|
color: var(--barca-red)
|
||||||
|
}
|
||||||
|
body.poland-mode .section__matches tr:hover:has(:not(th))
|
||||||
|
{
|
||||||
|
background-color: #ff5959;
|
||||||
|
}
|
||||||
|
body.poland-mode select{
|
||||||
|
background:var(--section-color);
|
||||||
}
|
}
|
||||||
/* Przyciski i elementy */
|
/* Przyciski i elementy */
|
||||||
|
|
||||||
@@ -761,6 +781,13 @@ body.poland-mode .about-section-image::after{
|
|||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
.section-stats h1{
|
||||||
|
font-size: 34px;
|
||||||
|
color: var(--barca-red);
|
||||||
|
}
|
||||||
|
body.poland-mode .section-stats h1{
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
.section-stats-center
|
.section-stats-center
|
||||||
{
|
{
|
||||||
display: grid;
|
display: grid;
|
||||||
@@ -879,4 +906,32 @@ select
|
|||||||
background-color: var(--barca-blue);
|
background-color: var(--barca-blue);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
border: 2px solid white;
|
border: 2px solid white;
|
||||||
|
}
|
||||||
|
@media (max-width: 600px){
|
||||||
|
.sectionmatches
|
||||||
|
{
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
.sectionmatches th{
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
.club-stats-grid
|
||||||
|
{
|
||||||
|
grid-template-columns: 1fr 1fr !important;
|
||||||
|
}
|
||||||
|
.club-stats-grid .stat-box
|
||||||
|
{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.section-stats-center .section-stats .stats
|
||||||
|
{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.section-stats-center .section-stats .stats .stat-box
|
||||||
|
{
|
||||||
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -33,25 +33,25 @@
|
|||||||
<p>Asysty:</p> <span class="stat-box-special"> {{ stats.assist }} </span>
|
<p>Asysty:</p> <span class="stat-box-special"> {{ stats.assist }} </span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Występy:</p> <span class="stat-box-special"> {{ stats.goals }} </span>
|
<p>Występy:</p> <span class="stat-box-special"> {{ stats.matches }} </span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Łączny czas gry:</p> <span class="stat-box-special"> {{ stats.goals }}</span>
|
<p>Łączny czas gry:</p> <span class="stat-box-special"> {{ stats.minutes_played }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Hat-tricki:</p> <span class="stat-box-special"> {{ stats.goals }}</span>
|
<p>Żółte kartki:</p> <span class="stat-box-special"> {{ stats.yellow_card }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Zwycięstwa:</p> <span class="stat-box-special"> {{ stats.goals }}</span>
|
<p>Czerwone kartki:</p> <span class="stat-box-special"> {{ stats.red_card }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Porażki:</p> <span class="stat-box-special"> {{ stats.goals }}</span>
|
<p>Zwycięstwa:</p> <span class="stat-box-special"> {{ stats.wins }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Żółte kartki:</p> <span class="stat-box-special"> {{ stats.goals }}</span>
|
<p>Remisy:</p> <span class="stat-box-special"> {{ stats.draws }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Czerwone kartki:</p> <span class="stat-box-special"> {{ stats.goals }}</span>
|
<p>Porażki:</p> <span class="stat-box-special"> {{ stats.lost }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -6,13 +6,19 @@
|
|||||||
<select onchange="location = this.value;">
|
<select onchange="location = this.value;">
|
||||||
<option disabled selected>Wybierz zawodnika</option>
|
<option disabled selected>Wybierz zawodnika</option>
|
||||||
<option value="{{ url_for('compare', player='Leo Messi') }}">Leo Messi</option>
|
<option value="{{ url_for('compare', player='Leo Messi') }}">Leo Messi</option>
|
||||||
<option value="{{ url_for('compare', player='Ronaldo') }}">Cristiano Ronaldo</option>
|
<option value="{{ url_for('compare', player='Cristiano Ronaldo') }}">Cristiano Ronaldo</option>
|
||||||
<option value="{{ url_for('compare', player='Neymar') }}">Neymar</option>
|
<option value="{{ url_for('compare', player='Kylian Mbappé') }}">Kylian Mbappé</option>
|
||||||
|
<option value="{{ url_for('compare', player='Zlatan Ibrahimović') }}">Zlatan Ibrahimović</option>
|
||||||
|
<option value="{{ url_for('compare', player='Luis Suárez') }}">Luis Suárez</option>
|
||||||
|
<option value="{{ url_for('compare', player='Erling Haaland') }}">Erling Haaland</option>
|
||||||
|
<option value="{{ url_for('compare', player='Karim Benzema') }}">Karim Benzema</option>
|
||||||
|
<option value="{{ url_for('compare', player='Sergio Agüero') }}">Sergio Agüero</option>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
{%for player in player2 %}
|
{%for player in player2 %}
|
||||||
{% if player.name == selected_player %}
|
{% if player.name == selected_player %}
|
||||||
<section class="section-stats">
|
<section class="section-stats">
|
||||||
|
<h1>Robert Lewandowski VS {{selected_player}}</h1>
|
||||||
<h2>Gole</h2>
|
<h2>Gole</h2>
|
||||||
<div class="stats">
|
<div class="stats">
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
@@ -41,26 +47,15 @@
|
|||||||
<h2>Wystąpienia</h2>
|
<h2>Wystąpienia</h2>
|
||||||
<div class="stats">
|
<div class="stats">
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<h3>{{ all_time_stats.assists }}</h3>
|
<h3>{{ all_time_stats.matches }}</h3>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<h3>{{ player.assists}}</h3>
|
<h3>{{ player.matches}}</h3>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2>Minuty zagrane</h2>
|
|
||||||
<div class="stats">
|
|
||||||
<div class="stat-box">
|
|
||||||
<h3>{{ all_time_stats.assists }}</h3>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="stat-box">
|
|
||||||
<h3>{{ player.assists}}</h3>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor%}
|
{% endfor%}
|
||||||
|
|||||||
@@ -10,27 +10,27 @@
|
|||||||
<article class="article__how-it-works">
|
<article class="article__how-it-works">
|
||||||
<h3>Jak to działa?</h3>
|
<h3>Jak to działa?</h3>
|
||||||
<h4>Pobieranie statystyk</h4>
|
<h4>Pobieranie statystyk</h4>
|
||||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ratione harum minus hic, voluptate perspiciatis laborum? Alias maxime, voluptate reprehenderit iusto dolorem officiis porro voluptatibus repellat dicta doloribus, blanditiis similique accusantium.</p>
|
<p>Tu znajdziesz najświeższe statystyki, aktualizowane zaraz po zakończeniu meczu Lewego</p>
|
||||||
<h4>Porównywanie zawodników</h4>
|
<h4>Porównywanie zawodników</h4>
|
||||||
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Fuga, in perspiciatis. Sequi laborum et animi quas sit voluptatibus alias sed ad molestias nulla vel cum, consectetur commodi odio aliquam officia.</p>
|
<p>Robert Lewandowski jest uznawany za jednego z najlepszych zawodników na świecie, zobacz jak wypada w porównaniu do innych czołowych zawodników i sprawdź czy zasługuje na miano jednego z najlepszych napastników świata.</p>
|
||||||
</article>
|
</article>
|
||||||
<div class="about-section-image">
|
<div class="about-section-image">
|
||||||
<img src="{{ url_for('static', filename='gigabuła.png') }}">
|
<img src="{{ url_for('static', filename='gigabuła.png') }}">
|
||||||
</div>
|
</div>
|
||||||
<article>
|
<article>
|
||||||
<h3>Mecze</h3>
|
<h3>Mecze</h3>
|
||||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Soluta ullam iusto ex? Quo amet officia aliquam odio sint harum nam eaque nihil ipsa quos aliquid, illum voluptatum, numquam, magnam omnis?</p>
|
<p>Nie oglądałeś ostatniego meczu Barcelony? Wypadło Ci coś i nie widziałeś najnowszego spotkania reprezentacji Polski? Wejdź i sprawdź jak poradził sobie Robert.</p>
|
||||||
<a href="/mecze">Zobacz mecze</a>
|
<a href="/mecze">Zobacz mecze</a>
|
||||||
</article>
|
</article>
|
||||||
<article>
|
<article>
|
||||||
<h3>Statystyki</h3>
|
<h3>Statystyki</h3>
|
||||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Temporibus dolore tenetur nulla sint recusandae illo dolores aspernatur ducimus, omnis vitae ipsam neque animi voluptates eos porro, nihil iusto veniam commodi!</p>
|
<p>Jesteś zainteresowany jak Robert radzi sobie na przestrzeni tylu lat gry? Jesteś ciekaw czy napastnik oprócz strzelania bramek lubi kolekcjonować kartki? Sprawdź u nas jak wygląda kariera Roberta Lewandowskiego na podstawie jego gry w kadrze Polski, klubach oraz Pucharach ligowych i międzynarodowych.</p>
|
||||||
<a href="/statystyki">Zobacz statystyki</a>
|
<a href="/statystyki">Zobacz statystyki</a>
|
||||||
</article>
|
</article>
|
||||||
<article>
|
<article>
|
||||||
<h3>Osiągnięcia</h3>
|
<h3>Trofea</h3>
|
||||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod dicta veritatis quibusdam eligendi corrupti. Expedita delectus assumenda ipsum illum molestias a voluptates, voluptas quia reprehenderit, quod non, eum veritatis tenetur!</p>
|
<p>Zastanawia Cie jakie było ostatnie trofeum Roberta? A może z kolegami sprawdzacie, który lepiej pamięta złote chwile w karierze naszego idola? Rozwiejcie wasze wątpliwości i zobaczcie wielką kolekcji zdobyczy pucharowych najlepszego polskiego zawodnika.</p>
|
||||||
<a href="/club">Zobacz osiągnięcia</a>
|
<a href="/club">Zobacz trofea</a>
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
<!--
|
<!--
|
||||||
@@ -57,5 +57,7 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block footer %}
|
{% block footer %}
|
||||||
|
<!--
|
||||||
{{ commit_in_html | safe }}
|
{{ commit_in_html | safe }}
|
||||||
|
-->
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@@ -3,35 +3,50 @@
|
|||||||
{% block title %}Lista meczów{% endblock %}
|
{% block title %}Lista meczów{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<select>
|
<select onchange="location = this.value;">
|
||||||
<option disabled selected>Wybierz rok</option>
|
<option disabled selected>Wybierz rok</option>
|
||||||
<option value="{{ url_for('compare', player='Leo Messi') }}">2024/2025</option>
|
<option value="{{ url_for('mecze', date='2025') }}">2025</option>
|
||||||
<option value="{{ url_for('compare', player='Ronaldo') }}">2023/2024</option>
|
<option value="{{ url_for('mecze', date='2024') }}">2024</option>
|
||||||
<option value="{{ url_for('compare', player='Neymar') }}">2022/2023</option>
|
<option value="{{ url_for('mecze', date='2023') }}">2023</option>
|
||||||
<option value="{{ url_for('compare', player='Neymar') }}">2021/2022</option>
|
<option value="{{ url_for('mecze', date='2022') }}">2022</option>
|
||||||
<option value="{{ url_for('compare', player='Neymar') }}">2020/2021</option>
|
<option value="{{ url_for('mecze', date='2021') }}">2021</option>
|
||||||
<option value="{{ url_for('compare', player='Neymar') }}">2019/2020</option>
|
<option value="{{ url_for('mecze', date='2020') }}">2020</option>
|
||||||
<option value="{{ url_for('compare', player='Neymar') }}">2018/2019</option>
|
<option value="{{ url_for('mecze', date='2019') }}">2019</option>
|
||||||
<option value="{{ url_for('compare', player='Neymar') }}">2017/2018</option>
|
<option value="{{ url_for('mecze', date='2018') }}">2018</option>
|
||||||
<option value="{{ url_for('compare', player='Neymar') }}">2016/2017</option>
|
<option value="{{ url_for('mecze', date='2017') }}">2017</option>
|
||||||
|
<option value="{{ url_for('mecze', date='2016') }}">2016</option>
|
||||||
|
<option value="{{ url_for('mecze', date='2015') }}">2015</option>
|
||||||
|
<option value="{{ url_for('mecze', date='2014') }}">2014</option>
|
||||||
</select>
|
</select>
|
||||||
<section class="section__matches">
|
<section class="section__matches">
|
||||||
<h2>📅 Mecze Roberta</h2>
|
<h2>📅 Mecze Roberta</h2>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Data</th>
|
<th>Data</th>
|
||||||
|
|
||||||
|
<!--
|
||||||
<th>Przeciwnik</th>
|
<th>Przeciwnik</th>
|
||||||
<th>Gole</th>
|
<th>Gole</th>
|
||||||
<th>Asysty</th>
|
<th>Asysty</th>
|
||||||
<th>Minuty</th>
|
<th>Minuty</th>
|
||||||
|
-->
|
||||||
|
<th>Gospodarze</th>
|
||||||
|
<th>Wynik</th>
|
||||||
|
<th>Goście</th>
|
||||||
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
{% for match in matches %}
|
{% for match in matches %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ match.date }}</td>
|
<td>{{ match.data }}</td>
|
||||||
<td>{{ match.opponent }}</td>
|
|
||||||
|
<td>{{ match.gospodarze_pelna_nazwa }}</td>
|
||||||
|
<td>{{ match.gosp_wynik }} : {{ match.gosc_wynik }}</td>
|
||||||
|
<td>{{ match.goscie_pelna_nazwa }}</td>
|
||||||
|
<!--
|
||||||
<td>{{ match.goals }}</td>
|
<td>{{ match.goals }}</td>
|
||||||
<td>{{ match.assists }}</td>
|
<td>{{ match.assists }}</td>
|
||||||
<td>{{ match.minutes }}</td>
|
<td>{{ match.minutes }}</td>
|
||||||
|
-->
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
@@ -11,28 +11,28 @@
|
|||||||
<p>Gole:</p> <span class="stat-box-special"> {{ nation_stats.goals }} </span>
|
<p>Gole:</p> <span class="stat-box-special"> {{ nation_stats.goals }} </span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Asysty:</p> <span class="stat-box-special"> {{ nation_stats.assist }} </span>
|
<p>Asysty:</p> <span class="stat-box-special"> {{ nation_stats.assists }} </span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Występy:</p> <span class="stat-box-special"> {{ nation_stats.goals }} </span>
|
<p>Występy:</p> <span class="stat-box-special"> {{ nation_stats.matches }} </span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Łączny czas gry:</p> <span class="stat-box-special"> {{ nation_stats.goals }}</span>
|
<p>Łączny czas gry:</p> <span class="stat-box-special"> {{ nation_stats.minutes_played }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Hat-tricki:</p> <span class="stat-box-special"> {{ nation_stats.goals }}</span>
|
<p>Żółte kartki:</p> <span class="stat-box-special"> {{ nation_stats.yellow_card }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Zwycięstwa:</p> <span class="stat-box-special"> {{ nation_stats.goals }}</span>
|
<p>Czerwone kartki:</p> <span class="stat-box-special"> {{ nation_stats.red_card }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Porażki:</p> <span class="stat-box-special"> {{ nation_stats.goals }}</span>
|
<p>Zwycięstwa:</p> <span class="stat-box-special"> {{ nation_stats.wins }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Żółte kartki:</p> <span class="stat-box-special"> {{ nation_stats.goals }}</span>
|
<p>Remisy:</p> <span class="stat-box-special"> {{ nation_stats.draws }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<p>Czerwone kartki:</p> <span class="stat-box-special"> {{ nation_stats.goals }}</span>
|
<p>Porażki:</p> <span class="stat-box-special"> {{ nation_stats.lost }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -56,35 +56,35 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section class="section-stats">
|
<section class="section-stats">
|
||||||
<h2>Mistrzostwa świata</h2>
|
<h2>Puchary międzynarodowe</h2>
|
||||||
<div class="stats">
|
<div class="stats">
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<h3>{{ worldcup.goals }}</h3>
|
<h3>{{ international_cups.goals }}</h3>
|
||||||
<p>Gole</p>
|
<p>Gole</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<h3>{{ worldcup.assists }}</h3>
|
<h3>{{ international_cups.assists }}</h3>
|
||||||
<p>Asysty</p>
|
<p>Asysty</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<h3>{{ worldcup.matches }}</h3>
|
<h3>{{ international_cups.matches }}</h3>
|
||||||
<p>Występy</p>
|
<p>Występy</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section class="section-stats">
|
<section class="section-stats">
|
||||||
<h2>EURO</h2>
|
<h2>Puchary krajowe</h2>
|
||||||
<div class="stats">
|
<div class="stats">
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<h3>{{ euro.goals }}</h3>
|
<h3>{{ national_cups.goals }}</h3>
|
||||||
<p>Gole</p>
|
<p>Gole</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<h3>{{ euro.assists }}</h3>
|
<h3>{{ national_cups.assists }}</h3>
|
||||||
<p>Asysty</p>
|
<p>Asysty</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="stat-box">
|
<div class="stat-box">
|
||||||
<h3>{{ euro.matches }}</h3>
|
<h3>{{ national_cups.matches }}</h3>
|
||||||
<p>Występy</p>
|
<p>Występy</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<section class="section__matches">
|
<section class="section__matches">
|
||||||
<h2>📅 Trofea</h2>
|
<h2>🏆 Trofea</h2>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Nazwa</th>
|
<th>Nazwa</th>
|
||||||
|
|||||||
BIN
FlaskWebProject/instance/lewangoalski.sqlite
Normal file
BIN
FlaskWebProject/instance/lewangoalski.sqlite
Normal file
Binary file not shown.
Reference in New Issue
Block a user