summary refs log blame commit diff stats
path: root/common/types.py
blob: b28b4575e35d2e34c032268421cfe7c593e5f478 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                            














                                       
from typing import Literal

question_category = Literal[
    "Literature",
    "History",
    "Science",
    "Fine Arts",
    "Religion",
    "Mythology",
    "Philosophy",
    "Social Science",
    "Current Events",
    "Geography",
    "Other Academic",
    "Trash",
]

category_field_translations = {
    'Literature': 'literature',
    'History': 'history',
    'Science': 'science',
    'Fine Arts': 'fine_arts',
    'Religion': 'religion',
    'Mythology': 'mythology',
    'Philosophy': 'philosophy',
    'Social Science': 'social_science',
    'Current Events': 'current_events',
    'Geography': 'geography',
    'Other Academic': 'other_academic',
    'Trash': 'trash'
}