{ "info": { "author": "Jace Browning", "author_email": "jacebrowning@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "Introduction\n============\n\nSongPrint is a library that provides functions to locate duplicate songs by\nperforming a textual comparison of the songs' attributes.\n\n\n\nGetting Started\n===============\n\nRequirements\n------------\n\n* Python 2.7\n\n\nInstallation\n------------\n\nSongPrint can be installed with ``pip`` or ``easy_install``::\n\n pip install SongPrint\n \nAfter installation, the package is available under the name ``songprint``::\n\n python\n >>> import songprint\n \n\n\nSample Usage\n============\n\nA sample script might look like this::\n\n #!/usr/bin/env python\n\n from songprint import match, Song\n \n items = [Song(\"The Beatles\", \"Rock and Roll Music\"),\n Song(\"Beatles\", \"rock & roll music\"),\n Song(\"The beetles\", \"Rock & Roll Music\", duration=150),\n Song(\"The Beatles\", Rocky Raccoon\")]\n \n base = Song('beatles', 'rock and roll music', duration=150)\n \n for item in match(base, items):\n print(item)\n \n \nTesting\n=======\n\nThe ``sonprint`` package contains unit tests which can be run from source::\n\n python setup.py test", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/SongPrint/", "keywords": null, "license": "LICENSE.txt", "maintainer": null, "maintainer_email": null, "name": "SongPrint", "package_url": "https://pypi.org/project/SongPrint/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/SongPrint/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://pypi.python.org/pypi/SongPrint/" }, "release_url": "https://pypi.org/project/SongPrint/0.0.x/", "requires_dist": null, "requires_python": null, "summary": "Song matching based on textual comparison of attributes.", "version": "0.0.x" }, "last_serial": 598008, "releases": { "0.0.x": [] }, "urls": [] }