rets icon indicating copy to clipboard operation
rets copied to clipboard

A thin RETS client

Results 12 rets issues
Sort by recently updated
recently updated
newest added

Hi! I try to execute this code: search_results = rets_client.search(resource='Property', resource_class='RES', limit=1, dmql_query='(ListPrice=150000+)') for result in search_results: print(result) While trying to execute this code I'm getting an error, here is...

"Hi, I am downloading real estate data using the RETS Library of Python from multiple sources, around 800 in total, available on the board https://retsmd.com/. I have observed that some...

When I am running this following code: `from rets import Session` `login_url = 'url'` `username= '####'` `password = '###'` `rets_client = Session(login_url,username,password)` `rets_client.login()` Till this point it returns True ,...

I'm trying to piece together a script that authenticates and performs a query for all listing fields in one city. I've read through the material here, as well as in...

i want to sort records based on column or columns like pandas does df.sort_values().i want same feature in rets is it possible any one help me?how to implement this feature...

## Description Fixes User agent with password authentication ## GitHub Issues https://github.com/refindlyllc/rets/issues/226

![image](https://user-images.githubusercontent.com/5883952/144334390-34598b2a-d1a8-4764-a69f-cf674ccb09b3.png) For some reason there is an additional line in the _user_agent_digest_hash method that strips the RETS/ prefix from the RETS version, the digest is expected to be created using...

I'd like to be able to find Agent information in RETS, but whenever I try something like ``` python search_results = self.rets_session.search( resource='Agent', resource_class='AGENT', limit=self.BLOCK_SIZE, offset=offset, dmql_query='(Description=Agent Roster)', ) ```...

Hi! A new version was just released of `responses`, so [Doppins](https://doppins.com) has upgraded your project's dependency ranges. Make sure that it doesn't break anything, and happy merging! :shipit: --- ###...

Hi all! Love this library and only ran into one snag so far. While searching a Listing resource, Listing class, supplying a dict to search_filter, and the field I want...