An open API service indexing awesome lists of open source software.

https://github.com/flutterwiz/uav_monitoring_platform

MET Advanced Technology Systems
https://github.com/flutterwiz/uav_monitoring_platform

Last synced: about 1 month ago
JSON representation

MET Advanced Technology Systems

Awesome Lists containing this project

README

          

# UAV Monitoring Platform

This project is a Python application for monitoring UAV (Unmanned Aerial Vehicle) activities using a Flask API.

## Installation

1. Install dependencies if they are not already installed (e.g., Flask, etc.).

2. Run the Flask application:

```bash
python app.py
```

The application will start running at `http://127.0.0.1:5000`.

## Usage

1. **API Endpoints:**

- `/api/drones/`: Retrieve a list of drones.
- `/api/tasks/`: Create a new task.
- `/api/tasks//`: Retrieve details of a specific task.
- `/api/tasks//execute/`: Execute a task.

2. **Testing Endpoints:**

The `test_api.py` file contains functions to test the API endpoints. Run the tests using:

```bash
python test_api.py
```