-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't import at all #4
Comments
Hi android2221, It looks like a problem with the import path. I have tried this piece of code and it worked for me: from pyzillow import pyzillow
API_KEY="your-key-goes-here"
zillow_data = pyzillow.ZillowWrapper(API_KEY)
result = zillow_data.get_deep_search_results('1600 Pennsylvania Avenue NW', '20500')
data = pyzillow.GetDeepSearchResults(result)
print data.zillow_id In my example the import is different. Let me know if that works for you. |
Ah good call. I've started to just use the regular zillow API but unfortunately their rules/regulations prevent me from accessing the data I need anyway. :( thanks! |
I this error as well as the error listed by Andriod2221. Any direction on a fix? Thanks :-) File "C:\Python27\lib\site-packages\pyzillow\pyzillow.py", line 8, in |
@tsumuel The lib currently uses a method of GeoDjango ( |
@tsumuel Please check out the updated repository with the removed Django dependency, Python 3.4 support and mocked tests. I have updated the pip package as well. The latest version is now 0.5.1 The latest update should fix your problem. Please give the package another try and let me know if you have any trouble. Any comments/suggestions are welcome. |
I've reinstalled with new package (0.5.1). At first the install would not complete...I tinkered and changed the version information in the code. It would then recognize the module but still not recognize name the wrapper etc...
Traceback (most recent call last): Then after tinkering with code:
Traceback (most recent call last): |
@tsumuel Let me try it out. I will get back to you today. |
@tsumuel Thank you for your patience. I have fixed this bug and increased the version to Please update your pip package with I have tested the code in a small sample project and it worked for me. Let me know if you have any further problems. |
Haha, there seems to be an issue now with Python 2.7. Everything works fine on 3.4. |
All tests have now passed Travis CI. The latest version is 0.5.5. |
Thanks. I use 2.7 with Anaconda as well. The module still doesn't exist according to IDLE. This is what I run: from pyzillow.pyzillow import ZillowWrapper, GetDeepSearchResults address = '10610 S 48th St Unit 1096' zillow_data = ZillowWrapper('my key') result.zillow_id This is the error: from pyzillow.pyzillow import ZillowWrapper, GetDeepSearchResults |
I am not sure what |
I have upgraded via pip and reinstalled without success. The module doesn't exist means that python still doesn't recognize it as presented in the ImportError listed in the message. I can see it in my site-packages. Not sure but I wanted to share. Thanks for looking into the issues. :) |
I think you are missing the correct python path. I used your small code in a simple app and it worked fine after I set |
Is there a way to access the listing price? I could not find it among the attributes of the GetUpdatedPropertyDetails. |
I added 'price':'price' to attribute_mapping in GetUpdatedPropertyDetails. I can access the price as an attribute now. Thanks for the module. |
@darya-a that is great! Can you please create a pull request with your updates so that others can access the pricing data too? Feel free to add you to the list of contributors. Thank you! |
Thanks for the module, worked great for me. However, is there a limitation( about 1000 records) that can be fetched from zillow API ? I need to pull a lot more than 1000 records. |
Zillow offers a paid API access which doesn't have a limit of 1k records.
…---
Hannes Hapke
p: +1-503-425-9586
t: @hanneshapke
w: hanneshapke.github.io
For secure messages, please use this pgp key: http://bit.ly/1EJhUxJ
On Sun, Jun 18, 2017 at 2:41 PM, Arko ***@***.***> wrote:
@hanneshapke <https://github.com/hanneshapke> ,
Thanks for the module, worked great for me. However, is there a
limitation( about 1000 records) that can be fetched from zillow API ? I
need to pull a lot more than 1000 records.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABLXg6m9oPACRz9I2MAL0w9to9725j2zks5sFZmKgaJpZM4FfZ18>
.
|
I'm unable to import 'ZillowWrapper' or 'GetDeepSearchResults'. I've tried installing both manually and from pip, both with and without sudo, and both in vagrant and on my local machine. Opening any python console including django shell yields the same thing. Is this current version still working?
I've since removed and reinstalled to the same tune. Any idea what's going awry?
The text was updated successfully, but these errors were encountered: