-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.py
452 lines (403 loc) · 19 KB
/
Home.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
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
import asyncio
import datetime
import random
import sys
import time
import pandas as pd
import streamlit as st
import extra_streamlit_components as stx
sys.path.append("RITScraping2.0/src")
from RITScraping import SisScraper, exam_micro, sis_micro, validate_usn
from common import *
from tools import sub_lists, grade_estimates
st.set_page_config(page_title="Calculla - GPA Calculator", page_icon="📊", layout="centered")
local_css("styles.css")
local_html("index.html")
st.title("Calculla - GPA Calculator")
st.write(
f"""
<p>
Follow the instructions and see the how its calculated
<a class="name" target="_self" href="/Instructions_and_Working">Click Here</a>.
And to check the terms <a class="name" target="_self" href="/Terms_and_Disclaimer">Click Here</a>
</p>
<p>
Check our blogs
<a class="name" href="https://amithm3.hashnode.dev/calculla-the-over-engineered-gpa-calculator">Here</a> and
<a class="name" href="https://shravanrevanna.hashnode.dev/calculla-the-next-level-gpa-calculator">Here</a>
to know more about the tool.
</p>
<p>
Repo Link: <a class="name" href={st.secrets.github_link}>Github</a>
<br/>
<a class="name" href={st.secrets.beta_link}>Join</a> as a beta tester
</p
""", unsafe_allow_html=True
)
st.write(f'Total Searches: {st.secrets.stats.stat[0]} | Unique Searches: {st.secrets.stats.stat[1]}')
grade_to_gp = {"O": 10, "A+": 9, "A": 8, "B+": 7, "B": 6, "C": 5, "P": 4, "F": 0}
tab1, tab2, tab3, tab4 = st.tabs(["Check CIE Marks", "Grades - Score", "Credit - GPA", "Simple - Calculator"])
crack_forbid_msg = """
**💨 Whoa, hold your horses! 🐴 What do you think you're doing?
🧐 Do you really think you can crack the creators' password with THEIR OWN fancy tool?
Let's face it, if the creators' password was a piñata, you wouldn't even be able to hit it with a baseball bat 😎.
But don't worry, we won't judge you for trying. 🫡"**
"""
@st.cache_data(ttl=60 * 60 * 12) # 12 hours
def get_stats(usn, dob):
sis_stats = sis_micro(usn, dob, st.secrets.ODD)
exam_stats = exam_micro(usn, st.secrets.EVEN)
return sis_stats, exam_stats
def brutes(usn):
async def brute():
async with SisScraper() as scraper:
return await scraper.brute_dob(usn)
return asyncio.run(brute()).split("-")
def log(usn, name, dob, easter, crack):
with open("data/logs.log" if st.secrets["cloud"] else "logs.txt", "a") as file:
if "prev_usn" not in st.session_state:
st.session_state.prev_usn = ""
if usn != st.session_state.prev_usn:
file.write(
write :=
f"[LOG] | {datetime.datetime.now()} | "
f"{usn} | {dob} | {name} | {f'token-{easter}' if crack else 'dob'}\n"
)
print(write)
usns = st.secrets.stats.usns
stat = st.secrets.stats.stat
if x := (a := f"{usn} {dob} {name}") not in usns: usns.append(a)
stat[0] = stat[0] + int(usn != st.session_state.prev_usn)
stat[1] += int(x)
stat[2] += int(name == 'CREATOR' and usn != st.session_state.prev_usn)
def deduct(easter):
eggs_name = st.secrets.easters["easter_eggs"]
eggs_span = st.secrets.easters["easter_eggs_counter"]
eggs_span[eggs_name.index(easter)] -= 1
def get_manager():
return stx.CookieManager()
cookie_manager = get_manager()
cookies = cookie_manager.get_all()
def valid_usn_state(usn, crack, easter, placeholder):
usn_in_cookies = False
cookie_usn = usn
cookie_dob = cookie_manager.get(cookie=cookie_usn)
# st.write(cookies)
if cookie_usn in cookies:
usn_in_cookies = True
year = int(usn[3:5]) + 2000
yyyy, mm, dd = year - 18, 1, 1
if usn_in_cookies and cookie_dob:
yyyy, mm, dd = map(int, cookie_dob.split("-"))
if crack:
if "easter_usn" not in st.session_state or st.session_state.easter_usn != usn:
st.session_state.easter_usn = usn
deduct(easter)
if usn in ["1MS21IS017", "1MS21CI049", "1MS21CI035"]:
st.error(crack_forbid_msg)
log(usn, "CREATOR", "huss-hh-hh", easter, crack)
crack = False
placeholder.empty()
dob = st.date_input("Enter DOB", datetime.date(yyyy, mm, dd))
else:
t = time.time()
yyyy, mm, dd = map(int, brutes(usn))
t = time.time() - t
dob = datetime.date(yyyy, mm, dd)
formatted_dob = dob.strftime("%d %B %Y")
if t < 5:
time.sleep(et := random.random() * 3 + 2)
t += et
placeholder.empty()
st.success(f"Cracked! in {t:.2f} seconds 🎉")
st.info(f"DOB: **{formatted_dob}**")
st.caption("Please use this tool with caution. We are not responsible for any misuse of this tool.")
else:
dob = st.date_input("Enter DOB", datetime.date(yyyy, mm, dd))
dob = str(dob)
get = st.button("Get Marks")
if usn_in_cookies:
get = True
if crack or get:
welcome = "Hey"
symbol = '<img width="30" vertical-align:sub ' \
'src="https://github.com/1999AZZAR/1999AZZAR/blob/main/resources/img/waving.gif?raw=true">'
if crack:
welcome = "Stalking"
symbol = "🕵️"
sis_stats, exam_stats = get_stats(usn, dob)
if not sis_stats:
st.warning("Invalid USN or DOB", icon="🚨")
else:
if usn in ["1MS21IS017", "1MS21CI049"]:
log(usn, "CREATOR", "huss-hh-hh", easter, crack)
else:
log(usn, sis_stats["name"], dob, easter, crack)
if not usn_in_cookies and not crack:
cookie_manager.set(cookie_usn, str(sis_stats["dob"]),
expires_at=datetime.datetime.now() + datetime.timedelta(days=40))
st.session_state.prev_usn = usn
st.markdown(
f"""<br>
<h3 style='text-align: center;'>{welcome} {sis_stats['name']} ! {symbol} <h3>
""", unsafe_allow_html=True
)
st.write(f"<h5 style='text-align: center;'>CIE Marks for Semester {sis_stats['sem']}</h5>",
unsafe_allow_html=True)
sub_codes, sub_names, sub_attds, sub_marks, sub_max_marks = sub_lists(sis_stats["marks"])
# table = pd.DataFrame(
# {"Subject": sub_names, "Marks": sub_marks},
# index=[j for j in range(1, len(sub_marks) + 1)]
# )
# st.markdown(table.style.set_table_styles(styles).to_html(), unsafe_allow_html=True)
st.write("<hr/>", unsafe_allow_html=True)
marks = sis_stats["marks"]
for code, m in marks.items():
name = m["sub"]
cies, ces = m["cies"], m["ces"]
with st.container():
m_dick = {f"C-{i + 1}": [v[0]] for i, v in enumerate(cies)}
m_dick.update({f"A-{i + 1}": [v[0]] for i, v in enumerate(ces)})
m_dick["Total"] = m['tot'][0]
table = pd.DataFrame(m_dick)
st.write(
f"<p class='submarks'>{name} - {code}</p>",
table.style.hide(axis="index").to_html(), "<hr/>",
unsafe_allow_html=True
)
st.write(
f"""
<h3 class="mt">Total CIE Marks: {sum(sub_marks)}/{sum(sub_max_marks)}<h3>
""", unsafe_allow_html=True
)
with st.expander("Show Attendance"):
st.markdown("""<h5 style='text-align: center;'>Attendance for this semester</h5> """,
unsafe_allow_html=True)
short_attendance = []
for j in sub_attds:
if j < 75: short_attendance.append({sub_names[sub_attds.index(j)]})
attendance = [str(j) + "%" for j in sub_attds]
table = pd.DataFrame(
{"Subject": sub_names, "Percentage": attendance},
index=[k for k in range(1, len(sub_marks) + 1)]
)
st.markdown(table.style.set_table_styles(styles_attd).to_html(), unsafe_allow_html=True)
if short_attendance:
st.write("")
st.write("Following Subjects have shortage of attendance")
for key in short_attendance:
remove = str(key).replace("{'", "").replace("'}", "")
st.warning(remove)
for _ in range(2): st.write("\n")
for _ in range(3): st.write("\n")
if exam_stats:
st.image(exam_stats["photo"], exam_stats["name"], use_column_width=True)
for _ in range(2): st.write("\n")
st.markdown("""<h5 style='text-align: center;'>The following are the SGPA's</h5> """,
unsafe_allow_html=True)
table = pd.DataFrame({
"SEM": [f"Semester {s}" for s in range(1, len(sis_stats["sgpas"]) + 1)],
"SGPA": [f"{s:.2f}" for s in sis_stats["sgpas"]]
})
st.markdown(table.style.set_table_styles(styles_gp).to_html(), unsafe_allow_html=True)
return usn, dob
def tab_1():
dob = placeholder = None
st.subheader("Check Internal Marks")
usn = st.text_input("Enter Valid USN", placeholder="1ms21is000").strip().upper()
easter = None
if " " in usn:
usn, easter = usn.split(maxsplit=1)
easter = easter.lower()
eggs_name = st.secrets["easters"]["easter_eggs"]
eggs_span = st.secrets["easters"]["easter_eggs_counter"]
crack = False
if easter in eggs_name:
if eggs_span[eggs_name.index(easter)]:
placeholder = st.empty()
with placeholder.container():
st.success(f"Yay! token-{easter} has been applied! 🎊")
st.info("Have a coffee while we try cracking the DOB")
crack = True
else:
st.success(f"Yay! **{easter}** is correct ! 🎉")
st.warning(
f"But unfortunately, the creator has temporarily suspended this token that cracks the DOB. "
f"How about trying another token?"
)
st.info("Please contact the **Admin** or try again later")
st.markdown(
"Contact the creators "
"Shravan <a class='name' href='https://wa.me/919945332995?text=Provide working token'>here 🚀</a>"
"or Amith <a class='name' href='https://wa.me/917019144708?text=Provide working token'>here 🚀</a>"
" to get new token 😉",
unsafe_allow_html=True
)
elif easter:
if "rick" in easter and "roll" in easter:
st.info("""
I'll never give you up, I'll never let you down,
I'll always be there, lurking around. 😁
""")
time.sleep(3)
st.write(f'''
<a href="https://pichost.pics/9FZ3M4">
<button>
Hurray! see next puzzle here
</button>
</a>
''', unsafe_allow_html=True)
else:
st.error("Nah ah ha ha")
st.warning("You didn't get the magic word!")
if validate_usn(usn):
usn, dob = valid_usn_state(usn, crack, easter, placeholder)
elif usn:
st.error('Invalid USN', icon="🚨")
return usn, dob
def tab_2(usn, dob):
st.subheader("Scoring & Prioritizing Criteria for All Subjects")
# st.caption(
# "Example: If you scored 46 in Internals then you need 88 in SEE to get O Grade. "
# "Coz half of SEE is added to internals. Now 46 + 44 = 90 which is minimum to get O grade"
# )
sub_codes = sub_names = sub_creds = sgpas = None
if dob:
sis_stats, exam_stats = get_stats(usn, dob)
if not sis_stats:
st.error("Invalid USN or DOB", icon="🚨")
else:
sub_codes, sub_names, sub_attds, sub_marks, sub_max_marks = sub_lists(sis_stats["marks"])
sgpas = sis_stats["sgpas"]
all_marks = sis_stats["marks"]
sub_creds = [sis_stats["creds"][k] for k in sub_codes]
tot_avg = []
for code, m in all_marks.items():
cies, ces = m["cies"], m["ces"]
ce = sum([v[2] for v in ces])
if len(cies) != 0:
cie_avg = sum([v[2] for v in cies]) / len(cies)
tot = cie_avg + ce
else:
tot = ce
tot_avg.append(tot)
priority = []
for i in range(len(sub_marks)):
score = ((sub_creds[i] * (sub_max_marks[i] - sub_marks[i])) + (tot_avg[i] - sub_marks[i]) + (
sub_marks[i] * 0.5) + (sub_creds[i] * 2))
priority.append(score)
zip_list = sorted(zip(sub_marks, sub_creds, sub_codes, sub_names, sub_attds, priority),
key=lambda k: (k[5]), reverse=True)
sub_marks, sub_creds, sub_codes, sub_names, sub_attds, priority = zip(*zip_list)
priority_score = [f"{m:.1f}" for m in priority]
table = pd.DataFrame({
"Subjects": sub_names,
"Internals": sub_marks,
"Priority Score": priority_score,
}, index=[i for i in range(1, len(sub_marks) + 1)])
st.caption(
"Prioritize subjects in the following order to get the best grades. "
"Scroll down to the bottom to see how the priority score is calculated.",
unsafe_allow_html=False)
st.markdown(table.style.set_table_styles(styles).to_html(), unsafe_allow_html=True)
st.write("<hr/>", unsafe_allow_html=True)
st.write(
"<p class='submarks'>"
"You will need to score the following minimum marks in SEE to get respective grades"
"</p>",
unsafe_allow_html=True)
grade_lists = grade_estimates(
sub_marks, sub_names,
**{"O": 90, "A+": 80, "A": 70, "B+": 60, "B": 55, "C": 50, "P": 40}
)
st.write("<hr/>", unsafe_allow_html=True)
for i, sn in enumerate(sub_names):
with st.container():
table = pd.DataFrame({k: [v[i]] for k, v in grade_lists.items()})
st.write(
f"<p class='submarks'>{sn} - {sub_marks[i]}</p>",
table.style.hide(axis="index").to_html(), "<hr/>",
unsafe_allow_html=True
)
st.info("Note down the expected grades from above and enter them in the next tab to calculate SGPA")
st.info(
"The **priority score** is calculated based on a weighted average of multiple factors, "
"including your CIE scores, the credit of the subject, "
"and the relative score of the student's score compared to the class average. "
"We have a formula that enables us to determine the degree of difficulty of a each subject, "
"based on the above factors. This allows us to calculate and sort subjects accordingly")
else:
st.warning("Enter your USN and DOB first", icon="⚠️")
return sub_names, sub_codes, sub_creds, sgpas, grade_lists
def tab_3(sub_names, dob, sub_creds, sgpas, grade_lists):
if dob and sub_creds:
st.subheader("Enter your Predicted Grade for each subjects")
st.caption(
"Mark the expected grades according to the previous tab and "
"click on calculate to get your final credits and SGPA"
)
grade_in_each = []
marks_grade = []
marks_in_each = []
for i, sn in enumerate(sub_names):
var = {k: v[i] for k, v in grade_lists.items()}
marks_in_each.append(var.values())
marks_in_each = [list(i) for i in marks_in_each]
# with st.form("Find GPA"):
for i, sn in enumerate(sub_names):
with st.container():
grade_in_each.append(st.radio(sn, ["O", "A+", "A", "B+", "B", "C", "P", "F"], horizontal=True))
table = pd.DataFrame({k: [v[i]] for k, v in grade_lists.items()})
for name in sub_names:
marks_in_grade = marks_in_each[sub_names.index(name)]
# grade_in_each.append(st.radio(name, ["O", "A+", "A", "B+", "B", "C", "P", "F"], horizontal=True))
marks_grade.append(st.radio(name, marks_in_grade, horizontal=True))
# if st.form_submit_button("Calculate"):
grade_point = [grade_to_gp[g] for g in grade_in_each]
weighted_gp = [i * j for i, j in zip(grade_point, sub_creds)]
total_credits_final = sum(weighted_gp)
st.write("")
st.write("<p class='mt'>Based on the above grades, this will be your final credits and SGPA</p>",
unsafe_allow_html=True)
table = pd.DataFrame({
"Subject": sub_names, "Grade": grade_in_each, "Credits": sub_creds,
"Grade Points": [f"{w}/{c * 10}" for w, c in zip(weighted_gp, sub_creds)]
})
st.write(table.style.set_table_styles(styles_gp).to_html(), unsafe_allow_html=True)
sgpa = total_credits_final / sum(sub_creds)
sgpa = round(sgpa, 3)
st.write(f"<h3 class='mt'>Your SGPA is: {sgpa:.3f}</h2>", unsafe_allow_html=True)
st.write(
f"<h3 class='mt'>Your CGPA is: {((sgpa + sum(sgpas)) / (1 + len(sgpas))):.3f}</h2>",
unsafe_allow_html=True
)
else:
st.error("Enter USN and DOB first", icon="🚨")
def home():
with tab1:
usn_, dob_ = tab_1()
with tab2:
sub_names, sub_codes, sub_creds, sgpas, grade_list = tab_2(usn_, dob_)
with tab3:
tab_3(sub_names, sub_codes, sub_creds, sgpas, grade_list)
with tab4:
st.subheader("How much is average CIE marks for 50?")
avg = st.slider("Average CIE marks", 0, 50, value=35, step=1)
to_score = (90 - avg) * 2
st.write("Following is the minimum marks you need to score in SEE to get respective grades")
grades = [to_score, to_score - 20, to_score - 40, to_score - 60, to_score - 80, to_score - 100]
for i in range(len(grades)):
if grades[i] > 100:
grades[i] = " "
grade_letter = ["O", "A+", "A", "B+", "B", "C"]
table_1 = pd.DataFrame({"Grade": grade_letter, "Marks": grades})
st.write(table_1.style.hide(axis="index").set_table_styles(styles).to_html(), unsafe_allow_html=True)
st.write("")
st.write("Here is how its calculated :")
st.write(
f"You scored {avg}, then you need {to_score} in SEE to get O Grade. "
f"Because half of {to_score} which is {to_score / 2} is added to {avg} equals to {(to_score / 2) + avg} "
f"and that is minimum to get O Grade"
)
if __name__ == '__main__':
home()