Skip to content

Instantly share code, notes, and snippets.

View Vulpes-91's full-sized avatar
🐒
Study

Alexander Vulpes-91

🐒
Study
View GitHub Profile
@fdanelyan
fdanelyan / generate_html.py
Created April 18, 2014 07:34
Generate HTML from python and open it on default browser
# write-html.py
import webbrowser
import os
print ()
f = open('helloworld.html','w')
message = """<html>
<head></head>
<body><p>Hello World!</p></body>
</html>"""