A Package to Automate Krispy Kreme Survey using Selenium.
pip install -e ./krispy-bot
krispy.bot(url, receipt, answers).finish_survey()
import json
import krispy
with open("survey.json", "r", encoding="utf-8") as file:
survey = (s := json.load(file))['url'], s['receipt'], s['answers']
krispy.bot(*survey).finish_survey()