/# Create Feed object with name 'Foo'.
feed = Feed(name='Foo')
/# Send the Feed to IO to create.
/# The returned object will contain all the details about the created feed.
result = aio.create_feed(feed)
This code will create a feed under the default group. It never mentions how to create on a different group. Upon checking the code, it seems it is not yet implemented.
Hi,
In the docs* https://adafruit-io-python-client.readthedocs.io/en/latest/feeds.html
/# Create Feed object with name 'Foo'. feed = Feed(name='Foo')
/# Send the Feed to IO to create. /# The returned object will contain all the details about the created feed. result = aio.create_feed(feed)
This code will create a feed under the default group. It never mentions how to create on a different group. Upon checking the code, it seems it is not yet implemented.
Hopefully it can be implemented soon! Thank you!