Question

I am new to web programming

I need to develop a web page running on a server, that needs to show progress status of 10 threads simultaneously. Also I would require SQLite database integration.

Please tell me what are the options available for me for choosing a scripting language and web server [socket] development framework. Also suggest the most suitable.

Thanks for any help

Was it helpful?

Solution

Python would be an excellent choice. It has SQLite integrated as documented here.

Python also has the following features (and many others) integrated:

  • threading and synchronization
  • Networking (sockets)
  • lots of web server (and web pages, etc) handling options

Here is a page that discusses several different Python web server frameworks. Im not very familiar with it, but Ive heard lots of good things about Django.

Another excellent choice would be Ruby on Rails. Ruby is the scripting language and Rails is the Web Server Framework.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top