Convert Python Bot Into A Software (PC APP)

samkalt

Regular Member
Joined
Jan 3, 2024
Messages
279
Reaction score
61
I create a python bot (script) and i want to sell it, but I want to turn into a software with subscription like 1 month , 2 month subscription.

With the help of AI will be best, if it's available, because it can save time.

I hope you understand.
 
I create a python bot (script) and i want to sell it, but I want to turn into a software with subscription like 1 month , 2 month subscription.

With the help of AI will be best, if it's available, because it can save time.

I hope you understand.
You need to create a GUI , use pyside5. Then integrate a serial key
 
The subscription part (serial key) can be cracked even with online validation method.
You can implement the best method
 
You could create a web app around it. Then the user registers at your website. Takes a subscription there and you will run the script for them on your server.
 
OP : Do you make it? If not, i can help you .
 
Some PyQT or other gui
+ user system
+ auth0
 
As others said, you need a GUI first. I've not sold my own scripts, although I've reviewed enough software in BHW's marketplace to tell you that nobody has ever sent me just a script with no GUI.

I personally use PyQt5. There's PyQt6, although I heard you can find more information on 5 in the event that you run into issues.

Really, you just want it to be easy to use as your customer isn't likely going to want to download VS Code and interact with the script that way.
 
If your logic runs on client side, even if you make some sort of authentication step, anyone can reverse engineer it and crack it so everyone can use it.
If you want to avoid that, you need to develop a SaaS that runs on your server, otherwise your hard work will be public for anyone.
 
Back
Top