Technology Programming

How to Embed Python Into HTML

    • 1). Configure the Apache web server to run CGI scripts by inserting the following lines of code in the main httpd.conf file:

      <Directory /usr/local/apache2/htdocs/somedir>

      Options +ExecCGI

      </Directory>

      You will also need to add the following line to the httpd.conf file:

      AddHandler cgi-script .cgi .py

      This tells the web server that files appended with .cgi and .py must be run as CGI scripts.

    • 2). Open a text editor and type the following:

      #!/usr/bin/python

      print('Content-type: text/html\n')print('<TITLE>Python_In_HTML</TITLE>')print('<H1>Python would like to say</H1>')print('<P>Hello, HTML!</P>')

      The first line with its "shebang" call invokes the Python interpreter; the print command calls the html method so that the text between the tags will be properly formatted in the browser. Save this file as PyScript1.py in root/Library/Apache/cgi-bin.

    • 3). Test your script by opening a web browser and typing in the following URL:

      http://localhost.cgi-bin.PyScript1.py

      Your browser will display the following: Python would like to say Hello, HTML!

SHARE
RELATED POSTS on "Technology"
Blitzerwarner: Could You Escape the Speed Cameras?
Blitzerwarner: Could You Escape the Speed Cameras?
What Makes a Perfect Web Design Company?
What Makes a Perfect Web Design Company?
Inside No-Fuss Products In Gaming Computers
Inside No-Fuss Products In Gaming Computers
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Free Music Players For Websites
Free Music Players For Websites
'See How NCP Tracks Down Fake Ration Card Holders'
'See How NCP Tracks Down Fake Ration Card Holders'
You Can Stop Panic Attacks in Just two Minutes
You Can Stop Panic Attacks in Just two Minutes
WordPress Blog to WP Site! A Journey to Online Success
WordPress Blog to WP Site! A Journey to Online Success
Videos will give your business portal an extra leverage
Videos will give your business portal an extra leverage
Excellent Ways To Make Weight Loss Work For You
Excellent Ways To Make Weight Loss Work For You
Five Notable Differences between National and International Logo Designs
Five Notable Differences between National and International Logo Designs
Who Should Your Phoenix Web Design Client Be?
Who Should Your Phoenix Web Design Client Be?
White Papers & Other Documents - including ALFLB
White Papers & Other Documents - including ALFLB
Google Analytics Tips
Google Analytics Tips
Want To Make Your Website Faster? Follow These Steps
Want To Make Your Website Faster? Follow These Steps
The Starting of Couture Apparel
The Starting of Couture Apparel
Choose Custom Website Design Services
Choose Custom Website Design Services
Choosing the Right Joomla CMS Developer
Choosing the Right Joomla CMS Developer
A Look at SQL Server Denali AlwaysOn
A Look at SQL Server Denali AlwaysOn
4 Tips to Choose the Perfect Flash Animation Course
4 Tips to Choose the Perfect Flash Animation Course

Leave Your Reply

*