Metadata-Version: 2.1
Name: spotify_lyrics_scraper
Version: 1.0.2
Summary: This allows you to grab Spotify lyrics from their API. You can input song names or track IDs.
Author-email: PolyAnthi <polyanthi_pumicing@aleeas.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Spotify Lyrics Grabber
This basic Python Module allows you to grab Spotify Lyrics from their API. You can input Song Names or input a Track ID and it will return with the pure lyrics JSON (including timings).

Code Example:
```
import spotify-lyrics-scraper as scraper

token = scraper.getToken("SP_DC Here")
#To obtain the sp_dc, please check out https://github.com/akashrchandran/syrics/wiki/Finding-sp_dc. This is required to have access to the lyrics API.

print(scraper.getLyrics(token, songName="Never Gonna Give You Up"))
```