473,787 Members | 2,857 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Use Python to write HTML file

34 New Member
I have been given a snippet of HTML code that I am to use Python to write it out. I am somewhat new to Python, and completely new to HTML, so I'm still unclear on what it is I am supposed to be doing. So please bear with me as I try to figure this out as I go. But first, just starting out, outputting the first line of the HTML already has me lost with all the competing quotes/unquotes. How do I write out this first line using Python?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

f.write(??????? )

Thanks!
Sep 17 '07 #1
8 12906
jld730
34 New Member
Never mind -- I finally decided to not complicate it in my mind and tried something simple, and that worked.

But let me ask this... what is the proper way for do this, with one long write function for 30+ lines of html text, or should you execute the write function once for each line? And, what do you do about the indentation? I can see in the html file given to me that there are indentations that are made up of, for instance, a tab and two spaces. So in quotes do you put a tab and two spaces? I did that and it doesn't seem to give the same depth of indentation. Should I use spaces only? I'm just not sure on how picky html is.

Thanks for any guidance!
Sep 17 '07 #2
bartonc
6,596 Recognized Expert Expert
Never mind -- I finally decided to not complicate it in my mind and tried something simple, and that worked.

But let me ask this... what is the proper way for do this, with one long write function for 30+ lines of html text, or should you execute the write function once for each line? And, what do you do about the indentation? I can see in the html file given to me that there are indentations that are made up of, for instance, a tab and two spaces. So in quotes do you put a tab and two spaces? I did that and it doesn't seem to give the same depth of indentation. Should I use spaces only? I'm just not sure on how picky html is.

Thanks for any guidance!
One chunk is best: for a given string type object (theString), no matter how long -within reason, of course- simply:
Expand|Select|Wrap|Line Numbers
  1. #create the file (f)
  2. f = open("pathAndFileName", 'w')
  3. #  write the data
  4. f.write(theString)
  5. #  close the file
  6. r.close()
Sep 17 '07 #3
jld730
34 New Member
Is this right/ok?

f = open(f, "w")

f.write('<!DOCT YPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">' + "\n" +
'<html>' + "\n" +
' <head>' + "\n" +
' <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">' + "\n" +
' <title>TITLE</title>' + "\n" +
' <link rel="stylesheet " href="css/displayEventLis ts.css" type="text/css">' + "\n"
)

f.close()
Sep 17 '07 #4
bvdet
2,851 Recognized Expert Moderator Specialist
Is this right/ok?

f = open(f, "w")

f.write('<!DOCT YPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">' + "\n" +
'<html>' + "\n" +
' <head>' + "\n" +
' <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">' + "\n" +
' <title>TITLE</title>' + "\n" +
' <link rel="stylesheet " href="css/displayEventLis ts.css" type="text/css">' + "\n"
)

f.close()
That should work, but this is better:
Expand|Select|Wrap|Line Numbers
  1. f = open(file_name, "w")
  2.  
  3. f.write('\n'.join(['<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
  4.                    '<html>',
  5.                    ' <head>',
  6.                    ' <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">',
  7.                    ' <title>TITLE</title>',
  8.                    ' <link rel="stylesheet" href="css/displayEventLists.css" type="text/css">'
  9.                    ])
  10.         )
  11.  
  12. f.close()
Sep 17 '07 #5
bartonc
6,596 Recognized Expert Expert
That should work, but this is better:
Expand|Select|Wrap|Line Numbers
  1. f = open(file_name, "w")
  2.  
  3. f.write('\n'.join(['<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
  4.                    '<html>',
  5.                    ' <head>',
  6.                    ' <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">',
  7.                    ' <title>TITLE</title>',
  8.                    ' <link rel="stylesheet" href="css/displayEventLists.css" type="text/css">'
  9.                    ])
  10.         )
  11.  
  12. f.close()
While I abhor putting literals in the the argument of a function call like this, I'm in a rush at the moment so I'll just throw out this alternative that does write one line at a time in a single call:
Expand|Select|Wrap|Line Numbers
  1. f = open(file_name, "w")
  2.  
  3. f.writelines(['<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n',
  4.                    '<html>\n',
  5.                    ' <head>\n',
  6.                    ' <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">\n',
  7.                    ' <title>TITLE</title>\n',
  8.                    ' <link rel="stylesheet" href="css/displayEventLists.css" type="text/css">\n'
  9.                    ])
  10.  
  11. f.close()
Sep 17 '07 #6
rogerlew
15 New Member
I have been given a snippet of HTML code that I am to use Python to write it out. I am somewhat new to Python, and completely new to HTML, so I'm still unclear on what it is I am supposed to be doing. So please bear with me as I try to figure this out as I go. But first, just starting out, outputting the first line of the HTML already has me lost with all the competing quotes/unquotes. How do I write out this first line using Python?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

f.write(??????? )

Thanks!
Use triple double-quoted strings
Expand|Select|Wrap|Line Numbers
  1. f.write("""<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">""")
  2.  
Sep 19 '07 #7
ilikepython
844 Recognized Expert Contributor
Use triple double-quoted strings
Expand|Select|Wrap|Line Numbers
  1. f.write("""<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">""")
  2.  
Yes, I think that is good because everything is preserved.
Expand|Select|Wrap|Line Numbers
  1. html = """
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  3. etc...
  4. """
  5. f.write(html)
  6.  
Also, a good idea is to use string formatting to fill out certain values:
Expand|Select|Wrap|Line Numbers
  1. html = """
  2. <table>
  3.     %s
  4. </table>
  5. """
  6.  
  7. theTable = "<tr>"     # start row
  8. for x in range(4):
  9.     theTable += "<td>%d</td>" % x     # individual datas
  10. theTable += "</tr>"   # end row
  11.  
  12. f.write(html % theTable)
  13.  
Sep 19 '07 #8
jld730
34 New Member
Way late, but thanks everyone for the useful responses! I'm good now (3 months later!).
Dec 18 '07 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

1
2578
by: M.E.Farmer | last post by:
Hello c.l.py!, I have just finished this and decided to share. PySourceColor is a module to convert Python source into colored html. Yes it has been done before, but I like this better:) You can easily define your own colorscheme. example usage: # Highlight PySourceColor.py python PySourceColor.py or # Show help
0
9655
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9497
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10110
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7517
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6749
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5534
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3670
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.