We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41a074c commit fa98981Copy full SHA for fa98981
adafruit_io.py
@@ -231,3 +231,13 @@ def delete_feed(self, feed_key):
231
"""
232
path = self._compose_path("feeds/{0}".format(feed_key))
233
return self._delete(path)
234
+
235
+ # Adafruit IO Connected Services
236
+ def receive_weather(self, weather_id):
237
+ """
238
+ Adafruit IO Weather Forecast Service
239
+ NOTE: This service is avaliable to Adafruit IO Plus subscribers only.
240
+ :param int weather_id: ID for retrieving a specified weather record.
241
242
+ path = self._compose_path("integrations/weather/{0}".format(weather_id))
243
+ return self._get(path)
0 commit comments