Greetings fellow reader.
I made a python program which runs locally, it takes an .xls file and performs some actions, and finally it exports another .xls file.
These are the libraries:
from selenium import webdriver
from PIL import Image
import pytesseract
import os
import openpyxl
from solve import solve_cap
from openpyxl import load_workbook
import cv2
import time
Right now, I want to make this program available to be used in a webpage, so anyone can upload an .xls file and will recieve back the modified file, either by mail or a temporary download link.
My problem is that I do not know how I can make this happen, my websites are on wordpress, so I would like to use wordpress in future, but if needed I can change the platform.
The initial idea was to run the script in a virtual environment, create a dedicated e-mail address for the program, and have a contact form on wordpress which sends the necesarry data to the email, after that I would parse the email, take the .xls, perform the necesarry actions and send it back.