Skip to main content

RPA automation libraries for RPAForge

Project description

🇷🇺 Русский

RPAForge Libraries

PyPI version Python Support

RPA automation libraries for RPAForge.

Included Libraries

Library Activities Description Status
DesktopUI 20+ Windows desktop automation (Win32, WPF) 🟡 In Progress
WebUI 15+ Web automation with Playwright 🟡 In Progress
Excel 8+ Excel file operations 🟡 In Progress
DataFrames 28+ Tabular data — filter, sort, join, aggregate (Polars) ✅ Stable
Database 6+ Database operations with SQLAlchemy 🟡 In Progress
OCR 5+ Text recognition with Tesseract/EasyOCR 🟡 In Progress
Credentials 4+ Secure credential management 🟡 In Progress
File 8+ File and folder operations 🟡 In Progress
HTTP 5+ REST API requests 🟡 In Progress
DateTime 6+ Date/time utilities 🟡 In Progress
String 7+ String manipulation 🟡 In Progress
Variables 4+ Variable management and scoping 🟡 In Progress
Flow 4+ Control flow — if, while, for 🟡 In Progress
Spy 3+ Live UI element inspector overlay 🟡 In Progress

Installation

# Core libraries (no optional deps)
pip install rpaforge-libraries

# With optional dependencies
pip install rpaforge-libraries[desktop]    # Desktop UI automation (pywinauto)
pip install rpaforge-libraries[web]        # Web UI automation (playwright)
pip install rpaforge-libraries[ocr]        # OCR support (tesseract, easyocr)
pip install rpaforge-libraries[excel]      # Excel operations (openpyxl)
pip install rpaforge-libraries[dataframes] # Tabular data (polars)
pip install rpaforge-libraries[all]        # All dependencies

Usage

DataFrames

from rpaforge_libraries.DataFrames import DataFrames

df = DataFrames()

# Load data
df.read_csv("sales.csv", frame_name="sales")

# Filter, sort, aggregate
df.filter_rows("sales", "amount", ">", "1000", result_frame="big_sales")
df.sort("big_sales", by=["amount"], descending=True, result_frame="sorted")
total = df.aggregate("sorted", "amount", "sum")

# Export
df.write_csv("sorted", "top_sales.csv")

Desktop UI

from rpaforge_libraries.DesktopUI import DesktopUI

ui = DesktopUI()
ui.open_application("notepad.exe")
ui.wait_for_window("Notepad", timeout="10s")
ui.input_text("Hello from RPAForge!")
ui.close_window()

Web UI

from rpaforge_libraries.WebUI import WebUI

web = WebUI()
web.open_browser("https://example.com/login")
web.input_text("id:username", "myuser")
web.input_text("id:password", "mypass")
web.click_button("id:login-btn")
web.wait_for_page_load()
web.close_browser()

Excel

from rpaforge_libraries.Excel import Excel

xls = Excel()
xls.open_workbook("invoice.xlsx")
data = xls.read_worksheet("Sheet1")
for row in data:
    print(f"Processing: {row['Customer']}")
xls.close_workbook()

License

Apache License 2.0

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

rpaforge_libraries-0.3.6.tar.gz (83.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rpaforge_libraries-0.3.6-py3-none-any.whl (60.3 kB view details)

Uploaded Python 3

File details

Details for the file rpaforge_libraries-0.3.6.tar.gz.

File metadata

  • Download URL: rpaforge_libraries-0.3.6.tar.gz
  • Upload date:
  • Size: 83.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rpaforge_libraries-0.3.6.tar.gz
Algorithm Hash digest
SHA256 e1e962a79d0b219fc3bbef3fc3bc1fb4ac9bb69c852d590bb1c2f91d895bedbb
MD5 7bbd0c71cfec7ea35c6a3994da80dbef
BLAKE2b-256 c11082c5f182d636de7e5011cce18a757535bdcfc7ad4a21e2b3a4915f411000

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpaforge_libraries-0.3.6.tar.gz:

Publisher: release.yml on chelslava/rpaforge

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rpaforge_libraries-0.3.6-py3-none-any.whl.

File metadata

File hashes

Hashes for rpaforge_libraries-0.3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 99565464cdee6cc6070c6327f8f0ce0d2b3a10d76d123ebc4eacf4b2e05c5bb8
MD5 e82aa0db8cb7243230162883d8a71182
BLAKE2b-256 2f9466074297f7d54629f2e6b6ec8899a8fafc240c5752808861586e026eb7be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpaforge_libraries-0.3.6-py3-none-any.whl:

Publisher: release.yml on chelslava/rpaforge

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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