The automation framework for Python
Project description
robocorp-tasks
robocorp-tasks
is a Python framework designed to simplify the development of Python automations.
Why
While Python is widely used in the automation world, many solutions end up being ad-hoc, making it difficult to navigate different projects and keep up with the features required for analysing the results of such automations afterwards.
How
robocorp-tasks
provides a runner for running tasks that offers logging out of the box for Python code (showing method calls, arguments, assigns, etc) by leveraging robocorp-log
, and managing the lifecycle for running such tasks.
Getting started
Replace the code in your __main__
with a method that has the name of your task (which should not have parameters) and decorate it with the @task
decorator, like this:
i.e.:
from robocorp.tasks import task
@task
def my_task():
...
Call your task using the command line below, customizing the directory and task name as needed:
python -m robocorp.tasks run <path/to/file.py or directory> -t <task_name>
Note: if you have only one defined task in your target, the -t <task_name>
option is not needed.
Note: the task name is the name of the method decorated with @task
.
Note: if a directory is given, only files named *task*.py
will be used for collection.
Note: in the current version only one task can be run per invocation. If more than one task is found an error will be given and no tasks will be run.
View the log results in output/log.html
.
Guides
API Reference
Explore our API for extensive documentation.
Changelog
A list of releases and corresponding changes can be found in the changelog.
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 robocorp_tasks-3.1.1.tar.gz
.
File metadata
- Download URL: robocorp_tasks-3.1.1.tar.gz
- Upload date:
- Size: 34.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1017-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a866861da0135230738ba70b591fe23b7abad08e8e21a03ffe08b413a56526cb |
|
MD5 | 10d4c556084f482d7a16d7304124a3d4 |
|
BLAKE2b-256 | cafb3aa0c717da63c9614f4af0c53f858ba0a47917a7e2af895c957839ed367c |
Provenance
File details
Details for the file robocorp_tasks-3.1.1-py3-none-any.whl
.
File metadata
- Download URL: robocorp_tasks-3.1.1-py3-none-any.whl
- Upload date:
- Size: 42.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1017-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b40a810ebf110e8e212e155b3c232c2b271abdd18074b91c6393d1c5b840a7c |
|
MD5 | b3e2e04ceea715d9640beea5a92828eb |
|
BLAKE2b-256 | 64630ee8be9ee4f539f657b243d29b83105b3bad18f8c668e1640ea04973b3a9 |