Skip to content

Commit

Permalink
Merge branch 'master' into schools
Browse files Browse the repository at this point in the history
  • Loading branch information
cullenwatson committed Apr 17, 2024
2 parents e51297d + 6076b0f commit 8814e11
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ Property
│ ├── sold_price
│ ├── last_sold_date
│ ├── price_per_sqft
│ ├── parking_garage
│ └── hoa_fee
├── Location Details:
Expand All @@ -141,8 +142,10 @@ Property
│ ├── broker
│ └── broker_phone
└── Parking Details:
└── parking_garage
├── Agent Info:
│ ├── agent
│ ├── broker
│ └── broker_phone
```

### Exceptions
Expand Down
1 change: 1 addition & 0 deletions homeharvest/core/scrapers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import uuid
from dataclasses import dataclass
import requests
import uuid
from .models import Property, ListingType, SiteName


Expand Down
6 changes: 6 additions & 0 deletions homeharvest/core/scrapers/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ class Description:
stories: int | None = None


@dataclass
class Agent:
name: str | None = None
phone: str | None = None


@dataclass
class Property:
property_url: str
Expand Down

0 comments on commit 8814e11

Please sign in to comment.