Let me preface with saying I am a beginner and have been learning Python on my own because I got bored with bash.
I’ve been searching google but came up with nothing really. I just want to be able to have a user hit a button and then the script does what it does. So a way to embed my script in a box on a blog or something and you hit a button and bam! you get the output of the script.
Is there something that looks like what this site has: http://www.learnpython.org/
whereas you click a button and the script outputs to a window?
If you are looking to run relatively simple scripts, you can try something like Brython, which will interpret you script using JavaScript in the browser. If you are looking for more complex, server-side scripting, you should try looking into one of the Python web frameworks like Django.