Unable to add .cache file

Description of the problem (please keep it simple and short):
When using Spotipy package, unable to access the .cache file or create .cache file.

Explain what you were trying to do:
Access a file named ‘.cache’

What areas or features are involved?
Replit filesystem.

Repl Cover Page Link/Screenshots/Etc: (to protect you and your code, never share your Repl join link outside of PMs)

.cache is reserved for a cache folder used by the packager and resources view (and by some 3rd-party programs). It’d be poor design for a program to use .cache as a filename in any case.
So why do you need a file named .cache?

3 Likes

I see now. I use a python package named ‘spotipy’ which stores the user’s authentication token in the .cache file. Thanks for your help.

I am using spotipy as well on my python project and get this error:
Couldn’t write token to cache at: .cache
Couldn’t read cache at: .cache
Any idea how to give access to it?
Thanks

to work around, set the environment variable SPOTIPY_CLIENT_USERNAME

2 Likes