I'm using spotipy to set spotify api credential on jupyter-lab. I have generated the spotify client secrect using client id and whenever i run this code it gives me the key error on client id and on client secrect key.
sp = spotipy.Spotify(auth_manager=SpotifyClientCredentials(client_id=os.environ["SPOTIFY_CLIENT_ID"],client_secret=os.environ["SPOTIFY_CLIENT_SECRET"]))
PS: I have also imported "spotipy" and "spotipy.oauth2 import SpotifyClientCredentials" and they have been imported successfullly.
Below is the code and the error snippet: code