An open API service indexing awesome lists of open source software.

https://github.com/easy-rpa/openframework

Open Framework is a collection of open-source Java libraries for Robotic Process Automation (RPA) designed to be used with EasyRPA platform.
https://github.com/easy-rpa/openframework

java rpa rpa-robots

Last synced: 3 days ago
JSON representation

Open Framework is a collection of open-source Java libraries for Robotic Process Automation (RPA) designed to be used with EasyRPA platform.

Awesome Lists containing this project

README

          

# EasyRPA Open Framework

### Table of Contents
* [Introduction](#introduction)
* [Usage](#usage)
* [Libraries](#libraries)
* [Examples](#examples)
* [Contributing](#contributing)
* [License](#license)

## Introduction

The Robotic Process Automation (RPA) supposes the doing of things in a way as human does it, via UI elements. But the
work with different document formats or services such as Excel, PDF, Google Docs, etc. can be done without actual
manipulation with UI elements. If RPA platform supports describing of robot scenarios based on the one of popular
program language like Java, the automation of these things can be done using tens of existing functional libraries
and APIs. Such approach allows significantly speedup the robot work and increase performance. At the same time, if you
are not familiar with these libraries it takes much time to find them and investigate. Moreover, the found
functionality will be poorly adapted for usage in the code of robot scenarios. As result the using of functional
libraries and APIs can become a nightmare.

**EasyRPA Open Framework** is a collection of open-source Java-libraries for Robotic Process Automation designed to be
used with [EasyRPA](http://easyrpa.eu) platform. It keeps in one place libraries to work with most popular document
formats and services. The functionality is clear and easy to use with minimal amount of preparation or configuration
steps in the code that ``significantly simplifies development of RPA processes.

The project is:
- 100% Open Source
- Optimized for EasyRPA platform
- Accepting external contributions

![License](https://img.shields.io/github/license/easy-rpa/openframework?color=blue)

## Usage

EasyRPA Open Framework consist of several independent libraries. All of them are deployed on Maven Central repository.

In order to use any of EasyRPA Open Framework's library you need simply add it as a dependency in your Maven POM file.
E.g.:
```xml

eu.easyrpa
easy-rpa-openframework-email
1.0.0

```

Additionally, to let libraries collaborate with RPA platform it's necessary to add as dependency corresponding adapter.
Since this framework initially was intended and optimized to work with EasyRPA platform currently only adapter for
EasyRPA platform is implemented and supported.

![mavenVersion](https://img.shields.io/maven-central/v/eu.easyrpa/easy-rpa-adapter-for-openframework)
```xml

eu.easyrpa
easy-rpa-adapter-for-openframework
2.7.0

```

> There is no limitation to implement similar adapter for any other RPA platform that uses Java program language for
> describing of robot scenarios but it's out of this project scope.

## Libraries

The EasyRPA Open Framework includes following libraries:


Name
Latest version
Description


Database
Maven Central

Functionality to work with remote databases (MySQL, PostgreSQL, Oracle, DB2, MS SQL Server).



Email
Maven Central

Functionality to work with mailboxes and email messages.



Excel
Maven Central

Functionality to work with Excel documents.



Google Services
Maven Central

Functionality to perform authentication, authorization and instantiation of Google Workspace API client
services like Drive, Sheets, Calendar etc.



Google Drive
Maven Central

Functionality to work with Google Drive files and folders.



Google Sheets
Maven Central

Functionality to work with Google Sheets.


## Examples

Please refer to [Examples page](examples) to see the full list of examples of using EasyRPA Open Framework
libraries.

## Contributing

Found a bug and it is necessary to make a fast fix? Wants to add a critical feature? Interested in contributing? Head
over to the [Contribution guide](.github/CONTRIBUTING.md) to see where to get started.

## License
This project is open-source and licensed under the terms of the [Apache License 2.0](https://apache.org/licenses/LICENSE-2.0).