pyBreezeChMS
pyBreezeChMS copied to clipboard
Feature request: Get attendance records of any profile
Hi, I would like to retrieve the attendance records of any particular profile.
I would like the info that is available via this page also available via an API: https://
Boy, that would be nice, wouldn't it?
Unfortunately, this particular Python package is apparently dead, and Breeze no longer supports the underlying API it uses. See breeze-chms-api for a more "live" version of the Python implementation, but even that can only support what the underling Breeze API supports.
It wouldn't be too, awfully hard to implement this using the the existing API, though. Basically you'd have to use list_events() to get a list of potential events, then list_attendance() for each event, and built yourself a mapping from attendees' profiles to a collection of events attended. A lot of work if you're really only interested in one profile, but that's what's possible given the existing API.