You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 28, 2026. It is now read-only.
When querying on Slack for CW puzzles, languages aren't taken into account in the Django queries.
The
qquery will be a dictionary with alanguageskey that holds a Python list. The structure is like this:{'languages': ['fortran', 'cobol', 'raku'], 'source': 'codewars', 'difficulty': 3}The relevant data is stored as JSONB in Postgres. An example raw SQL query is:
The Django query should return a puzzle that includes all of the languages that in listed in the
qquery.See the notes that will be in
apps/puzzles/puzzles.py.