WeeChat terminal IRC client
- acccess to "OAuth Password Generator"; semi-official service
- push "Connect to Twitch"
WeeChat terminal IRC client
import os, hashlib, urllib2, optparse | |
def get_remote_md5_sum(url, max_file_size=100*1024*1024): | |
remote = urllib2.urlopen(url) | |
hash = hashlib.md5() | |
total_read = 0 | |
while True: | |
data = remote.read(4096) | |
total_read += 4096 |