from sqlalchemy.pool import NullPool # Database config PL_DB_URL = 'mysql+mysqlconnector://playlister:xHKTLDbw8CYOMyO@' \ 'db.cb22xqmk0y0q.us-east-1.rds.amazonaws.com/spotify_playlists' DB_ENGINE_SETTINGS = {'poolclass': NullPool} SPOTIFY_PLAYLIST_URL = 'https://api.spotify.com/v1/users/' \ '{user_id}/playlists/{playlist_id}{extra}' SPOTIFY_TRACK_ISRC_URL = 'https://api.spotify.com/v1/search?q=isrc%3A{isrc}&type=track&limit=1'