Closed JJnotJimmyJohn closed 7 years ago
Hey, i'm running into the same problem, did you ever find out what the issue was?
Nope. I used another zillow package.
which one did you use?
I'm sorry I just checked my old scripts. I used the same package but looks like I installed python 2.7 just for this package LOL.
There is an easy fix. Open the file place.py and put between brackets the print argument.
Python 3 changed the print syntax.
Python 2 : print xxxx
Python 3 : print(xxxx)
KixS,
You are definitly correct. Did you try this approach? I didn't do it simply because I was concerned there might be some other stuff not compatible with 3.x.
Yes, I just installed the module and so far it works as expected with Python 3.6
Perfect. Thank you KixS.
Error message: File "/Users/jianjin/anaconda/lib/python3.5/site-packages/zillow/place.py", line 15 print "%s: %s" % (i, self.dict[i]) ^ SyntaxError: invalid syntax