Darksky Weather Component

Posted this in the configuration section, but this section might be better for what I am after.

I have been stumbling my way through modifying the darksky weather component to show a daily forecast instead of a hourly forecast, as well as some additional points that would be useful. However, one that doesn’t seem to be working is apparentTemperature. It is defined in the same manner as some of the additional points that I have added. I haven’t seen anything yet that makes it impossible. Am I looking in the wrong places?

I should note that I am expecting to see it as an attribute, not necessarily on the card itself.

@property
def condition(self):
    """Return the weather condition."""
    return self._ds_currently.get('summary')

@property
def icon(self):
    """Return the weather icon."""
    return self._ds_currently.get('icon')

@property
def apparent_temperature(self):
    """Return the apparent temperature (Feels like)."""
    return self._ds_currently.get('apparentTemperature')

@property
def visibility(self):
    """Return the visibility."""
    return self._ds_currently.get('visibility')

darksky_weather

any progress on this? I would like to get the icon attribute available since it is what darksky suggests we use to drive automations.