python-ardrone is a Python library for controlling the Parrot AR.Drone 2.0 over a network.
import ardrone
drone = ardrone.ARDrone()
drone.takeoff()
drone.land()
print(drone.navdata['demo']['battery'])
drone.image.show()
drone.halt()
A Python library for controlling the Parrot AR.Drone 2.0 over a network
PythonMIT