Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/raelzeraxd/bot_excel

a excel automation in python using openpyxl and pyautogui
https://github.com/raelzeraxd/bot_excel

Last synced: 9 days ago
JSON representation

a excel automation in python using openpyxl and pyautogui

Awesome Lists containing this project

README

        

# bot_excel
a excel automation in python using openpyxl and pyautogui that take each line from xlsx file and insert into a program

## how it works?
**program.py** - a simple GUI to represent some program that you have in your company or something like that

**app.py** - reads the file tables.xlsx and insert each line into the program.py

**mouse.py** - this is a file that i used to get the coordinates for the pyautogui, if the program dont work really well in your machine use this file to get the correct coordinates and replace in the app.py

## how to use?
* git clone https://github.com/RaelzeraXD/bot_excel
* cd bot_excel
* pip3 install -r requirements.txt
* ./program.py
* ./app.py

after execute the app.py click on the window program.py

## problems
if you are running in linux execute this command to avoid x11 problems
* xhost +local:$USER

in some distributions the package manager dont let you execute the pip3 without using the virtual enviroment to avoid that, you can use at your own risks the follow command
* pip3 install -r requirements.txt --break-system-packages