system that managing N number of elevators.
run server ( Scroll down), server will manage all Elevators
send command using client ( Scroll down), client will pass commands from users
floor functionality- make code prettier
- better use of threads
- more comments
- ..........
https://realpython.com/python-logging/
python3 sockets/server_socket.py
python3 start_program.py
prompt> s - shutdown
python3 sockets/client_skeleton.py s
press on floor
prompt> <floor_up>/<floor_down:command string> <floor_number:number>
python3 sockets/client_skeleton.py floor_up 5
press from inside of elevator
prompt> <el_button_press:command string> <elevator_number> <button_number>
python3 sockets/client_skeleton.py el_button_press 5 4
pyreverse start_program.py elevatorClass.py floorsClass.py sockets/client_skeleton.py sockets server_socket.py