Creating a web page with Python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • subhabrata.iisc@hotmail.com

    Creating a web page with Python

    Dear Members of the group,
    If any one can help me with an idea how to create a web page with
    python? Do I have to use vbscript or something like that? I also want
    to embed the function in the button of a form. How can I do it in
    Python?
    Regards,
    Subhabrata Banerjee.
  • Mike Driscoll

    #2
    Re: Creating a web page with Python

    On May 27, 9:25 am, subhabrata.i... @hotmail.com wrote:
    Dear Members of the group,
    If any one can help me with an idea how to create a web page with
    python? Do I have to use vbscript or something like that? I also want
    to embed the function in the button of a form. How can I do it in
    Python?
    Regards,
    Subhabrata Banerjee.

    There are many ways to do this. You can use Python kind of like cgi:


    This module is no longer part of the Python standard library. It was removed in Python 3.13 after being deprecated in Python 3.11. The removal was decided in PEP 594. A fork of the module on PyPI c...


    WSGI: http://www.wsgi.org/wsgi

    Web Frameworks: Django, TurboGears, Pylons, mod-python, Zope/Plone

    Or you might just want to browse Python's wiki:



    Mike

    Comment

    • subhabrata.iisc@hotmail.com

      #3
      Re: Creating a web page with Python

      Dear Mike,
      Thanx your solutions came to the very point. And you understood the
      problem so nicely. It is just perfect.
      Great.
      Regards,
      Subhabrata Banerjee.

      Mike Driscoll wrote:
      On May 27, 9:25�am, subhabrata.i... @hotmail.com wrote:
      Dear Members of the group,
      If any one can help me with an idea how to create a web page with
      python? Do I have to use vbscript or something like that? I also want
      to embed the function in the button of a form. How can I do it in
      Python?
      Regards,
      Subhabrata Banerjee.
      >
      >
      There are many ways to do this. You can use Python kind of like cgi:
      >

      This module is no longer part of the Python standard library. It was removed in Python 3.13 after being deprecated in Python 3.11. The removal was decided in PEP 594. A fork of the module on PyPI c...

      >
      WSGI: http://www.wsgi.org/wsgi
      >
      Web Frameworks: Django, TurboGears, Pylons, mod-python, Zope/Plone
      >
      Or you might just want to browse Python's wiki:
      >

      >
      Mike

      Comment

      Working...