473,406 Members | 2,439 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Use Python to write HTML file

34
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 12886
jld730
34
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 Expert 4TB
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
Is this right/ok?

f = open(f, "w")

f.write('<!DOCTYPE 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/displayEventLists.css" type="text/css">' + "\n"
)

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

f = open(f, "w")

f.write('<!DOCTYPE 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/displayEventLists.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 Expert 4TB
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
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 Expert 512MB
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
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
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
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,...
0
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...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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...

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.