Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RETS (Real Estate Transaction Standard) project?

Tags:

php

rets

I have a realtor client who would like to add MLS listings to her website. I understand that I can access a data feed based on RETS.

My question is, should I develop this myself, or look for a third party provider? I'm a decent PHP coder used to dealing with data feeds. I just don't want to reinvent the wheel if there is a more cost effective alternative.

like image 849
John Rand Avatar asked Jan 26 '11 02:01

John Rand


1 Answers

There are quite a few specialists in the field who can get RETS data into a DB. There's also open source projects like phrets, vieleRETS and librets that can handle a lot of the heavy lifting for you.

I've used all of them at various times. I like phrets personally, since it's more of a wrapper for RETS in PHP, which makes it really easy to deploy on other servers. If you are working only on your own server, librets might be a better option, since you can compile for a variety of languages (ruby, java, C, etc). It may be a bit more powerful than phrets. VieleRETS is the most "product"-like but that's also a downfall in my opinion, since it's less flexible than the others.

Anyway-- depending on the DB scheme you need to import into, the provider you hire will likely have to do some mapping to meet your schema, which may make it almost as cost/time effective to do it yourself using one of the libraries I've mentioned.

Good luck!

like image 56
julio Avatar answered Oct 31 '22 15:10

julio