Code Monkey home page Code Monkey logo

coverpy's Introduction

coverpy

Build Status Scrutinizer Code Quality

Small wrapper for the iTunes API; mostly for fetching album covers. As of now, fully feature complete.

Install

This library requires Python 3.0+. It might work on 2, 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

try:
	result = coverpy.get_cover("OK Computer", limit)
	# Set a size for the artwork (first parameter) and get the result url.
	print(result.name)
	print(result.artwork(100))
except coverpy.exceptions.NoResultsException:
	print("Nothing found.")
except requests.exceptions.HTTPError:
	print("Could not execute GET request")

coverpy's People

Contributors

ftxrc avatar matteing avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

coverpy's Issues

no 'exceptions' member

Hey, I was trying out your library and I get this error -
Instance of 'CoverPy' has no 'exceptions' member

Could you help me with this ?

I'm getting an HTTP error when I use your code

Below the code that's throwing an exception and halting the code.
Do you know how to fix this pls? Thank you so much

def Busca(Art,Title,Album,res):
busca = coverpy.CoverPy()
kw = Art + " " + Title
try:
query = busca.get_cover(kw)
if Art.lower()==query.artist.lower() and
(Title.lower()==query.name.lower() or Album.lower()==query.album.lower()):
res['RC'] = True
res['Type'] = query.type
res['Art'] = query.artist
res['Title'] = query.name
res['Album'] = query.album
res['URL'] = query.url
# what type of match is it?
if Title.lower()==query.name.lower():
res['Match'] = 'Title'
else:
res['Match'] = 'Album'
else:
res['RC'] = False
except coverpy.exceptions.NoResultsException as e:
res['RC'] = False

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.