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

https://github.com/aplbrain/neuvue-client

python client for neuvue-queue
https://github.com/aplbrain/neuvue-client

Last synced: about 1 year ago
JSON representation

python client for neuvue-queue

Awesome Lists containing this project

README

          


neuvue-client


a python client for neuvuequeue

# Installation

```shell
pip3 install git+https://github.com/aplbrain/neuvue-client.git
```

# Configuration

Create a configuration file in your home directory `~/.neuvueclient/neuvue-secret.txt` with your Google Oauth token:

```
[CONFIG]
token =
```

# Usage

First, create a new neuvuequeue instance:

```python
import neuvueclient as Client

C = Client.NeuvueQueue("http://neuvuequeue-server/")
```

Now you can do all that your corazón desires:

```python
C.get_tasks(sieve={"namespace": "split"})
```

# Implementation Progress

| Object | POST | GET | LIST | DELETE | PATCH |
|----------|------|-----|------|--------|-------|
| Point | ✅ | ✅ | ✅ | ✅ | ✅
| Task | ✅ | ✅ | ✅ | ✅ | ✅
| DifferStack | ✅ | ✅ | ✅ | ✅ | ⛔
| AgentsJob | ✅ | ✅ | ✅ | ✅ | ⛔