NBA
Esta página fue traducida por PageTurner AI (beta). No está respaldada oficialmente por el proyecto. ¿Encontraste un error? Reportar problema →
Qué hace
¡El segmento NBA te permite mostrar la información de programación y resultados de tu equipo favorito de la NBA!
Configuración de ejemplo
Para utilizar el segmento NBA, debes proporcionar un tri-code válido del equipo para el que deseas obtener datos en la configuración. Por ejemplo, si quieres obtener información sobre Los Angeles Lakers, necesitarás usar el tri-code "LAL".
Este ejemplo utiliza "LAL" para obtener información de Los Angeles Lakers. También configura los colores de primer plano y fondo para que coincidan con la temática del equipo. Si estás interesado en obtener información sobre combinaciones de colores específicas que podrías usar para otros equipos, puedes explorar algunos esquemas de color aquí.
Se recomienda configurar un valor de HTTP timeout más alto que el predeterminado normal por si toma tiempo recopilar la información del marcador. En este caso tenemos el http_timeout configurado en 1500.
- json
- yaml
- toml
{
"background": "#e9ac2f",
"foreground": "#8748dc",
"leading_diamond": "",
"style": "diamond",
"trailing_diamond": "",
"type": "nba",
"options": {
"team": "LAL",
"http_timeout": 1500
}
}
background: "#e9ac2f"
foreground: "#8748dc"
leading_diamond:
style: diamond
trailing_diamond:
type: nba
options:
team: LAL
http_timeout: 1500
background = "#e9ac2f"
foreground = "#8748dc"
leading_diamond = ""
style = "diamond"
trailing_diamond = ""
type = "nba"
[options]
team = "LAL"
http_timeout = 1500
Opciones
| Name | Type | Default | Description |
|---|---|---|---|
team | string | tri-code for the NBA team you want to get data for | |
days_offset | int | 8 | how many days in advance you wish to see that information for |
http_timeout | int | 20 | How long do you want to wait before you want to see your prompt more than your sugar? I figure a half second is a good default |
Plantilla (info)
\udb82\udc06 {{ .HomeTeam}}{{ if .HasStats }} ({{.HomeTeamWins}}-{{.HomeTeamLosses}}){{ end }}{{ if .Started }}:{{.HomeScore}}{{ end }} vs {{ .AwayTeam}}{{ if .HasStats }} ({{.AwayTeamWins}}-{{.AwayTeamLosses}}){{ end }}{{ if .Started }}:{{.AwayScore}}{{ end }} | {{ if not .Started }}{{.GameDate}} | {{ end }}{{.Time}}
Propiedades
| Name | Type | Description |
|---|---|---|
.HomeTeam | string | home team for the upcoming game |
.AwayTeam | string | away team for the upcoming game |
.Time | string | time (EST) that the upcoming game will start |
.GameDate | string | date the game will happen |
.StartTimeUTC | string | time (UTC) the game will start |
.GameStatus | integer | integer, 1 = scheduled, 2 = in progress, 3 = finished |
.HomeScore | int | score of the home team |
.AwayScore | int | score of the away team |
.HomeTeamWins | int | number of wins the home team currently has for the season |
.HomeTeamLosses | int | number of losses the home team currently has for the season |
.AwayTeamWins | int | number of wins the away team currently has for the season |
.AwayTeamLosses | int | number of losses the away team currently has for the season |
.Started | boolean | if the game was started or not |
.HasStats | boolean | if the game has game stats or not |