Тёмный

Python Webscraper for Rightmove - 2024 

Python 360
Подписаться 7 тыс.
Просмотров 108
50% 1

Rightmove listings often included semi detached houses even when you filter for detached. I've built a web scraper with filters to fix this..
List of words to skip
skip_words = ["semi - detached","semi detached","semi-detached", "shared ownership", "new home", "retirement","Auction", "Lodge", "terraced","terrace", "Semi - Detached"]
Check if the title or description contains any words to skip
if any(skip_word.lower() in title.lower() for skip_word in skip_words) or any(skip_word.lower() in description.lower() for skip_word in skip_words):
continue
Need a Linux VPS Server with Python installed?
webdock.io/en?...
Thumbs up yeah? (cos Algos..)
#rightmove #tutorial #pythonprogramming

Опубликовано:

 

23 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 2   
@python360
@python360 3 месяца назад
Let me know if you'd like to see a follow up video to this? - I can insert the scraped data into a vector database, so we can do semantic search, or I could do a more traditional insert into Sqlite? or PostGres?
Далее
This is How I Scrape 99% of Sites
18:27
Просмотров 132 тыс.
UV package manager for Python
11:53
Просмотров 2,2 тыс.
Retrieval with fastembed | TextEmbedding
13:29