FitnessCenter Management System
FitnessCenter Management System
SURAPET
COMPUTER SCIENCE
BATCH No.
BONAFIDE CERTIFICATE
Date: ……………………..
Apart from the efforts of me, the success of any project depends largely
on the encouragement and guidelines of many others. I take this opportunity
to express my gratitude to the people who have been instrumental in the
successful completion of this project.
The guidance and support received from all the members who
contributed and who are contributing to this project, was vital for the success
of the project. I am grateful for their constant support and help.
TABLE OF CONTENT:
1. ABSTRACT
2. SYSTEM CONFIGURATION
3. INTRODUCTION
4. OBJECTIVES OF THE PROJECT
5. PROPOSED SYSTEM
6. LIBRARIES AND FUNTIONS USED
7. SOURCE CODE
8. OUTPUT
9. CONCLUSION
10. BIBILOGRPHY
ABSTRACT:
In many Gyms, the payment receipts are in paper
format. So it is very difficult for both gym members to
keep all the paper receipts safely and to gym trainer to
keep reminding for the fee receipts. Sometimes it
creates a trouble when members lost their receipts. The
other problem that can be faced by a gym owner is that
if he/she wants to inform any message related to
working or non working days of gym, manually sending
message become difficult . If there is online application
available these problems can be solved.
SYSTEM CONFIGURATION:
Software Requirements:
PROPOSED SYSTEM:
In the gym management system, after the planning and
analysis phase of the system gets completed. Then the
next phase required to transform the collected required
system information into a structural blueprint which will
serve as a reference while constructing the working
system. It is a phase when most of the risks and errors
unveiled so it’s is good practice to take care of this thing
from the start. This is a fully-fledged system that will be
the backbone of the whole management of the gym so
ignoring the risk or error is not an option as later it can
make a greater form of itself. So, it is better to minimize
the problems faced by both staff and the manager in the
Organization.
SOURCE CODE:
class Member:
def __init__(self, name, email, phone):
self.name = name
self.email = email
self.phone = phone
self.classes = []
class FitnessClass:
def __init__(self, name, time, capacity):
self.name = name
self.time = time
self.capacity = capacity
self.members = []
class FitnessStudio:
def __init__(self):
self.members = []
self.classes = []
def view_members(self):
print("Members:")
for member in self.members:
print(f"{member.name} ({member.email}, {member.phone})")
def view_classes(self):
print("Classes:")
for fitness_class in self.classes:
print(f"{fitness_class.name} ({fitness_class.time},
{fitness_class.capacity})")
# Example usage
studio = FitnessStudio()
while True:
print("\nFitness Studio Management System")
print("1. Add member")
print("2. Remove member")
print("3. View members")
print("4. Add class")
print("5. Remove class")
print("6. View classes")
print("7. Assign member to class")
print("8. Track attendance")
print("9. Exit")
OUTPUT:
Fitness Studio Management System
1. Add member
2. Remove member
3. View members
4. Add class
5. Remove class
6. View classes
8. Track attendance
9. Exit
Members:
Classes:
a (5:00, 5)
end
CONCLUSION:
Gym management system project objective of this
project was to build a program for maintaining gym
management system project details of all gym
management system project members, employees and
inventor. Gym management system project system
developed is able to meet all gym management system
project basic requirements. Gym management system
project management of gym management system
project records (both members and employees) will be
also benefited by gym management system project
proposed system, as it will automate gym management
system project whole procedure, which will reduce gym
management system project workload. Gym
management system project security of gym
management system project system is also one of gym
management system project prime concerns.
BIBILOGRPHY:
Computer Science With Python by Sumita Arora for
Class 11& 12.
https://www.w3schools.com/python/
https://www.tutorialspoint.com/python/index.htm