Closed tjgmax closed 9 years ago
Hi. As far as I can tell, on line 52 of harvest.py, you want "r.json()", not "r.json". Newer versions of the requests module use a method rather than a property (cf. https://github.com/kennethreitz/requests/issues/1028).
I encountered the same problem and also replaced:
try: return r.json
with
try: return r.json()
within harvest.py to be able to access the request results.
harvest.py
Hi. As far as I can tell, on line 52 of harvest.py, you want "r.json()", not "r.json". Newer versions of the requests module use a method rather than a property (cf. https://github.com/kennethreitz/requests/issues/1028).