sefakilic / goodreads

:snake: Python wrapper for Goodreads API :books:
262 stars 100 forks source link

Error with Python 3.5 #19

Closed imeraj closed 8 years ago

imeraj commented 8 years ago

I get the below error when I try to use goodreads wrapper -

Traceback (most recent call last): File "./getQuotes.py", line 3, in from goodreads import client File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/goodreads/client.py", line 2, in from session import GoodreadsSession

Does this wrapper work with python3.5?

Thanks.

rkhwaja commented 8 years ago

It definitely doesn't work with python 3.5 but you can make some simple changes so that it at least runs. e.g. for the imports you can change from session import GoodreadsSession to from session import goodreads.GoodreadsSession

sefakilic commented 8 years ago

Fixed