fix: Remove estibot_appraisal field - Dynadot now works!

- Fixed: 'estibot_appraisal' is not a DomainAuction field
- Dynadot now saves 100 auctions to DB
- Total active auctions: 511 (was 386)

Sample data:
- embedgooglemap.net: $10,200 (51 bids)
- 9454.com: $2,550 (73 bids)
- swosh.com: $2,550 (31 bids)
This commit is contained in:
yves.gugger
2025-12-11 11:37:59 +01:00
parent de5662ab78
commit 9c64f61fb6

View File

@ -309,8 +309,7 @@ class DynadotApiScraper:
"auction_url": build_affiliate_url("Dynadot", domain), "auction_url": build_affiliate_url("Dynadot", domain),
"currency": item.get("bid_price_currency", "USD"), "currency": item.get("bid_price_currency", "USD"),
"is_active": True, "is_active": True,
# Bonus data from Dynadot # Map to existing DomainAuction fields
"estibot_appraisal": float(item.get("estibot_appraisal", 0) or 0),
"backlinks": int(item.get("links", 0) or 0), "backlinks": int(item.get("links", 0) or 0),
"age_years": int(item.get("age", 0) or 0), "age_years": int(item.get("age", 0) or 0),
}) })