Add monitoring PF service

This commit is contained in:
Grendgi
2026-06-04 14:55:41 +03:00
commit dd3edd7088
41 changed files with 3194 additions and 0 deletions

5
app/scrapers/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from app.scrapers.base import ScrapedListing
from app.scrapers.bayut import BayutScraper
from app.scrapers.propertyfinder import PropertyFinderScraper
__all__ = ["ScrapedListing", "BayutScraper", "PropertyFinderScraper"]