Metadata-Version: 2.1
Name: DroneBlocksTelloSimulator
Version: 0.0.2
Summary: Program a drone with the DroneBlocks Simulator and then deploy to Tello
Home-page: https://github.com/dbaldwin/DroneBlocks-Python-Simulator
Author: Dennis Baldwin
Author-email: db@droneblocks.io
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/dbaldwin/DroneBlocks-Python-Simulator/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: paho-mqtt (>=1.6.1)

# DroneBlocks-Python-Simulator

## Installation process

## Show commands

## Example missions

## Sim to real drone
```
pip install DroneBlocksTelloSimulator
```

```
import asyncio
from DroneBlocksTelloSimulator import SimulatedDrone

async def main():
    drone = SimulatedDrone('a5f921f4-f2f0-446d-b216-1a4e34ab4fa0')
    await drone.connect()
    await drone.takeoff()
    await drone.land()

asyncio.run(main())
```

