A Python module to fetch popular quotes and quote of the day from Goodreads page.
This package depends on the following packages:
- requests
- lxml
- u
They can be installed using pip
.
sudo pip install -r requirements.txt
- 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
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())
- Popular quotes
- Daily quote
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.