Skip to content

Commit

Permalink
Update version and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
res0nance committed Apr 13, 2018
1 parent 1b61961 commit 4171715
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,17 @@ Currently the following python versions are supported
- 3.6
## API
Currently only 1 API is supported `get_lyrics`. On success it returns lyrics on failure it will raise a `LyricsNotFound` exception.
Currently only 4 API is supported `get_lyrics`. On success it returns lyrics on failure it will raise a `LyricsNotFound` exception.
```
import darklyrics

try:
print(darklyrics.get_lyrics(song,artist))
print(darklyrics.get_lyrics(song))
print(darklyrics.get_songs(artist))
print(darklyrics.get_albums(artist))
print(darklyrics.get_all_lyrics(artist))
except darklyrics.LyricsNotFound:
print('No lyrics found')
```
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

version = '0.1.3'
version = '0.1.4'

setup(name='darklyrics',
version=version,
Expand Down

0 comments on commit 4171715

Please sign in to comment.