So, in client side development, how would that work exactly?
tms
say you have a web server serving a web application. what immediately comes to mind when you want to see that web content? a web browser? but you don't want to use IE or firefox or others, so you make your own , using Tkinter. However this is just the interface. the underlying programming modules you most probably will encounter is the socket, libraries which understands http, also html parsing so you could display web pages on your GUI , etc etc..
this is just an example. there are others , like databases. you can do client side GUI to query databases etc.etc...
Comment