-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
*Purtroppo le api di football-data sono state bloccate, o comunque non sono piu funzionanti, ho considerato di spostare tutto su api ESPN, purtroppo queste API's non hanno una guida e le informazioni sono solo per passaparola, quindi abbiamo perso sia la - card capocannonieri - i match 'mistati' di una squadra, - tutti i match della giornata odierna Spero in futuro di riuscire a recuperare informazioni per questi sensori, al contempo ora ci sono sensori. Per una squadra TEAM vengono creati 2 sensori: 1 permette di vedere la prossima partita (del campionato) 2 permette di vedere la partite passate e concluse (del campionato) Per il campionato: 1 classifica 2 partite della settimana + tre giorni precedenti, quindi se siamo al 4/10, verranno considerate anche le partite del 1-2-3
- Loading branch information
Showing
15 changed files
with
672 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,33 @@ | ||
import logging | ||
_LOGGER = logging.getLogger(__name__) | ||
|
||
DOMAIN = "calcio_live" | ||
CONF_API_KEY = "api_key" | ||
CONF_COMPETITION_CODE = "competition_code" | ||
|
||
COMPETITIONS = { | ||
'BL1': 'Bundesliga', | ||
'BSA': 'Brasileirao', | ||
'CL': 'Champions League', | ||
'CLI': 'Copa Libertadores', | ||
'DED': 'Eredivisie', | ||
'EC': 'European Championship', | ||
'ELC': 'Championship', | ||
'FL1': 'Ligue 1', | ||
'PD': 'La Liga', | ||
'PL': 'Premier League', | ||
'PPL': 'Primeira Liga', | ||
'SA': 'Serie A', | ||
'WC': 'World Cup' | ||
'ita.1': 'Serie A', | ||
'ger.1': 'Bundesliga', | ||
'esp.1': 'La Liga', | ||
'por.1': 'Primeira Liga', | ||
'uefa.europa_qual': 'UEFA Europa League Qualifying', | ||
'uefa.champions_qual': 'UEFA Champions League Qualifying', | ||
'fifa.intercontinental.cup': 'FIFA Intercontinental Cup', | ||
'mex.2': 'Liga de Expansión MX', | ||
'arg.5': 'Primera C Metropolitana', | ||
'wal.1': 'Cymru Premier', | ||
'ven.2': 'Segunda División Venezolana', | ||
'arg.4': 'Primera D Metropolitana', | ||
'irl.1': 'League of Ireland Premier Division', | ||
'uru.2': 'Segunda División Uruguaya', | ||
'aut.promotion.relegation': 'Austrian Promotion/Relegation Playoff', | ||
'arg.3': 'Primera B Metropolitana', | ||
'den.promotion.relegation': 'Danish Promotion/Relegation Playoff', | ||
'chi.2': 'Primera B de Chile', | ||
'ned.1': 'Eredivisie', | ||
'nor.1': 'Eliteserien', | ||
'swe.1': 'Allsvenskan', | ||
'sui.1': 'Swiss Super League', | ||
'tur.1': 'Super Lig', | ||
'usa.1': 'Major League Soccer (MLS)', | ||
'arg.copa': 'Copa Argentina', | ||
} | ||
|
||
|
||
SENSOR_TYPES = { | ||
"competizioni": "Competizioni", | ||
"competizione_specifica": "Competizione Specifica", | ||
"classifica": "Classifica", | ||
"match_day": "Match Day", | ||
"cannonieri": "Cannonieri", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.