Python Forum
Excel Like Web Application using Python - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Excel Like Web Application using Python (/thread-19041.html)



Excel Like Web Application using Python - ravsha85 - Jun-11-2019

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


RE: Excel Like Web Application using Python - noisefloor - Jun-13-2019

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