github danieldotnl/ha-multiscrape pre-v4.0.0
Upgrade multiscrape component to integration

latest releases: pre-v8.0.0, v7.2.0, v7.1.2...
pre-release3 years ago

Multiscrape now became an integration based on the rest integration and adds a binary_sensor.
This comes with some BREAKING CHANGES in the configuration.
Please check the Upgrade notes!!

New configuration (including a new binary_sensor):

multiscrape:
  - resource: https://www.home-assistant.io
    scan_interval: 3600
    sensor:
      - name: Latest version
        select: ".current-version > h1:nth-child(1)"
        value_template: '{{ (value.split(":")[1]) }}'
      - name: Release date
        select: ".release-date"
    binary_sensor:
      - name: Latest version == 2021.6.0
        select: ".current-version > h1:nth-child(1)"
        value_template: '{{ (value.split(":")[1]) | trim == "2021.6.0" }}'

Don't miss a new ha-multiscrape release

NewReleases is sending notifications on new releases.