From 60c6cab720ea4845bf06862cdbe2550e900461a8 Mon Sep 17 00:00:00 2001 From: cvwillegen Date: Mon, 1 Sep 2025 12:49:29 +0200 Subject: [PATCH] Remove Cleanprofs example (#40669) --- source/_integrations/scrape.markdown | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/source/_integrations/scrape.markdown b/source/_integrations/scrape.markdown index 068341e29b0..a1ef835a5ed 100644 --- a/source/_integrations/scrape.markdown +++ b/source/_integrations/scrape.markdown @@ -272,27 +272,3 @@ scrape: ``` {% endraw %} - -### Container cleaning by CleanProfs in The Netherlands - -This example gets the container type and container cleaning date for the next two cleanings. - -```yaml -# Example configuration.yaml entry. Change postal code and house number to your own address. -scrape: - - resource: https://crm.cleanprofs.nl/search/planning - method: POST - payload: zipcode=5624JW&street_number=17 - headers: - Content-Type: application/x-www-form-urlencoded - sensor: - - name: "Type container 1" - select: "div.nk-tb-item:nth-child(2) > div:nth-child(1) > span:nth-child(1)" - - name: "Date container 1" - select: "div.nk-tb-item:nth-child(2) > div:nth-child(3) > span:nth-child(1) > span:nth-child(1)" - - name: "Type container 2" - select: "div.nk-tb-item:nth-child(3) > div:nth-child(1) > span:nth-child(1)" - - name: "Date container 2" - select: "div.nk-tb-item:nth-child(3) > div:nth-child(3) > span:nth-child(1) > span:nth-child(1)" - -```