"Untitled" By gando (https://pastebin.com/u/gando) URL: https://pastebin.com/akbC4TRp Created on: Wednesday 7th of September 2011 05:00:33 PM CDT Retrieved on: Saturday 31 of October 2020 07:57:58 AM UTC fuck yeah, I can Python [code]import re from urllib import urlopen totalBanList = [1] totalBans = 0 def num_groups(regex, url): webpage = urlopen(url).read() m = re.findall(regex, webpage) return m if __name__ == "__main__": for i in num_groups( r'(\bSTEAM_[0-1]:[0-1]:(\d+)\b).*', 'http://74.63.239.234/banlist.txt'): totalBanList.append(i) ##if __name__ == "__main__": ## for i in num_groups( ## r'^(.*)(\r?\n\1)+$', ## 'http://74.63.239.234/banlist.txt'): ## totalBanList.append(i) q = len(totalBanList) - 1 print 'There have been ' + str(q) + ' total bans since the beginning of time on Noobonic.' [/code] [img]http://i.imgur.com/xgbvW.png[/img]