Skip to content

MatCast/idealista_api_python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A small python library for idealista.com API

# import the module
import idealista_api as iapi

APYKEY = 'YOUR_API_KEY'
secret = 'YOUR_API_SECRET'

# client object to use the api
client = iapi.Client(APYKEY, secret)
# set up your data
data = {'center': '41.394554,2.175153',
        'distance': 10000,
        'operation': 'sale',
        'propertyType': 'homes',
        'locale': 'en',
        'maxItems': 50,
        'order': 'publicationDate',
        'numPage': 0} # change this number for each request

# request the data and parse the data as dictionary
r = client.api_search('es', data)

About

Python wrapper for idealista API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages