daftlistings enables programmatic interaction with daft.ie Daft.ie has nationwide coverage and contains about 80% of the total available properties in Ireland.
daftlistings is available on the Python Package Index (PyPI).
You can install daftlistings using pip.
$ virtualenv env
$ source env/bin/activate
$ pip install daftlistings
from daftlistings import Daft
daft = Daft()
listings = daft.get_listings()
for listing in listings:
print(listing.get_formalised_address())
print(listing.get_daft_link())
print(listing.get_price())
print(' ')
For more code examples, check out the documentation.