-
Notifications
You must be signed in to change notification settings - Fork 0
/
form_data.py
226 lines (218 loc) · 6.11 KB
/
form_data.py
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# https://forms.gle/ro1Mo6yds7CSHiM19
import json
import requests
from jamsinclub import settings
def reload_form(name):
reload_data = requests.get(settings.conf['extform_url'] + "?type=reload&form=" + name)
result = json.loads(reload_data.content)
if 'error' in result:
raise ConnectionError(result['error'])
getform_data = requests.get(settings.conf['extform_url'] + "?type=getform&form=" + name)
result = json.loads(getform_data.content)
if 'error' in result:
raise ConnectionError(result['error'])
return result
# https://forms.gle/ro1Mo6yds7CSHiM19 <- 이 설문지로부터 들어오는 데이터 (더미)
form_data = {
"title": "한국어 예시 설문지",
"description": "이건 설명이에요! / Extform by HURDOO\n**마크다운** ~~문법도~~ __지원__*합니다*!",
"items": [
{
"title": "섹션 제목",
"helpText": "설명",
"id": 1198406534,
"type": "SECTION_HEADER",
"extra": {}
},
{
"title": "객관식 질문",
"helpText": "",
"id": 984420844,
"type": "MULTIPLE_CHOICE",
"extra": {
"choices": [
{
"value": "옵션 1"
},
{
"value": "옵션 2"
},
{
"value": "옵션 3"
}
],
"hasOtherOption": True,
"required": True
}
},
{
"title": "체크박스",
"helpText": "",
"id": 527425354,
"type": "CHECKBOX",
"extra": {
"choices": [
{
"value": "옵션 1"
},
{
"value": "옵션 2"
},
{
"value": "옵션 3"
}
],
"hasOtherOption": True,
"required": False
}
},
{
"title": "드롭다운",
"helpText": "이건 설명이에오",
"id": 1754718226,
"type": "LIST",
"extra": {
"choices": [
{
"value": "옵션 1"
},
{
"value": "옵션 2"
},
{
"value": "옵션 3"
}
],
"required": True
}
},
{
"title": "단답형",
"helpText": "",
"id": 2042360110,
"type": "TEXT",
"extra": {
"required": True
}
},
{
"title": "장문형 (5글자 이상)",
"helpText": "",
"id": 40010923,
"type": "PARAGRAPH_TEXT",
"extra": {
"required": True
}
},
{
"title": "선형 배율",
"helpText": "",
"id": 1729172976,
"type": "SCALE",
"extra": {
"leftLabel": "맨 왼쪽엔 이렇게 들어가유",
"rightLabel": "최대",
"lowerBound": 1,
"upperBound": 5,
"required": True
}
},
{
"title": "객관식 그리드 (1열 중복 불가)",
"helpText": "",
"id": 1747983985,
"type": "GRID",
"extra": {
"rows": [
"행1",
"행 2",
"행 3"
],
"columns": [
"1 열",
"열 2",
"열 3",
"열 4"
],
"required": True
}
},
{
"title": "체크박스 그리드 (행마다 필수응답 아님)",
"helpText": "",
"id": 1505186486,
"type": "CHECKBOX_GRID",
"extra": {
"rows": [
"행1",
"행 2",
"행 3",
"행 4"
],
"columns": [
"1 열",
"열 2",
"열 3"
],
"required": False
}
},
{
"title": "날짜 (연도 포함)",
"helpText": "",
"id": 1863290637,
"type": "DATE",
"extra": {
"includesYear": True,
"required": True
}
},
{
"title": "날짜 (시간 포함)",
"helpText": "",
"id": 1912205331,
"type": "DATETIME",
"extra": {
"includesYear": True,
"required": True
}
},
{
"title": "시간",
"helpText": "",
"id": 1172953185,
"type": "TIME",
"extra": {
"required": True
}
},
{
"title": "시간 (기간)",
"helpText": "",
"id": 1268965762,
"type": "DURATION",
"extra": {
"required": True
}
},
{
"title": "ㅁㄴㅇㄹ",
"helpText": "ㅁㄴㅇㄹ",
"id": 1362699492,
"type": "SECTION_HEADER",
"extra": {}
},
{
"title": "이미지",
"helpText": "",
"id": 1845279172,
"type": "IMAGE",
"extra": {
"image": "(이미지 데이터 - base64/ 형식 표시자 없이 바로 raw data부터 시작함)",
"imageType": "image/png",
"alignment": "LEFT"
}
}
],
"token": "6e47a452-cf14-404a-9f63-7b3617b34275"
}