Closed stephenjamieson closed 9 years ago
Just use api.pushes()
method and filter by device iden:
device_iden = "abcdefg"
pushes = (p for p in api.pushes() if p.source_device_iden == device_iden)
That's what I thought, wasn't sure if there was something in the API to allow for a single devices pushes besides filtering. Thanks!
Is there a way to only get items from the stream that are for particular devices?