CC Report
CC Report
By
1 Introduction
2 Application
3 Methodology
4 Code
5 Results
6 Conclusion
Introduction
This report presents the design and implementation of a Student Management System developed as
a part of the Cloud Computing project. The primary objective of this project is to leverage cloud-based
technologies to efficiently manage and maintain student records, streamline administrative tasks, and
enhance data accessibility and security.
Cloud computing has revolutionized the way data is stored, processed, and accessed. By hosting the
Student Management System on the cloud, the project ensures scalability, high availability, and ease
of access from any location. The system is designed to handle core functionalities such as student
registration, academic record management, attendance tracking, and performance analysis. The
integration of cloud infrastructure not only simplifies system maintenance but also provides robust
data backup and recovery mechanisms.
This report outlines the system architecture, cloud deployment strategy, tools and technologies used,
and the practical implications of adopting a cloud-based approach. The project demonstrates the
potential of cloud computing in modernizing educational administration and offers a scalable solution
suitable for institutions of various sizes
Application
The hosted application offers several functionalities:
• Purpose: Ensures only registered users can access or modify student data.
• Functionalities:
Register:
Buttons:
• ID: 1
• name: "Shreya"
• b_name: "Comps"
Each student entry is stored with a unique key generated by Firebase.
Fields include: ID: Student ID, name: Student name, b_name: Branch name
• Accessibility: Users can access the application from anywhere via a web browser without
requiring local installations.
• Collaboration: Teams can work on shared datasets without transferring files manually
Methodology
The project is a Student Management System built using Python, Tkinter for GUI, and
Firebase for backend database and authentication. Below is the detailed
methodology:
1. Authentication Module
5. Workflow
Code
1.Firebase Configuration: const firebaseConfig = { apiKey:
"AIzaSyCn_J7ddCwVNJhNs1e8_elvJkv3OCb9TTs", authDomain:
"student-management-syste-37a5a.firebaseapp.com",
databaseURL:"https://student-management-syste-37a5a-
appId: "1:624907262540:web:a1d7c348a69373903db2e9"
};
class
StudentManagementSystemd:
self.root = root
self.root.geometry("800x700+50+50")
firebaseConfig = {
"apiKey": "YOUR_API_KEY",
"authDomain": "student-8ec27.firebaseapp.com",
"databaseURL": "https://student-8ec27-default-rtdb.firebaseio.com/",
"projectId": "student-8ec27",
"storageBucket": "student-8ec27.appspot.com",
"messagingSenderId": "827852263219",
"appId": "1:827852263219:web:2896d18208ed510b103846",
"measurementId": "G-QZG2Y66DEE"
font=f)
Name", font=f)
width=10)
load_data(self):
self.tree.delete(item)
Treeview student_records =
self.db.child("fb").get().val() if student_records:
root = Tk()
app = StudentManagementSystemd(root)
root.mainloop()
StudentManagementSystemd
# Firebase configuration
firebaseConfig = {
"apiKey": "AIzaSyDdkCDL4VEFTCKdD_P24A5ichL8U-zfD2E",
"authDomain": "student-8ec27.firebaseapp.com",
"databaseURL": "https://student-8ec27-default-rtdb.firebaseio.com/",
"projectId": "student-8ec27",
"storageBucket": "student-8ec27.appspot.com",
"messagingSenderId": "827852263219",
"appId": "1:827852263219:web:2896d18208ed510b103846",
"measurementId": "G-QZG2Y66DEE"
# Initialize Firebase fb =
initialize_app(firebaseConfig) auth =
Management System")
root.geometry("400x180+500+200")
def register():
new_window=Toplevel(root)
app=student10(new_window)
def login():
email = entry_email.get()
password = entry_password.get()
try:
user = auth.sign_in_with_email_and_password(email,
def open_main_window():
new_window=Toplevel(root)
app=student(new_window)
def login1():
email = entry_email.get()
password = entry_password.get()
try:
user = auth.sign_in_with_email_and_password(email,
open_main_window1(): new_window=Toplevel(root)
app=StudentManagementSystemd(new_window) label_email =
This is the login screen of the Student Management System. It allows existing users to securely
access the system by entering their registered email and password. The authentication
process is handled using Firebase Authentication. When the user clicks the Login button, the
app sends the credentials to Firebase to verify them. If the credentials match, the user is
redirected to the dashboard; otherwise, an error message is shown. This step ensures that
unauthorized users cannot access the student records
Register Page:
The registration screen enables new users to create an account. It includes fields for entering
a name, email, and password. Once the Register button is clicked, the entered data is sent to
Firebase Authentication where the user account is created and stored securely. This also
includes error handling (e.g., if an email already exists or password is weak). The registered
user can then proceed to log in and manage student data, maintaining secure access control.
This is the main dashboard where users can input and manage student data. It contains text
fields for Student ID, Name, and Branch. The Add Data button sends this information to
Firebase Realtime Database or Firestore and stores it in a structured format. There’s also an
Update Data feature that modifies an existing record if the ID already exists. This form allows
users to perform Create and Update operations in the student database, forming the heart of
the system's CRUD functionality.
On the same screen, the system also features an integrated chatbot that allows users to
interact with the student data using natural language. Users can type questions like “How
many students are in IT?” or “List all CSE students,” and the chatbot processes these queries
using predefined logic. It communicates with Firebase, retrieves the relevant data based on
the question, and responds with accurate results in a conversational style. This feature adds
an intelligent and modern layer to the system, making it more accessible—especially for users
who prefer asking questions instead of navigating through forms and tables. The chatbot
enhances usability and makes data access faster, especially for summarizing or filtering
information.
Firebase Service (Authentication):
In the Student Management System, the authentication module plays a vital role in ensuring
secure access to the application. It allows only verified users to log in using their email and
password credentials, which are managed through Firebase Authentication. When a user
signs up or logs in, their identity is verified by Firebase, and upon successful authentication,
they are granted access to the system. This helps protect sensitive data such as student
records from unauthorized access. Each authenticated user is assigned a unique User UID,
which the system uses to identify and manage user-specific data within the Realtime
Database. For example, once a user logs in, the system can retrieve and display their
personalized dashboard, such as student data, branch details, and even chatbot interaction
history.
This project demonstrates how cloud technologies like Firebase can significantly simplify the
development process of data-driven applications. It is ideal for academic or institutional purposes
where student data must be managed efficiently. Overall, Firebase not only accelerates development
but also ensures reliability, real-time performance, and scalability—making it a perfect choice for
modern educational tools.
By leveraging Firebase, this system eliminates the need for traditional server-side infrastructure,
reducing costs and development time. Its cloud-based architecture ensures that data is always backed
up and accessible from anywhere, making it ideal for institutions operating in hybrid or remote
learning environments. The smooth integration of user authentication and real-time data handling
provides a professional-level experience while keeping the application lightweight and easy to
maintain. This project serves as a solid foundation for future enhancements such as role-based access,
analytics, and mobile app integration.