-
Notifications
You must be signed in to change notification settings - Fork 0
Pretalx data #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pretalx data #30
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Comments suppressed due to low confidence (1)
intbot/intbot/settings.py:288
- The PRETALX_API_TOKEN is declared globally and then overwritten for the dev environment, which might lead to confusion; consider consolidating the configuration to maintain a single source of truth.
PRETALX_API_TOKEN = "Test-Pretalx-API-token"
intbot/core/integrations/pretalx.py
Outdated
url = base_url + f"{endpoint}" | ||
|
||
# Pretalx paginates the output, so we will need to do multiple requests and | ||
# then merge mutliple pages to one big dictionary |
Copilot
AI
Apr 14, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a minor spelling error: 'mutliple' should be corrected to 'multiple'.
# then merge mutliple pages to one big dictionary | |
# then merge multiple pages to one big dictionary |
Copilot uses AI. Check for mistakes.
Co-authored-by: Mia Bajić <[email protected]>
Basic background task to download pretalx submissions/speakers data.
This is first step to making the programme data available in intbot.
The next step after downloading the data, will be to parse it to separate tables so that we can write simple queries against them. (this is coming in future PRs)
TODO for this PR: