0

So I have a Python text-processing script, and I need to create a web page with two textareas.

The first one is for data input, and the second one is for (async) on-the-fly displaying the result of passing the data to my script. What is the easiest/fastest way to achive this with Python?

2 Answers 2

1

I believe using bottle micro web framework whould be the easiest and fastest. you could also checkout flask microwebframework which is pretty much the same idea

Sign up to request clarification or add additional context in comments.

Comments

1

You can use lightweight web framework like bottle to create a web server. The server then serves a html that contains some javascript firing AJAX requests containing the data to be processed to your webserver, which in turn responds with the processed data.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.