1
f06mote.com
I checked the website this morning just to get a feel for our starting point and it was:
~80 for
~30 against
Just now I checked it again and saw: 70 for
64 against
This is amazing! What great progress (although we need more), and what an amazing tool for keeping track of our Congress!from sys import argv from base64 import b64encode from os.path import split, splitext
ifn = argv[1] alt, ext = splitext(ifn) ext = ext.lstrip('.') ofn = alt+'.html' alt = split(alt)[1]
ifd = open(ifn, 'rb') ofd = open(ofn, 'wb')
ofd.write( '<img src="data:image/{0};base64,{1}" alt="{2}" />'.format(ext, b64encode(ifd.read()), alt))
ifd.close() ofd.close()