Metadata-Version: 1.0
Name: goodreads-quotes
Version: 0.1.0
Summary: Fetches popular quotes and quote of the day from goodreads.com website
Home-page: https://github.com/sandipbgt/goodreads-quotes
Author: Sandip Bhagat
Author-email: sandipbgt@gmail.com
License: MIT
Description: goodreads-quotes
        ================
        
        A Python module to fetch popular quotes and quote of the day from `Goodreads <https://goodreads.com/quotes>`_ page.
        
        Dependencies
        ------------
        
        This package depends on the following packages:
        
        - requests
        - lxml
        - u
        
        They can be installed using ``pip``.
        
        ::
        
            sudo pip install -r requirements.txt
        
        
        Installation
        ------------
        
        - You will need [Python 3](https://www.python.org/download/).
        - [pip](http://pip.readthedocs.org/en/latest/installing.html) is recommended for installing dependencies.
        
        ::
        
            sudo pip install goodreads_quotes
        
        Getting Started
        ---------------
        
        .. code:: python
        
            from goodreads_quotes import Goodreads
        
            print(Goodreads.get_popular_quotes())
            print(Goodreads.get_popular_quotes_as_json())
            print(Goodreads.get_daily_quote())
            print(Goodreads.get_daily_quote_json())
        
        Features
        --------
        
        - Popular quotes
        - Daily quote
        
        Contribution
        ------------
        
        Feel free to create a Github issue. Also, you are more than welcome to submit
        a pull request for a bug fix or additional feature.
        
        License
        -------
        
        `MIT License <http://opensource.org/licenses/mit-license.php>`_
        
Keywords: goodreads,quotes,motivation,daily-quotes,popular-quotes
Platform: UNKNOWN
