Update src/streamlit_app.py
Browse files- src/streamlit_app.py +51 -44
src/streamlit_app.py
CHANGED
|
@@ -13,50 +13,57 @@ category = st.selectbox("Category", ['GOPEN', 'GSC', 'GSEBC', 'LOPEN', 'LST', 'L
|
|
| 13 |
'GOBC', 'LSEBC', 'LSC', 'GNTA', 'LNTB', 'GNTB', 'GNTC', 'LNTA',
|
| 14 |
'GNTD', 'LNTC', 'LNTD', 'ORP'])
|
| 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 |
rank = st.number_input("Rank", min_value=1, value=1500)
|
| 62 |
percentage = st.number_input("Percentage", min_value=0.0, max_value=100.0, value=75.0)
|
|
|
|
| 13 |
'GOBC', 'LSEBC', 'LSC', 'GNTA', 'LNTB', 'GNTB', 'GNTC', 'LNTA',
|
| 14 |
'GNTD', 'LNTC', 'LNTD', 'ORP'])
|
| 15 |
|
| 16 |
+
course_list = [
|
| 17 |
+
'Civil Engineering', 'Computer Science and Engineering',
|
| 18 |
+
'Information Technology', 'Electrical Engineering',
|
| 19 |
+
'Electronics and Telecommunication Engg',
|
| 20 |
+
'Instrumentation Engineering', 'Mechanical Engineering',
|
| 21 |
+
'Computer Engineering', 'Electrical Engg[Electronics and Power]',
|
| 22 |
+
'Artificial Intelligence (AI) and Data Science', 'Industrial IoT',
|
| 23 |
+
'Artificial Intelligence and Data Science', 'Chemical Engineering',
|
| 24 |
+
'Computer Science and Engineering(Data Science)',
|
| 25 |
+
'Production Engineering', 'Textile Technology',
|
| 26 |
+
'Electronics and Computer Engineering',
|
| 27 |
+
'Computer Science and Engineering(Artificial Intelligence and Machine Learning)',
|
| 28 |
+
'Agricultural Engineering', 'Computer Science and Design',
|
| 29 |
+
'Plastic and Polymer Engineering', 'Electronics Engineering',
|
| 30 |
+
'Electrical and Electronics Engineering',
|
| 31 |
+
'Artificial Intelligence and Machine Learning',
|
| 32 |
+
'Electronics Engineering ( VLSI Design and Technology)',
|
| 33 |
+
'Electronics and Communication(Advanced Communication Technology)',
|
| 34 |
+
'Artificial Intelligence', 'Production Engineering[Sandwich]',
|
| 35 |
+
'Electronics and Telecommunication Engg[Direct Second Year Second Shift]',
|
| 36 |
+
'Petro Chemical Engineering', 'Computer Science and Technology',
|
| 37 |
+
'Electronics and Communication Engineering', 'Data Science',
|
| 38 |
+
'Mechatronics Engineering', 'Civil and infrastructure Engineering',
|
| 39 |
+
'Bio Medical Engineering', 'Electronics and Computer Science',
|
| 40 |
+
'Computer Science and Engineering (Internet of Things and Cyber Security Including Block Chain Technology)',
|
| 41 |
+
'Cyber Security', 'Mechanical & Automation Engineering',
|
| 42 |
+
'Food Technology', 'Paper and Pulp Technology',
|
| 43 |
+
'Computer Technology', 'Aeronautical Engineering',
|
| 44 |
+
'Mining Engineering', 'Computer Science and Engineering (IoT)',
|
| 45 |
+
'Oil Fats and Waxes Technology', 'Paints Technology',
|
| 46 |
+
'Instrumentation and Control Engineering',
|
| 47 |
+
'Automation and Robotics', 'Robotics and Automation',
|
| 48 |
+
'Structural Engineering', 'Civil and Environmental Engineering',
|
| 49 |
+
'Automobile Engineering', 'Robotics and Artificial Intelligence',
|
| 50 |
+
'Manufacturing Science and Engineering',
|
| 51 |
+
'Metallurgy and Material Technology',
|
| 52 |
+
'Computer Science and Business Systems',
|
| 53 |
+
'Computer Engineering (Software Engineering)',
|
| 54 |
+
'Computer Engineering[Direct Second Year Second Shift]',
|
| 55 |
+
'Computer Science and Information Technology',
|
| 56 |
+
'Fashion Technology', 'Textile Plant Engineering',
|
| 57 |
+
'Computer Science and Engineering (Artificial Intelligence and Data Science)',
|
| 58 |
+
'Electrical and Computer Engineering', 'Printing Technology',
|
| 59 |
+
'Mechanical Engineering[Sandwich]',
|
| 60 |
+
'Computer Science and Engineering (Artificial Intelligence)'
|
| 61 |
+
]
|
| 62 |
+
|
| 63 |
+
# Sort alphabetically
|
| 64 |
+
course_list_sorted = sorted(course_list)
|
| 65 |
+
|
| 66 |
+
course = st.selectbox("Category", course_list_sorted)
|
| 67 |
|
| 68 |
rank = st.number_input("Rank", min_value=1, value=1500)
|
| 69 |
percentage = st.number_input("Percentage", min_value=0.0, max_value=100.0, value=75.0)
|