This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import glob | |
# uncomment for FTP support -- requires ftplib | |
#from ftplib import FTP | |
output = open("index.html", "w") | |
html_escape_table = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python | |
""" | |
Usage: | |
chmod +x assert.py | |
./assert.py <concept1> <concept2> | |
You will need to tweak the parameters indices if you are in Windows. | |
Original code by MIT, modifications by Mark Hamilton. |