Sends your questions to a sli.do event
pip install curious-slido
from curious_slido import SlidoClient
# You can grab it from URL with event, for example
# https://app.sli.do/event/abcd1234/live/questions -> event_hash = 'abcd1234'
event_hash = 'abcd1234'
# You can grab it from cookie Slido.EventAuthTokens (part after comma) or from
# any api request:
# Developer Tools -> Network -> (request to api.sli.do) -> Headers -> Request headers -> authorization (part after `Bearer`)
auth_token = 'longlonglongstring'
slido_client = SlidoClient(event_hash=event_hash, auth_token=auth_token)
slido_client.send_question('Your question')