From 3609586995dab687eeb42dbee9271c0256343383 Mon Sep 17 00:00:00 2001 From: Cullen Watson Date: Wed, 4 Oct 2023 22:11:38 -0500 Subject: [PATCH] [docs]: add contingent to example --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c532fd..bc70f6c 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,8 @@ properties = scrape_property( location="San Diego, CA", listing_type="sold", # or (for_sale, for_rent) property_younger_than=30, # sold in last 30 days - listed in last x days if (for_sale, for_rent) - mls_only=True, # only fetch MLS listings + # pending_or_contingent=True # use on for_sale listings to find pending / contingent listings + # mls_only=True, # only fetch MLS listings ) print(f"Number of properties: {len(properties)}")