I have installed the multiscrape intergration through HACS. I have tried countless settings. I have spent the entire day and gotten nowhere. I added this line to my configuration.yaml
multiscrape: !include multiscrape.yaml
I have created the multiscrape.yaml file. WHen I try a new set of code, I do get the new sensor, but not one sensor has gotten any output. The latest thing I tried was the following code, which is directly from the integration’s github site (GitHub - danieldotnl/ha-multiscrape: Home Assistant custom component for scraping (html, xml or json) multiple values (from a single HTTP request) with a separate sensor/attribute for each value. Support for (login) form-submit functionality.)
- name: HA scraper
resource: https://www.home-assistant.io
scan_interval: 3600
sensor:
- unique_id: ha_latest_version
name: Latest version
select: ".release-date"
value_template: "{{ value | trim }}"
- unique_id: ha_release_date
icon: >-
{% if is_state('binary_sensor.ha_version_check', 'on') %}
mdi:alarm-light
{% else %}
mdi:bat
{% endif %}
name: Release date
select: ".release-date"
attribute: "title"
value_template: "{{ (value.split('released')[1]) }}"
This also gave no state value for sensor.ha_latest_version.
I have checked the logs and find nothing. I have looked at custom_components and the folder and all files are there. I am at a loss where else to look. Any help appreciated.
Mike