from djitellopy import Tello
drone = Tello()
drone.connect()

drone.takeoff()
drone.move_left(40)
drone.move_right(40)
drone.land()
