Metadata-Version: 2.4
Name: ardrone-sdk
Version: 0.4.4
Summary: A Python library for controlling the Parrot AR.Drone 2.0 over a network
Author: Lily Foster, Miguel Villa Florán
Author-email: Lily Foster <lily@lily.flowers>, Miguel Villa Florán <miguel.villafloran@gmail.com>
License-Expression: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: System :: Hardware :: Hardware Drivers
Requires-Dist: av
Requires-Dist: pillow
Requires-Python: >=3.9
Project-URL: Source, https://github.com/lilyinstarlight/python-ardrone
Project-URL: Tracker, https://github.com/lilyinstarlight/python-ardrone/issues
Description-Content-Type: text/markdown

# python-ardrone

A Python library for controlling the Parrot AR.Drone 2.0 over a network.

## Usage

```python
import ardrone

drone = ardrone.ARDrone()

drone.takeoff()
drone.land()

print(drone.navdata['demo']['battery'])

drone.image.show()

drone.halt()
```

## Thanks

Thanks to Bastian Venthur for making the beginnings on which this library was based at https://github.com/venthur/python-ardrone!
