Metadata-Version: 2.0
Name: tswift
Version: 0.1.0
Summary: MetroLyrics API
Home-page: https://github.com/brenns10/tswift
Author: Stephen Brennan
Author-email: stephen@stephen-brennan.com
License: Revised BSD
Keywords: lyrics metrolyrics scrape
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Natural Language :: English
Requires-Dist: lxml
Requires-Dist: requests

tswift
======

This repo is actually not directly related to Taylor Swift.  It's just a simple
Python API for getting lyrics from MetroLyrics.  Here is how easy it is:

.. code:: python

    from tswift import Artist
    import random

    tswift = Artist('taylor-swift')
    tswift.load()
    song = random.choice(tswift.songs)
    song.load()
    print(song.lyrics)

Setup
-----

This package depends on ``lxml`` and ``requests``.  These should be installed
when you install this package from pip:

.. code::

    pip install tswift




