Simple task manager to handle execution of tasks in AWS or docker.
Project description
Simple Task Manager (STMGR)
This is a simple task manager to start processes on AWS/Docker or other platforms. The app includes classes to manage tasks on AWS, but you can implement additional handlers dynamically.
You only need to create a class to handle the task that you want to start and register it in a database (DDBB). Below, I'll compare STMGR with Celery (since it's widely used) to explain the key differences and help you make an informed choice. Another good choice is Dramatiq. For a simple comparison between STMGR and Celery check
Installation
This project can be installed using pip:
pip install simple-task-manager
Or it can be installed directly from git: pip install git+https://github.com/Fran-4c4/staskmgr
Usage and requirements
- First you need to configure the minimum parameters in order to run tasks. See Configuration
- Second you need a database to store configuration and task management. See table creation in folder config\ddbb_script.sql or Configuration scripts Now only postgresql is suported.
More info in github GitHub.
Adding handlers
In order to manage other types you need to create a class and an entry in DDBB or in your appconfig.json in the section task_handlers. When the task is retrieved from DDBB it will look the handler. Below is an example of the Test task handler.
"task_handlers": {
"TEST_MGR": {
"config": {
"task_handler": {
"name": "TestTaskHandler",
"path": "task_handlers",
"class": "TestTaskHandler",
"module": "test_task_handler",
"launchType": "INTERNAL",
"task_next_status":"FINISHED"
}
}
}
}
Test in local
Install using pip in your project using the next command and changing x.x.x version.
pip install "path_to_dist/dist/Simple_Task_Manager-x.x.x-py3-none-any.whl"
License
licensed under Apache License 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file simple_task_manager-1.5.19.tar.gz
.
File metadata
- Download URL: simple_task_manager-1.5.19.tar.gz
- Upload date:
- Size: 30.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11014229008e88e70b9c169dc60e9086ed235c6a3e61d5a4aff2e23a95168caf |
|
MD5 | de6d2d186d06711bb8cbb80ae9664cbf |
|
BLAKE2b-256 | 54d034464e73d10ba837d96322070b0a91a7c71a144c3cf4eae5cec0201fe143 |
File details
Details for the file simple_task_manager-1.5.19-py3-none-any.whl
.
File metadata
- Download URL: simple_task_manager-1.5.19-py3-none-any.whl
- Upload date:
- Size: 35.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74cf26daf222f2567c27903581a3dac0e9dd061251be79b2f3442b335abb26f8 |
|
MD5 | bd5d8889ca79bcde0002965cbb6d98b6 |
|
BLAKE2b-256 | 6ab71339aeb565880129d24d8bac05fbbb7b036130eac71200e100297979e5ed |