> For the complete documentation index, see [llms.txt](https://alfredo-reyes-montero.gitbook.io/tello-dji/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alfredo-reyes-montero.gitbook.io/tello-dji/frameworks/python/tellopy.md).

# Tellopy

This is a python package which controlls DJI toy drone 'Tello'. The major portion of the source code was ported from the driver of GOBOT project. For original golang version and protocol in detail, please refer their blog post at

<https://gobot.io/blog/2018/04/20/hello-tello-hacking-drones-with-go>

## How to install

You can install stable version from PyPI.

```
$ pip install tellopy
```

Or install from the source code.

```
$ git clone https://github.com/hanyazou/TelloPy 
$ cd TelloPy
$ python setup.py bdist_wheel
$ pip install dist/tellopy-*.dev*.whl --upgrade
```

## Documents

Please see the API docstring.

```
$ python
>>>import tellopy
>>>help(tellopy)
Help on package tellopy:
...
```
