Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
Latest commit
392 lines (311 loc) · 9.76 KB
/
Copy pathapp.py
File metadata and controls
392 lines (311 loc) · 9.76 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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
# pylint: disable=E1120
# See: https://github.com/streamlit/streamlit/issues/1536
# See: https://discuss.streamlit.io/t/error-no-value-for-argument-body-in-method-call-vs-code/1851/6
importos
importtime
importjson
importsqlite3
fromdatetimeimportdatetime
importstreamlitasst
importpandasaspd
importnumpyasnp
importaltairasalt
importrequests
fromgenerate_dbimportGitHistoryConverter
fromsettingsimportConfig, TERM_CODES_TO_CONFIG
#
# Data and term configuration
#
ROOT='./'
TERM_CODES= {
'Foothill, Winter 2021' : '202131',
'De Anza, Winter 2021' : '202132',
'Foothill, Fall 2020' : '202121',
'De Anza, Fall 2020' : '202122',
'Foothill, Summer 2020' : '202111',
'De Anza, Summer 2020' : '202112',
}
# Workaround for a timezone bug in streamlit
# ORIGINAL_TIMEZONE = time.tzname[time.daylight]
# # os.environ['ORIG_TZ'] = time.tzname[time.daylight]
# try:
# ORIGINAL_TIMEZONE = time.tzname[1]
# # os.environ['ORIG_TZ']
# except IndexError:
# ORIGINAL_TIMEZONE = time.tzname[0]
# print(ORIGINAL_TIMEZONE)
# https://github.com/streamlit/streamlit/issues/1061#issuecomment-642057212
os.environ['TZ'] ='UTC'
#
# Data generator
#
progress_bar=None
defsetup_progress_bar(name):
globalprogress_bar
st.sidebar.text(name)
progress_bar=st.sidebar.progress(0)
defupdate_progress_bar(value):
progress_bar.progress(value)
defgenerate_data(settings, interval, full_reset):
st.sidebar.markdown('### Generating Data')
delos.environ['TZ']
# os.environ['TZ'] = ORIGINAL_TIMEZONE
GitHistoryConverter(
settings,
Config(interval, full_reset),
update_progress=update_progress_bar,
setup_progress=setup_progress_bar
).convert()
os.environ['TZ'] ='UTC'
st.caching.clear_cache()
st.balloons()
#
# Database Utilities
#
@st.cache(allow_output_mutation=True)
defconnect_db(term):
# TODO: check thread safety
conn=sqlite3.connect(f'{ROOT}db/temp_{term}.sqlite3', check_same_thread=False)
c=conn.cursor()
returnc
@st.cache(hash_funcs={sqlite3.Cursor:id})
defdata_exists(c):
tableExists=c.execute(
'SELECT name FROM sqlite_master WHERE type="table" AND name="classes"'
).fetchone()
iftableExistsandtableExists[0]:
returnTrue
returnFalse
#
# Queries
#
@st.cache(allow_output_mutation=True, hash_funcs={sqlite3.Cursor:id})
defget_all_classes(c):
returnc.execute('''
SELECT
time,
SUM(seats),
SUM(wait_seats),
COUNT(case status when "Open" then 1 else null end) as open_classes,
COUNT(case status when "Waitlist" then 1 else null end) as waitlist_classes,
COUNT(case status when "Full" then 1 else null end) as full_classes
FROM classes
GROUP BY time;
''').fetchall()
@st.cache(allow_output_mutation=True, hash_funcs={sqlite3.Cursor:id})
defget_total_classes(c):
returnc.execute('''
SELECT
time,
COUNT(CRN)
FROM classes
GROUP BY time;
''').fetchall()
@st.cache(allow_output_mutation=True, hash_funcs={sqlite3.Cursor:id})
defcount_times(c):
returnc.execute('SELECT COUNT(time) FROM classes;').fetchone()
@st.cache(allow_output_mutation=True, hash_funcs={sqlite3.Cursor:id})
defget_available_crn(c):
returnc.execute('SELECT DISTINCT CRN FROM classes;').fetchall()
# TODO: hash
# NOTE: this does not currently work beause we do not store dept, course, and section
defget_one_class(c, dept, course, section):
returnc.execute('SELECT * FROM classes WHERE dept = ? and course = ? and section = ?', [dept, course, section]).fetchall()
# TODO: hash
defget_one_class_by_crn(c, crn):
returnc.execute('SELECT * FROM classes WHERE CRN = ?', [crn]).fetchall()
#
# Utilities
#
# Create a date from an SQLite datetime string
defdt(date_string):
returndatetime.strptime(date_string, '%Y-%m-%d %H:%M:%S')
#
# Streamlit App
#
# Sidebar page navigation
st.sidebar.markdown('## NAVIGATION')
page=st.sidebar.radio('Select a page:', ['Home', 'API', 'Quickstart', 'About'])
# Home page, with all its graphs
ifpage=='Home':
'''
# Data Analysis
### By [Open Course API](https://github.com/OpenCourseAPI/)
####
Tip: Use the sidebar to change the term and control other settings.
'''
# Sidebar settings
st.sidebar.markdown('## SETTINGS')
term=st.sidebar.selectbox(
'Choose a term: ', list(TERM_CODES.keys())
)
term_config=TERM_CODES_TO_CONFIG[TERM_CODES[term]]
# show_debug_info = st.sidebar.checkbox('Show debug information')
show_advanced_options=st.sidebar.checkbox('Show advanced options')
# Data generation options
st.sidebar.markdown('## DATA')
interval=60
ifshow_advanced_options:
interval=st.sidebar.slider('Interval time (in minutes)', value=60, min_value=5, max_value=60, step=5)
ifst.sidebar.button('Update'):
generate_data(term_config, interval, False)
ifst.sidebar.button('Regenerate'):
generate_data(term_config, interval, True)
# Main Page Content
# Load database
c=connect_db(TERM_CODES[term])
# Generate data if necessary
ifnotdata_exists(c):
generate_data(term_config, interval, True)
# Get all class data aggregated by time
class_data=get_all_classes(c)
times= [dt(x[0]) forxinclass_data]
# total_times = countTimes(c)[0]
l=len(class_data)
start_date=landclass_data[0][0]
end_index= (l-1) or0
end_date=landclass_data[end_index][0]
f'''
## {term}
Selected term data info:
| Term | (selected term) |
| --- | --- |
| Start | {dt(start_date).strftime('%b %d, %Y %I:%M %p')} |
| End | {dt(end_date).strftime('%b %d, %Y %I:%M %p')} |
'''
'''
## All Classes
### Raw Data
'''
df=pd.DataFrame(
[x[1:] forxinclass_data],
index=times,
columns=['Seats', 'Wait Seats', 'Open Classes', 'Waitlist', 'Full']
)
df
'''
### Open Seats By Time
'''
df=pd.DataFrame(
[x[1:3] forxinclass_data],
index=times,
columns=['Seats', 'Wait Seats']
)
st.line_chart(df)
df2=pd.DataFrame(
[x[1:3] forxinclass_data],
index=pd.DatetimeIndex(times),
columns=['Seats', 'Wait Seats']
# )
).resample('D').mean()
df=pd.DataFrame(
[x[1:3] forxinclass_data],
index=pd.DatetimeIndex(times),
columns=['Seats', 'Wait Seats']
# ).shift()
).resample('D').mean().shift()
st.line_chart(df.subtract(df2))
'''
### Class Status By Time
'''
df=pd.DataFrame(
[x[3:6] forxinclass_data],
index=times,
columns=['Open', 'Waitlist', 'Full']
)
st.area_chart(df)
'''
### Total Class Count By Time
'''
total_classes=get_total_classes(c)
df=pd.DataFrame(
[x[1:] forxintotal_classes],
index=[dt(x[0]) forxintotal_classes],
columns=['Classes']
)
st.line_chart(df)
'''
### View Course History
'''
# dept = st.text_input('Department', 'CS')
# course = st.text_input('Course', '1A')
# section = st.text_input('Section', '1Z')
# crs = get_one_class(c, dept, course, section)
crn=st.text_input('Enter a CRN', 10152)
crs=get_one_class_by_crn(c, crn)
ifcrsandlen(crs) >0:
df=pd.DataFrame(
[x[3:5] forxincrs],
index=[dt(x[0]) forxincrs],
columns=['Seats', 'Wait Seats']
)
st.line_chart(df)
else:
'CRN not found! Available CRN:'
# ', '.join([str(x[0]) for x in get_available_crn(c)])
df=pd.DataFrame(get_available_crn(c))
df
'''
### That's it for now!
Try changing the term above, or check back again later!
Or, head over to [opencourse.dev](https://opencourse.dev).
'''
# Owl API (playground, etc.)
ifpage=='API':
'''
# Owl API [deprecated]
### More at [opencourse.dev:3000](https://opencourse.dev:3000)
## Playground
'''
PREFIX='https://opencourse.dev:3000'
endpoint=st.text_input('Enter an API url:', value='/fh/single?dept=CS&course=1A')
response=requests.get(PREFIX+endpoint)
response.raise_for_status()
try:
json=response.json()
st.json(response.json())
except:
st.text(response.text)
df=pd.DataFrame(sum(list(dict(json).values()), []))
df
# Quickstart page (guides for buliding your own analysis)
ifpage=='Quickstart':
'''
# Quickstart
## Build Your Own
Interested in building your own analysis? We are too!
Get started by opening `app.py` in a code editor, and try adding some stuff.
For example:
'''
withst.echo():
# Title and text
st.subheader('Me vs. Others')
st.write('This is a random but cool graph about me! What do you think?')
# Line chart
df=pd.DataFrame(
[(i, pow(1.5, i)) foriinrange(11)],
columns=['People', 'Me']
)
st.line_chart(df)
# About page
ifpage=='About':
text='''
<style>
.footer {
color: #999;
}
.footer a {
color: #4e8dc7 !important;
}
</style>
# Open Course API
<img src="https://avatars0.githubusercontent.com/u/40309595?s=200&v=4" width="80px" />
####
Website: https://opencourse.dev/
GitHub: https://github.com/OpenCourseAPI/
####
<span class="footer">Made with ❤️ by [Madhav Varshney](https://github.com/madhavarshney)</span>
'''
st.markdown(text, unsafe_allow_html=True)
### [](https://github.com/OpenCourseAPI/)
####