{"id":31588683,"url":"https://github.com/easy-rpa/openframework","last_synced_at":"2025-10-06T02:12:30.248Z","repository":{"id":37753031,"uuid":"469045864","full_name":"easy-rpa/openframework","owner":"easy-rpa","description":"Open Framework is a collection of open-source Java libraries for Robotic Process Automation (RPA) designed to be used with EasyRPA platform. ","archived":false,"fork":false,"pushed_at":"2024-11-06T21:22:10.000Z","size":79515,"stargazers_count":22,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-14T23:28:09.759Z","etag":null,"topics":["java","rpa","rpa-robots"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/easy-rpa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-12T10:08:38.000Z","updated_at":"2025-04-28T04:10:02.000Z","dependencies_parsed_at":"2024-10-28T10:14:53.801Z","dependency_job_id":null,"html_url":"https://github.com/easy-rpa/openframework","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/easy-rpa/openframework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easy-rpa%2Fopenframework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easy-rpa%2Fopenframework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easy-rpa%2Fopenframework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easy-rpa%2Fopenframework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/easy-rpa","download_url":"https://codeload.github.com/easy-rpa/openframework/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easy-rpa%2Fopenframework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278547821,"owners_count":26004775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","rpa","rpa-robots"],"created_at":"2025-10-06T02:12:28.724Z","updated_at":"2025-10-06T02:12:30.242Z","avatar_url":"https://github.com/easy-rpa.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cimg height=\"80px\" src=\"https://i.postimg.cc/FKDhP2kT/Easy-RPA-Full-Logo.png\"\u003e\n\n# EasyRPA Open Framework\n\n### Table of Contents\n* [Introduction](#introduction)\n* [Usage](#usage)\n* [Libraries](#libraries)\n* [Examples](#examples)\n* [Contributing](#contributing)\n* [License](#license)\n\n## Introduction\n\nThe Robotic Process Automation (RPA) supposes the doing of things in a way as human does it, via UI elements. But the \nwork with different document formats or services such as Excel, PDF, Google Docs, etc. can be done without actual \nmanipulation with UI elements. If RPA platform supports describing of robot scenarios based on the one of popular \nprogram language like Java, the automation of these things can be done using tens of existing functional libraries \nand APIs. Such approach allows significantly speedup the robot work and increase performance. At the same time, if you \nare not familiar with these libraries it takes much time to find them and investigate. Moreover, the found \nfunctionality will be poorly adapted for usage in the code of robot scenarios. As result the using of functional \nlibraries and APIs can become a nightmare. \n\n**EasyRPA Open Framework** is a collection of open-source Java-libraries for Robotic Process Automation designed to be \nused with [EasyRPA](http://easyrpa.eu) platform. It keeps in one place libraries to work with most popular document \nformats and services. The functionality is clear and easy to use with minimal amount of preparation or configuration \nsteps in the code that ``significantly simplifies development of RPA processes.\n\nThe project is:\n- 100% Open Source\n- Optimized for EasyRPA platform\n- Accepting external contributions\n\n![License](https://img.shields.io/github/license/easy-rpa/openframework?color=blue)\n\n## Usage\n\nEasyRPA Open Framework consist of several independent libraries. All of them are deployed on Maven Central repository.\n\nIn order to use any of EasyRPA Open Framework's library you need simply add it as a dependency in your Maven POM file. \nE.g.:\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eeu.easyrpa\u003c/groupId\u003e\n    \u003cartifactId\u003eeasy-rpa-openframework-email\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nAdditionally, to let libraries collaborate with RPA platform it's necessary to add as dependency corresponding adapter. \nSince this framework initially was intended and optimized to work with EasyRPA platform currently only adapter for \nEasyRPA platform is implemented and supported.\n\n![mavenVersion](https://img.shields.io/maven-central/v/eu.easyrpa/easy-rpa-adapter-for-openframework)\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eeu.easyrpa\u003c/groupId\u003e\n    \u003cartifactId\u003eeasy-rpa-adapter-for-openframework\u003c/artifactId\u003e\n    \u003cversion\u003e2.7.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n\u003e There is no limitation to implement similar adapter for any other RPA platform that uses Java program language for \n\u003e describing of robot scenarios but it's out of this project scope.  \n\n## Libraries\n\nThe EasyRPA Open Framework includes following libraries:\n\n\u003ctable\u003e\n    \u003ctr\u003e\n        \u003cth align=\"left\" width=\"150px\"\u003eName\u003c/th\u003e\n        \u003cth align=\"center\" width=\"160px\"\u003eLatest version\u003c/th\u003e\n        \u003cth align=\"left\"\u003eDescription\u003c/th\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd valign=\"top\"\u003e\u003ca href=\"/libraries/database\"\u003eDatabase\u003c/a\u003e\u003c/td\u003e\n        \u003ctd\u003e\u003cimg alt=\"Maven Central\" src=\"https://img.shields.io/maven-central/v/eu.easyrpa/easy-rpa-openframework-database\"\u003e\u003c/td\u003e\n        \u003ctd\u003e\n            Functionality to work with remote databases (MySQL, PostgreSQL, Oracle, DB2, MS SQL Server).\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd valign=\"top\"\u003e\u003ca href=\"/libraries/email\"\u003eEmail\u003c/a\u003e\u003c/td\u003e\n        \u003ctd\u003e\u003cimg alt=\"Maven Central\" src=\"https://img.shields.io/maven-central/v/eu.easyrpa/easy-rpa-openframework-email\"\u003e\u003c/td\u003e\n        \u003ctd\u003e\n            Functionality to work with mailboxes and email messages.\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd valign=\"top\"\u003e\u003ca href=\"/libraries/excel\"\u003eExcel\u003c/a\u003e\u003c/td\u003e\n        \u003ctd\u003e\u003cimg alt=\"Maven Central\" src=\"https://img.shields.io/maven-central/v/eu.easyrpa/easy-rpa-openframework-excel\"\u003e\u003c/td\u003e\n        \u003ctd\u003e\n            Functionality to work with Excel documents.\n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd valign=\"top\"\u003e\u003ca href=\"/libraries/google-services\"\u003eGoogle Services\u003c/a\u003e\u003c/td\u003e\n        \u003ctd\u003e\u003cimg alt=\"Maven Central\" src=\"https://img.shields.io/maven-central/v/eu.easyrpa/easy-rpa-openframework-google-services\"\u003e\u003c/td\u003e\n        \u003ctd\u003e\n            Functionality to perform authentication, authorization and instantiation of Google Workspace API client \n            services like Drive, Sheets, Calendar etc.\n        \u003c/td\u003e\n    \u003c/tr\u003e   \n    \u003ctr\u003e\n        \u003ctd valign=\"top\"\u003e\u003ca href=\"/libraries/google-drive\"\u003eGoogle Drive\u003c/a\u003e\u003c/td\u003e\n        \u003ctd\u003e\u003cimg alt=\"Maven Central\" src=\"https://img.shields.io/maven-central/v/eu.easyrpa/easy-rpa-openframework-google-drive\"\u003e\u003c/td\u003e        \n        \u003ctd\u003e\n            Functionality to work with Google Drive files and folders. \n        \u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd valign=\"top\"\u003e\u003ca href=\"/libraries/google-sheets\"\u003eGoogle Sheets\u003c/a\u003e\u003c/td\u003e\n        \u003ctd\u003e\u003cimg alt=\"Maven Central\" src=\"https://img.shields.io/maven-central/v/eu.easyrpa/easy-rpa-openframework-google-sheets\"\u003e\u003c/td\u003e        \n        \u003ctd\u003e\n            Functionality to work with Google Sheets. \n        \u003c/td\u003e\n    \u003c/tr\u003e\n\u003c/table\u003e \n\n## Examples\n\nPlease refer to [Examples page](examples) to see the full list of examples of using EasyRPA Open Framework \nlibraries.\n\n## Contributing\n\nFound a bug and it is necessary to make a fast fix? Wants to add a critical feature? Interested in contributing? Head \nover to the [Contribution guide](.github/CONTRIBUTING.md) to see where to get started.\n\n## License\nThis project is open-source and licensed under the terms of the [Apache License 2.0](https://apache.org/licenses/LICENSE-2.0).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feasy-rpa%2Fopenframework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feasy-rpa%2Fopenframework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feasy-rpa%2Fopenframework/lists"}