-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmisc.py
More file actions
57 lines (44 loc) · 1.25 KB
/
misc.py
File metadata and controls
57 lines (44 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from enum import Enum
class SpeakerQuestion:
affiliation = "Company / Institute"
homepage = "Homepage"
twitter = "Twitter / Mastodon handle(s)"
bluesky = "Social (Bluesky)"
linkedin = "LinkedIn"
mastodon = "Twitter / Mastodon handle(s)"
gitx = "Github/Gitlab"
class SubmissionQuestion:
tweet = "Abstract as a tweet / toot"
delivery = "My presentation can be delivered"
level = "Expected audience expertise"
class SubmissionState(Enum):
accepted = "accepted"
confirmed = "confirmed"
withdrawn = "withdrawn"
rejected = "rejected"
canceled = "canceled"
submitted = "submitted"
class Room(Enum):
"""
Rooms at the conference venue, this can change year to year
"""
# Tutorial/workshop rooms
club_a = "Club A"
club_b = "Club B"
club_c = "Club C"
club_d = "Club D"
club_e = "Club E"
club_h = "Club H"
# Conference rooms
forum_hall = "PyCharm (Forum Hall)"
terrace_2a = "Terrace 2A"
terrace_2b = "Terrace 2B"
north_hall = "North Hall"
south_hall_2a = "South Hall 2A"
south_hall_2b = "South Hall 2B"
exhibit_hall = "Exhibit Hall"
# Other rooms
open_space = "Open Space"
class EventType(Enum):
SESSION = "session"
BREAK = "break"