Using Tkinter in a web site

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • TMS
    New Member
    • Sep 2006
    • 119

    Using Tkinter in a web site

    Has anyone used Tkinter in a web site? If so, please give a location and any information you have.

    ty in advance

    tms
  • ghostdog74
    Recognized Expert Contributor
    • Apr 2006
    • 511

    #2
    Tkinter in web site? no. Tkinter is a standalone GUI development package. however if you are talking about client side development, then yes.

    Comment

    • TMS
      New Member
      • Sep 2006
      • 119

      #3
      So, in client side development, how would that work exactly?


      tms

      Comment

      • ghostdog74
        Recognized Expert Contributor
        • Apr 2006
        • 511

        #4
        Originally posted by TMS
        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...

        see: here

        Comment

        Working...