Skip to content

skezle/zoopla

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zoopla API for Python

Note that we don't currently support the full API.

Please refer to the Zoopla API documentation

import zoopla
api = zoopla.api(version=1, api_key='MY API KEY')

for listing in api.property_listings(
        area='Liverpool',
        property_type='houses',
        max_results=None):
    
    print("outcode: {}, short_description: {}".format(
        listing.outcode,
        listing.short_description))

About

Zoopla API bindings for Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%