Add formatting to table

main
Stef Dunlap 2023-02-22 10:11:16 -05:00
parent 48f03ecb59
commit 3f58f9bcf0
1 changed files with 12 additions and 11 deletions

View File

@ -5,17 +5,18 @@ from datetime import datetime
def mkindex(DIR):
FILE = os.path.join(DIR, 'index.html')
with open(FILE, 'w') as f:
f.write(f'<html><head><title>Index of {DIR}</title></head><body style="font-family: monospace;"><h1>Index of {DIR}</h1><hr>')
f.write(f'<p>Generated on {datetime.now().strftime("%Y-%m-%d %H:%M:%S")}</p>')
f.write('<table><thead><tr><th>Name</th><th>Last Modified</th></tr></thead><tbody>')
for f in os.listdir(DIR):
if os.path.isdir(os.path.join(DIR, f)):
f += '/'
timestamp = datetime.fromtimestamp(os.path.getmtime(os.path.join(DIR, f))).strftime('%Y-%m-%d %H:%M:%S')
f = f'<tr><td><a href="{f}">{f}</a></td><td><span style="color: #888;">{timestamp}</span></td></tr>'
f.write(f)
f.write('</tbody></table></body></html>')
with open(FILE, 'w') as index:
index.write(f'<html><head><title>Index of {DIR}</title></head><body style="font-family: monospace;"><h1>Index of {DIR}</h1><hr>')
index.write(f'<p>Generated on {datetime.now().strftime("%Y-%m-%d %H:%M:%S")}</p>')
index.write('<table width=500><thead align="left"><tr><th>Name</th><th>Last Modified</th></tr></thead><tbody>')
entries = os.listdir(DIR)
entries = sorted([entry for entry in entries if not entry.startswith('.')])
for file in entries:
if os.path.isdir(os.path.join(DIR, file)):
file += '/'
timestamp = datetime.fromtimestamp(os.path.getmtime(os.path.join(DIR, file))).strftime('%Y-%m-%d %H:%M:%S')
index.write(f'<tr><td><a href="{file}">{file}</a></td><td><span style="color: #888;">{timestamp}</span></td></tr>')
index.write('</tbody></table></body></html>')
def index_for_all(DIR):
mkindex(DIR)