Live data from Hacker News

Show HN: CloudPostOffice – Send messages between apps and agents in 4 lines

cloudpostoffice.com

1–3 of 3 posts

Show HN: CloudPostOffice – Send messages between apps and agents in 4 lines

#1
CloudPostOffice is realtime messaging for apps, scripts, and AI agents. No MQTT broker setup or configuration, no infrastructure to manage.

  p1 = cpo.postbox('postbox-1', 'your-secret')
  p1.send(to='postbox-2', msg='hello')

  p2 = cpo.postbox('postbox-2', 'your-secret')
  p2.listen(lambda msg: print(msg))

Show HN: CloudPostOffice – Send messages between apps and agents in 4 lines
cloudpostoffice.com