Python Forum

Full Version: Excel Like Web Application using Python
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am new to Python, I would like to start with creating a Web application which pulls data from Sql Server table and the web application should have a functionality of an Excel like, where any update/delete/Insert should directly affect the Database,I have basic Idea of Python and have Installed PYCharm and had few workouts. Please guide me here on how to start with Python and complete this.
Thanks,
Rav
Hi,

first, this is everything but easy. So there is for sure no simple guide to that. Second, you for sure need JavaScript on the front end to do the instant editing and sending modified data to the backend server. I guess the server part (which can be written in Python) is the easier part, the complex part is the JavaScript front end code.

For learning, I'd highly recommend to start with an easier and less complex task first.

Regards, noisefloor