Hi all!
I started using LibRETs for Python and I have a few questions:
Am using the Developer's Guide from GitHub
(
https://github.com/NationalAssociationOfRealtors/libRETS/wiki/Developer's-Guide)
as a tutorial for getting familiar with the library. In the section 4
(Performing Searches), the following example is given:
```
request = session.CreateSearchRequest("Property", "RES",
"(ListPrice=300000-)")
result = session.Search(request)
```
But the second line yields:
```
RetsReplyException Traceback (most recent call last)
<ipython-input-33-fbe6f97a11d4> in <module>()
----> 1 session.Search(request)
/usr/local/lib/python3.6/site-packages/librets.py in Search(self, *args)
4234
4235 def Search(self, *args) -> "void":
-> 4236 return _librets.RetsSession_Search(self, *args)
4237
4238 def Logout(self) -> "LogoutResponseAPtr":
RetsReplyException: None
```
1) Is this because am creating a search request with arguments that my MLS
doesn't have? (eg, "Property", "RES", "ListPrice")
2) Should I get the valid arguments from the MetadataLookup? (Section 3)
I'm probably mixing things regarding questions 1) & 2), that's because I don't
understand very much of it.
Thanks,
Giovannni