Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glop102/webautotender
A Framework and WebUI to automate longer term tasks. Like Cron but with a minor scripting language and state.
https://github.com/glop102/webautotender
Last synced: about 1 month ago
JSON representation
A Framework and WebUI to automate longer term tasks. Like Cron but with a minor scripting language and state.
- Host: GitHub
- URL: https://github.com/glop102/webautotender
- Owner: glop102
- Created: 2024-05-01T18:29:52.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-07-22T03:39:19.000Z (6 months ago)
- Last Synced: 2024-11-03T18:51:52.937Z (3 months ago)
- Language: Python
- Size: 496 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WebAutotender
Essentially this is another take on a CI pipeline, but for general processsing and not code development.This is intended to be a more general and more useful rep0lacment for my RSS Feed automator which did processing on RSS Feed data and the configuration was in a text file.
### General Usage
There are two main items that you will interact with; Workflows and Instances.
Workflows are static but contain the steps that the processing will take.
Instances contain state, and follow the steps of its given Workflow.By default, nothing happens in the program. There are currently no triggers to autonomously react to triggers.
So first, make a Workflow that will be your own custom trigger - eg polls periodically to check for RSS Feed updates.
Then make an instance of that Workflow that will actually run and do the polling.Second you make a workflow that handles processing the trigger - eg grabbing something from the feed and doing something.
The triggering instance needs to have a step to spawn a new instance, but using the processing workflow.### Test Env Setup
```
python -m venv venv
pip install uvicorn fastapi
source venv/bin/activate
```