├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── easytello ├── __init__.py ├── stats.py └── tello.py └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezrafielding/easyTello/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezrafielding/easyTello/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezrafielding/easyTello/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezrafielding/easyTello/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezrafielding/easyTello/HEAD/README.md -------------------------------------------------------------------------------- /easytello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezrafielding/easyTello/HEAD/easytello/__init__.py -------------------------------------------------------------------------------- /easytello/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezrafielding/easyTello/HEAD/easytello/stats.py -------------------------------------------------------------------------------- /easytello/tello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezrafielding/easyTello/HEAD/easytello/tello.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezrafielding/easyTello/HEAD/setup.py --------------------------------------------------------------------------------