Metadata-Version: 2.1
Name: spreadsheetsmalldemo
Version: 0.0.1
Summary: Convert WebElement into pdf
Author: Daniel Rubens
Author-email: danielrubensdaniel@gmail.com
Keywords: python,rpa,robocorp,pdf,html,conversor
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# HTMLConversor

HTMLConversor is a Python class that automates the process of converting sales data from an intranet website to a PDF file. It utilizes the Robot Framework's RPA library for web automation.

## Features

- Log in to the intranet website.
- Download sales data stored in an Excel file.
- Fill in a sales form with data from the Excel file.
- Collect sales results and export them as a PDF file.
- Log out from the intranet website.

## Installation

1. Make sure you have Python installed on your system.
2. Install the required dependencies using pip


## Usage

```python
from HTMLConversor import HTMLConversor

# Initialize HTMLConversor
converter = HTMLConversor()

# Convert sales data to PDF
converter.to_pdf()

