Skip to content

Commit

Permalink
bump up Rich (#265)
Browse files Browse the repository at this point in the history
* bump up Rich

https://stackoverflow.com/a/39590286/92837

fixes #261

* update readme

* bump up version

* update contribs
  • Loading branch information
SathyaBhat authored Apr 19, 2022
1 parent df84b3d commit 9f12bdb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ template: |
Update using
pip install spotify_dl --upgrade
pip install spotify_dl --upgrade
Thanks to everyone for their contributions!
17 changes: 1 addition & 16 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
### Credits and Thanks

spotify_dl wouldn't be what it is without the help and contributions of following people:

- [rhnvrm](https://github.com/rhnvrm) for [adding in youtube-dl](https://github.com/SathyaBhat/spotify-dl/pull/1)
- [mr-karan](https://github.com/mr-karan) for [adding save to directory](https://github.com/SathyaBhat/spotify-dl/pull/6)
- [shantanugoel](https://github.com/shantanugoel) for adding in [User playlist](https://github.com/SathyaBhat/spotify-dl/pull/7), [skip MP3 conversion](https://github.com/SathyaBhat/spotify-dl/pull/34) and [Ability to use custom format string support](https://github.com/SathyaBhat/spotify-dl/pull/34)
- [sildur](https://github.com/sildur) for adding any [user playlist support and other fixes](https://github.com/SathyaBhat/spotify-dl/pulls?q=is%3Apr+author%3Asildur+is%3Aclosed)
- [avinassh](https://github.com/avinassh) for being a [Rockstar](https://github.com/avinassh/rockstar) and not teleporting over to my house to kill me when I innundated him with questions
- [doulwyi](https://github.com/doulwyi) for adding id3 tagging and ability to parse Spotify URI
- [Gowtham](https://github.com/HackToHell) for [create playlist in download](https://github.com/SathyaBhat/spotify-dl/pull/23) directory
- [alvierahman90](https://github.com/alvierahman90) for [config file support](https://github.com/SathyaBhat/spotify-dl/pull/42) and [Spotify playlist URL support](https://github.com/SathyaBhat/spotify-dl/pull/41)
- [Bibhas](https://github.com/iambibhas) for fixing [can only concatenate list (not "str") to list error](https://github.com/SathyaBhat/spotify-dl/issues/44)
- [Nikhil Nagaraju](https://github.com/nikhilnagaraju) for fixing support for [playlist url with or without userid](https://github.com/SathyaBhat/spotify-dl/pull/58)
- [Luca](https://github.com/lucanello) for adding [YouTube scraping support](https://github.com/SathyaBhat/spotify-dl/pull/75)
- [Paul Bissex](https://github.com/pbx) for [better error description](https://github.com/SathyaBhat/spotify-dl/pull/138)
- [gonzk](https://github.com/gonzk) for adding [Album Art Cover](https://github.com/SathyaBhat/spotify-dl/pull/145) and [album, year released and track number song metadata](https://github.com/SathyaBhat/spotify-dl/pull/144)

spotify_dl wouldn't be what it is without the help and contributions of [these](https://github.com/SathyaBhat/spotify-dl/graphs/contributors) people. Thank you!
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Downloads songs from any Spotify playlist, album or track.

### Tell me more!

I wanted an easy way to grab the songs present in my library so I can download it & use it offline. [spotify_to_mp3](https://github.com/frosas/spotify-to-mp3) worked well but it relied on grooveshark, which unfortunately is no more. So I wrote this script which mimics that library, but instead of downloading from grooveshark, it searches YouTube and downloads the song using [yt-dlp](https://github.com/yt-dlp/yt-dlp).
I wanted an easy way to grab the songs present in my library so I can download it & use it offline. I no longer use this, but continue to maintain this. spotify-dl doesn't download anything from Spotify. It picks up the metadata from Spotify API and then uses [yt-dlp](https://github.com/yt-dlp/yt-dlp) to download the song.

### How do I get this thing running?

Expand All @@ -36,6 +36,10 @@ For more details and other arguments, issue `-h`

See [the getting started guide](https://github.com/SathyaBhat/spotify-dl/blob/master/GETTING_STARTED.md) for more details.

### Demo

[![asciicast](https://asciinema.org/a/488558.svg)](https://asciinema.org/a/488558)

### Contributing and Local development

Pull requests and any contributions are always welcome. Please open an issue with your proposal before you start with something.
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sentry_sdk>=1.5,<2
sentry_sdk~=1.5.0
yt-dlp>=2022.01.21
spotipy>=2.16,<3
mutagen>=1.45,<2
rich>=11.0,<12
spotipy~=2.16.0
mutagen~=1.45.0
rich~=12.0.0
2 changes: 1 addition & 1 deletion spotify_dl/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__all__ = ['VERSION']

VERSION = '8.1.0'
VERSION = '8.2.0'

if os.getenv("XDG_CACHE_HOME") is not None:
SAVE_PATH = os.getenv("XDG_CACHE_HOME") + "/spotifydl"
Expand Down

0 comments on commit 9f12bdb

Please sign in to comment.