Mthrfkr commited on
Commit
8adb578
verified
1 Parent(s): 33fb671

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -91,8 +91,8 @@ def obtener_info_artista(artista_id, token):
91
  # Funci贸n principal de la interfaz
92
  def interface(query, num_spotify_playlists=50, project_name="Proyecto"):
93
  # Obtener tokens y claves
94
- client_id = 'Spotify_ID'
95
- client_secret = 'Spotify_client'
96
 
97
  # Spotify
98
  token_spotify = obtener_token(client_id, client_secret)
 
91
  # Funci贸n principal de la interfaz
92
  def interface(query, num_spotify_playlists=50, project_name="Proyecto"):
93
  # Obtener tokens y claves
94
+ client_id = os.getenv('Spotify_ID')
95
+ client_secret = os.getenv('Spotify_client')
96
 
97
  # Spotify
98
  token_spotify = obtener_token(client_id, client_secret)