#!/usr/bin/env python #script creates searchable website for different operation manuals import os folder = "manuals" header = """ collection of different operation manuals and data sheets """ middlepart = """""" footer = """ """ middlepart += """

Operation manuals and data sheets

managed by JoaK and others! If you have an old/new operation manual or a rare/unusual data sheet, please send it to me(joak(((((a)))))nospace.at)!

""" f = open('index.html', 'w') f.write(header+middlepart+footer) f.close()