Metadata-Version: 2.0
Name: coverpy
Version: 0.0.4
Summary: A wrapper for iTunes Search API
Home-page: UNKNOWN
Author: fallenshell
Author-email: dev@mxio.us
License: MIT License
Keywords: itunes search api wrapper simple clear cover album art music
Platform: UNKNOWN
Requires-Dist: requests

# coverpy
[![Build Status](https://travis-ci.org/fallenshell/coverpy.svg?branch=master)](https://travis-ci.org/fallenshell/coverpy) [![Build Status](https://travis-ci.org/fallenshell/coverpy.svg?branch=develop)](https://travis-ci.org/fallenshell/coverpy)

Small wrapper for the iTunes API; mostly for fetching album covers. **Will soon be transferred over to Mxious, as it was built for it.** 

**Docs need to be done, I know. Been busy.**

## Install
This library requires Python 3.0+. It might work, but proceed with caution.
`pip install coverpy`
For development installs:
`make install`

## Testing
We have a Travis CI instance that unit tests automatically on commits. To run code coverage tests and unit tests, run:
`make test`

## Usage
Usage is very simple:

    # Instance CoverPy
    coverpy = coverpy.CoverPy()
    # Set a limit. There is a default (1), but I set it manually to showcase usage.
    limit = 1
    # Get results. Returns a Result object.
    result = coverpy.get_cover("OK Computer", limit)

    # Set a size for the artwork (first parameter) and get the result url.
    print result.artwork(100)


