Metadata-Version: 2.1
Name: allmusic
Version: 0.0.1
Summary: AllMusic review scraper
Home-page: https://github.com/fortes/allmusic
Author: Filipe Fortes
Author-email: accounts@fortes.com
License: MIT
Description: # AllMusic
        
        ![build status](https://travis-ci.org/fortes/allmusic.svg?branch=master)
        
        An unofficial scraper [AllMusic](https://allmusic.com) reviews.
        
        ## Installation
        
        ```sh
        pip install allmusic
        ```
        
        Alternatively, clone directly from `master` to run with the freshest bugs:
        
        ```sh
        pip install git+git://github.com/fortes/allmusic.git@master
        ```
        
        ## Usage
        
        ```
        >>> import allmusic
        >>> review = allmusic.getAlbumReviewForAllMusicUrl('https://www.allmusic.com/album/beauty-and-the-beat-mw0000736440')
        >>> print(review.album)
        'Beauty and the Beat'
        >>> print(review.rating)
        9
        ```
        
        ## Tests
        
        There is one test, you can try it:
        
        ```bash
        python -m unittest
        ```
        
        ## License
        
        MIT
        
        ## Contributions
        
        Please do
        
Platform: ALL
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Description-Content-Type: text/markdown
