Python Wrappers for the restarters.net API
restarters.net is a website widely used within the Repair Community.
The API documentation describes the REST API which is wrapped by this package
Currently this package supports reading data from the restarters.net website which does not require an API key. The APIs to modify or delete data are not currently supported.
- Install a recent version of Python 3
- Install
pyRestarterspython3 -m pip install pyRestarters
The date for the next Repair Cafe Gosport Event
restarters_groups = Groups()
rcg = restarters_groups.group_by_name('Repair Café Gosport')
next_rcg_event = rcg.next_event
print(f'The next Repair Café Gosport is {next_rcg_event.start:%d %b %Y}')This will print a string as follows, the date will change if you rerun it
The next Repair Café Gosport is 14 Feb 2026