get tracks of spotify playlists without using the official api
Project description
spotify websapi
Note: This libary can only parse the first 50 songs of a playlist! (spotify web limitations)
No login, no apikey, no apilimit just webparsing
How to use:
import spotify_webapi as sp
playlist_string = "https://open.spotify.com/playlist/0r8WNX8191PI6lHnmwXWPA?"
another_playlist_string = "spotify:playlist:37i9dQZF1DWZeKCadgRdKQ"
song_string = '<iframe src="https://open.spotify.com/embed/track/3PQLYVskjUeRmRIfECsL0X" width="300" height="380" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe>'
print("pulling playlist...")
pl = sp.Playlist(playlist_string)
print("pulling song...")
tr = sp.Track(song_string)
print("init playlist obj without pulling\n")
pl2 = sp.Playlist(another_playlist_string, False)
print(f"songs of {pl.title}")
print(f"third song of the playlist: {pl.tracks[2].title}\n")
print(f"{tr.title} was released on {tr.releasedate}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
spotify_webapi-1.0.3.tar.gz
(3.5 kB
view hashes)
Built Distribution
Close
Hashes for spotify_webapi-1.0.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebbb70d4ef4763eb41350a42bf76a1597d9c1b9b1bfe1ae07d61fec2d37369c5 |
|
MD5 | a02ada9946c384eab65c93b2824fee4b |
|
BLAKE2b-256 | 7b5d20111bdb43189d485c5cf8af8d58679d3aeb556abd1ab3d980c796143725 |