We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I checked requests from open.spotify.com and your code, adding this func, based on get_lyrics, to Spotify class is enough to make it work
import syrics.api class Spotify(syrics.api.Spotify): def get_transcripts(self, episode_id: str): params = 'format=json' req = self.session.get(f'https://spclient.wg.spotify.com/transcript-read-along/v2/episode/{episode_id}', params=params) return req.json() if req.status_code == 200 else None
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I checked requests from open.spotify.com and your code, adding this func, based on get_lyrics, to Spotify class is enough to make it work
The text was updated successfully, but these errors were encountered: