How to build a web app user can pay to automate their social media with selenium?

09/25/2021 18:44 mad332#1
Hey! I have a selenium script that allow people to download and run on their computer to automate social media interactions.

What exactly do I need to make it work with front end / back end, so a user can pay for the service and use it by logging in?

This is in python.

But srsly don't know where to go or how to connect the dots! Rly lost...
09/30/2021 21:25 123liebdich#2
You could check if the user payed and then you could execute your python based selenium script with parameters e.g. the website of the user you would to the interaction.
10/14/2021 14:55 Keystah!#3
Quote:
Originally Posted by mad332 View Post
Hey! I have a selenium script that allow people to download and run on their computer to automate social media interactions.

What exactly do I need to make it work with front end / back end, so a user can pay for the service and use it by logging in?

This is in python.

But srsly don't know where to go or how to connect the dots! Rly lost...
Possible solution: Create a backend with any Python web app framework (Flask, Django, ...) and serve the required variables for finding HTML elements only to registered users via a REST Api.

Hope that makes sense.

Keystah!