Skip to content

Commit 1779160

Browse files
committed
Added in-dev code
1 parent 927a389 commit 1779160

17 files changed

+1031
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,8 @@ dmypy.json
154154
# Cython debug symbols
155155
cython_debug/
156156

157+
APIKEY.config
158+
157159
# PyCharm
158160
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159161
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore

AP.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## AP Weight is a item used to determin the strength of the AP class, from 1 to 5
2+
## AP Calculus, Chemistry, and Physics (Including all variants) are considered to be a 5
3+
## AP Precalcus, etc, are considered to be a 4
4+
## AP CSA, AP CSP, all language, US History, Literature and English, is considered to be a 3
5+
## AP Art and other relatively bad APs are consdiered to be a 1
6+
class apClass :
7+
APweight = 2
8+
9+
def __init__(self, score) :
10+
self.score = score
11+
self.apValue = score*self.APweight/10
12+
13+
class APCSA(apClass) :
14+
APweight = 3
15+
16+
class APCalc(apClass) :
17+
APweight = 5
18+
19+
## AP Foreign Language is a "catch-all" phrase for AP Chinese, AP Japanese, AP Spanish, AP French, AP Latin, etc.
20+
class APForeignLanguage(apClass) :
21+
APWeight = 3

chathistory.json

Whitespace-only changes.

colleges.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
class college :
2+
baseRequirement = 0
3+
softRequirement = 0
4+
5+
def __init__(self) -> None:
6+
pass
7+
8+
9+
class tier1College(college) :
10+
def __init__(self) -> None:
11+
super().__init__()
12+
13+
class tier2College(college) :
14+
def __init__(self) -> None:
15+
super().__init__()
16+
17+
class tier3College(college) :
18+
def __init__(self) -> None:
19+
super().__init__()
20+
21+
class tier4College(college) :
22+
def __init__(self) -> None:
23+
super().__init__()
24+
25+
class tier5College(college) :
26+
def __init__(self) -> None:
27+
super().__init__()

data.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"first_run" : true
3+
}

extracurricular.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class sports :
2+
def __init__(self) -> None:
3+
pass

honors.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class honors :
2+
honorsValue = 0
3+
def __init__(self) -> None:
4+
pass

0 commit comments

Comments
 (0)