Pretalx Client
Basic Usage¶
Pytanis offers easy access to the Pretalx API and the usage is quite self-explanatory. Let's look at some basic example:
from pytanis import PretalxClient
event_name = "pyconde-pydata-berlin-2023"
pretalx_client = PretalxClient()
subs_count, subs = pretalx_client.submissions(event_name)
subs_count
and an iterator of all submissions subs
. When iterating over subs
new requests will be made internally to the Pretalx server to retrieve more result pages. This method of retrieving partial results is called pagination. Quite often you will just use subs = list(subs)
to retrieve all submissions and get a list instead for easier handling. If you want to retrieve always all results directly, i.e. in a blocking way, you can tell this to the client via PretalxClient(blocking=True)
but be aware that you must still call subs = list(subs)
. All endpoints of the Pretalx API are implemented in Pytanis and the method name corresponds to the name of the endpoint. Additional parameters can be passed using the params
argument like e.g.:
subs_count, subs = pretalx_client.submissions(
event_name, params={"questions": "all", "state": "submitted"}
)
Advanced Usage¶
Find out more about the client's capabilities, e.g. throttling, by looking at Pytanis' reference of the pretalx client module.