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
- Host: GitHub
- URL: https://github.com/aplbrain/neuvue-client
- Owner: aplbrain
- License: apache-2.0
- Created: 2021-09-28T18:11:08.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-10T14:17:47.000Z (over 1 year ago)
- Last Synced: 2025-04-01T03:41:26.348Z (about 1 year ago)
- Language: Python
- Size: 808 KB
- Stars: 3
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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 | ✅ | ✅ | ✅ | ✅ | ⛔