Skip to main content

The automation framework for Python

Project description

robocorp-tasks

robocorp-tasks is a Python framework to simplify RPA development in Python.

Note: The current version is still alpha but its public API is already meant to be stable and new releases should keep backward compatibility.

Why

While Python is widely used in the RPA world, many solutions end up being ad-hoc, making it difficult to navigate different projects or achieve comprehensible logging out of the box.

How

robocorp-tasks provides a runner for RPA tasks that offers logging out of the box by leveraging robocorp-log, as well as the necessary lifecycle management for running such tasks.

Installation

To install robocorp-tasks, use the following command:

pip install robocorp-tasks

Usage

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():
    ...
    
  1. 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.

  1. View the log results in output/log.html.

Auto logging customization

Following the initial steps outlined above should be sufficient to get comprehensive logging for all user code executed. However, note that it won't log calls from libraries by default, as it may be difficult to separate the libraries that are important for a project from those that are just noise.

To add custom logging for libraries like rpaframework, Selenium and others, create a pyproject.toml file and place it in the root of your project. Then, customize the [tool.robocorp.log] section to add log_filter_rules.

log_filter_rules is a list of dictionaries where entries may be added to specify how to handle logging for a particular module.

There are three different logging configurations that may be applied:

  • exclude (default for library code): skips logging a module.
  • full_log (default for user code): logs a module with full information, such as method calls, arguments, yields, local assigns, and more.
  • log_on_project_call logs only method calls, arguments, return values and exceptions, but only when a library method is called from user code. This configuration is meant to be used for library logging.

Example of pyproject.toml where the rpaframework and selenium libraries are configured to be logged:

[tool.robocorp.log]

log_filter_rules = [
    {name = "RPA", kind = "log_on_project_call"},
    {name = "selenium", kind = "log_on_project_call"},
    {name = "SeleniumLibrary", kind = "log_on_project_call"},
]

Note that when specifying a module name to match in log_filter_rules, the name may either match exactly or the module name must start with the name followed by a dot.

This means that, for example, RPA would match RPA.Browser, but not RPAmodule nor another.RPA.

Log output customization

By default, the log output will be saved to an output directory, where each file can be up to 1MB and up to 5 files are kept before old ones are deleted. When the run finishes, a log.html file will be created in the output directory containing the log viewer with the log contents embedded.

However, you can customize the log output by changing the output directory, maximum number of log files to keep, and maximum size of each output file. You can do this through the command line by passing the appropriate arguments when running python -m robocorp.tasks run.

For example, to change the output directory to my_output, run:

python -m robocorp.tasks run path/to/tasks.py -o my_output

You can also set the maximum number of output files to keep by passing --max-log-files followed by a number. For example, to keep up to 10 log files, run:

python -m robocorp.tasks run path/to/tasks.py --max-log-files 10

Finally, you can set the maximum size of each output file by passing --max-log-file-size followed by a size in megabytes (e.g.: 2MB or 1000kb).

For example, to set the maximum size of each output file to 500kb, run:

python -m robocorp.tasks run path/to/tasks.py --max-log-file-size 500kb

License: Apache 2.0

Copyright: Robocorp Technologies, Inc.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

robocorp_tasks-0.1.5.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

robocorp_tasks-0.1.5-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file robocorp_tasks-0.1.5.tar.gz.

File metadata

  • Download URL: robocorp_tasks-0.1.5.tar.gz
  • Upload date:
  • Size: 12.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.10.6 Linux/5.15.0-1035-azure

File hashes

Hashes for robocorp_tasks-0.1.5.tar.gz
Algorithm Hash digest
SHA256 4b6d6de1f0953578f178c67cc63b3bc435d5ebd7f48a162005a9df4761606eb0
MD5 256314c1bbb1a493ba1a1ae85b350536
BLAKE2b-256 aeaaddbf0eddd0fe5bd1e3d37c57d7b6cc377d2821ee0080a951ec1df8df8f41

See more details on using hashes here.

Provenance

File details

Details for the file robocorp_tasks-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: robocorp_tasks-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.10.6 Linux/5.15.0-1035-azure

File hashes

Hashes for robocorp_tasks-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 302c65fe456dd57b5f8de64a0cef15dd8aaa5b46481311edb73e19882415df2f
MD5 4d87313f4ece04c15cd694eb2d31054b
BLAKE2b-256 bb4dd72467ecabd4c35440e017a26fa281c3f8e3c73c0139aaa239bb83db545f

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page