Skip to main content

Python wrapper for Vagalume API

Project description

# python-vagalume

A simple Python client for Vagalume API. Also a command-line utility to search
song lyrics and translations.

## Install

$ pip install vagalume

## Usage

You can use it from the **command line**:

$ vagalume lyric 'radiohead' 'there, there'

With the -t flag, you can find translations (by default to pt-br):

$ vagalume lyric 'radiohead' 'there, there' -t

But is possible to define another language supported by API ('fr', 'en', 'pt-br', 'pt', 'nl', 'de', 'jp', 'it' or 'es'):

$ vagalume lyric 'radiohead' 'there, there' -t es

Also, you can use the **module** on your own code:

```python
from vagalume import lyrics

artist_name = 'radiohead'
song_name = 'there, there'

result = lyrics.find(artist_name, song_name)

if result.is_not_found():
print 'Song not sound'
else:
print result.song.name
print result.artist.name
print
print result.song.lyric
print

translation = result.get_translation_to('pt-br')
if not translation:
print 'Translation not found'
else:
print translation.name
print translation.lyric
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vagalume-0.0.5.tar.gz (4.0 kB view details)

Uploaded Source

File details

Details for the file vagalume-0.0.5.tar.gz.

File metadata

  • Download URL: vagalume-0.0.5.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for vagalume-0.0.5.tar.gz
Algorithm Hash digest
SHA256 b67ad9ad5845c4d350d5529515be0ec1817cf2d8d9a7ce142961ec87a282a51d
MD5 0236840c34b3507434565fb72faa922f
BLAKE2b-256 ddf89e0dd547b28a8ceb26b6d4252221191e857ecb6fd99ac5d3164f011d3a82

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page