Metadata-Version: 2.1
Name: drone-api-client
Version: 0.2.3
Summary: Drone Api Python Client
Home-page: https://github.com/Slamnlc/drone-api-client
Author: Biriukov Maksym
Author-email: maximbirukov77@gmail.com
License: UNKNOWN
Download-URL: https://github.com/Slamnlc/drone-api-client/archive/refs/tags/v0.2.3.tar.gz
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

## drone-api-client ##

drone-api-client - is a client for provide integration with Drone server

General information about [Drone server](https://docs.drone.io/api/overview/)

**Requirements**

- requests

**Installation**

```shell
pip install drone-api-client
```

**Configuration**

```shell
from drone_api_client.drone_api_client import DroneApi
drone = DroneApi('your_host', 'your_token', 'repository_name')
```

**Features in version: 0.2.2**

- Supported api:
    - cron
    - secrets
    - user
    - users
    - builds
    - repos
- Change repository name without initialization new class instance

**TODO**

- Add support:
    - templates

**Usage examples**

```shell
cron_jobs = drone.cron.get_cron_list()
secrets = drone.secrets.get_secrets()
```


