Skip to content

Commit 40d711b

Browse files
authored
Update README examples and add PyPi badge (#346)
* Add PyPi badge * python3 spotdl.py -> spotdl
1 parent e0c8960 commit 40d711b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Spotify-Downloader
22

3+
[![PyPi](https://img.shields.io/pypi/v/spotdl.svg)](https://pypi.org/project/spotdl)
34
[![Build Status](https://travis-ci.org/ritiek/spotify-downloader.svg?branch=master)](https://travis-ci.org/ritiek/spotify-downloader)
45
[![Coverage Status](https://codecov.io/gh/ritiek/spotify-downloader/branch/master/graph/badge.svg)](https://codecov.io/gh/ritiek/spotify-downloader)
56
[![Docker Build Status](https://img.shields.io/docker/build/ritiek/spotify-downloader.svg)](https://hub.docker.com/r/ritiek/spotify-downloader)
@@ -45,20 +46,20 @@ for OS-specific instructions to get spotify-downloader working on your system.
4546
For the most basic usage, downloading tracks is as easy as
4647

4748
```
48-
$ python3 spotdl.py --song https://open.spotify.com/track/2DGa7iaidT5s0qnINlwMjJ
49-
$ python3 spotdl.py --song "ncs - spectre"
49+
$ spotdl --song https://open.spotify.com/track/2DGa7iaidT5s0qnINlwMjJ
50+
$ spotdl --song "ncs - spectre"
5051
```
5152

5253
For downloading playlist and albums, you need to first load all the tracks into text file and then pass
5354
this text file to `--list` argument. Here is how you would do it for a playlist
5455

5556
```
56-
$ python3 spotdl.py --playlist https://open.spotify.com/user/nocopyrightsounds/playlist/7sZbq8QGyMnhKPcLJvCUFD
57+
$ spotdl --playlist https://open.spotify.com/user/nocopyrightsounds/playlist/7sZbq8QGyMnhKPcLJvCUFD
5758
INFO: Writing 62 tracks to ncs-releases.txt
58-
$ python3 spotdl.py --list ncs-releases.txt
59+
$ spotdl --list ncs-releases.txt
5960
```
6061

61-
Run `python3 spotdl.py --help` to get a list of all available options in spotify-downloader.
62+
Run `spotdl --help` to get a list of all available options in spotify-downloader.
6263

6364
Check out the [Available options](https://github.com/ritiek/spotify-downloader/wiki/Available-options)
6465
wiki page for the list of currently available options with their description.

0 commit comments

Comments
 (0)