第二次作业

In [1]:
import re
import csv
from collections import defaultdict
def extract_rt_user(tweet):
    rt_patterns = re.compile(r"(RT|via)((?:\b\W*@\w+)+)", re.IGNORECASE)
    rt_user_name = rt_patterns.findall(tweet)
    if rt_user_name:
        rt_user_name = rt_user_name[0][1].strip(' @')
    else:
        rt_user_name = None
    return rt_user_name

rt_network = defaultdict(int)
f = open('F:/Anaconda/cjc/ows-raw.txt', 'r',encoding = 'utf8')
chunk = f.readlines(1000000)
while chunk:
    lines = csv.reader((line.replace('\x00','') for line in chunk),delimiter = ',',quotechar = '"')
    for line in lines:
        tweet = line[1]
        from_user = line[8]
        rt_user = extract_rt_user(tweet)
        rt_network[(from_user,rt_user)]+=1
        chunk = f.readlines(1000000)
In [2]:
print(rt_network)
defaultdict(<class 'int'>, {('From User', None): 1, ('Anonops_Cop', 'AnonKitsu'): 1, ('KittyHybrid', None): 1, ('nerdsherpa', None): 2, ('hamudistan', 'bembel'): 1, ('kl_knox', None): 1, ('vickycrampton', 'TheNewDeal'): 2, ('burgerbuilders', None): 3, ('neverfox', None): 1, ('davidgaliel', None): 1, ('AnonOws', 'ForseenUnNamed'): 1, ('ryanjnagle', 'tinadupuy'): 1, ('JanSKay', 'UnderdogLib'): 1, ('alyssa011968', None): 1, ('fresh__air', None): 1, ('fucentarmal', None): 1, ('msaf', 'anonops'): 1, ('Seekadoo2', 'OccupyWallSt'): 1, ('Jay_in_Omaha', 'TheNewDeal'): 1, ('starshollowgzt', 'KevDGrussing'): 1, ('TopCat_TC', 'LJSearles'): 1, ('ElizabethBrossa', 'OccupyMainSt'): 1, ('dpfournier', 'BlueDuPage'): 1, ('ReTweetAgain', 'OpWallStreet'): 2, ('Leoslaire', None): 1, ('tommymiles', 'Anon_is_you: @AnonyOps'): 1, ('Perlins', 'TheNewDeal'): 1, ('SuzanneTwoTon', 'OccupySF'): 1, ('OccupySF', None): 4, ('k_l_h_j', None): 8, ('adpucci', 'MMFlint'): 1, ('subiepick', 'OccupySF'): 4, ('OccupyMainSt', None): 4, ('Tawanda46', 'OccupySF'): 3, ('Sweatersworth', None): 2, ('RowleyGirl_4', 'TrueGilby'): 1, ('starshollowgzt', 'Titleixbaby'): 1, ('yelbley', 'neverfox'): 1, ('SGardinier', None): 1, ('MidwayMadnessRF', None): 1, ('Beelzebjorn', 'raypride'): 1, ('dove_hawk', 'kittylight'): 5, ('dctwice', 'AnonymousIRC'): 1, ('JorgexMA', 'OccupySF'): 1, ('LeftSlashRight', 'TheNewDeal'): 1, ('WeCanBeatEczema', 'BABYDIABOLICAL'): 1, ('2foodie', 'Spudlovr'): 1, ('AnnaLovesBooks', 'OccupySF'): 1, ('Tawanda46', 'diceylee808'): 1, ('drdrjojo', None): 1, ('WhatMattersNews', 'LyndsayFarlow'): 1, ('BenZMusic1', None): 9, ('JonusMiles', 'OccupySF'): 1, ('BiffSpliff', None): 1, ('JorgexMA', 'Beelzebjorn'): 1, ('CitizenWorm', 'consciouslibert'): 1, ('A_L_A_Politics', None): 1, ('GreeGreece', 'BlueDuPage'): 1, ('HenryZeniewicz', 'akrockefeller'): 1, ('thatgirlhas', None): 1, ('OccupyHsv', 'OccupySF'): 4, ('angela0328', None): 1, ('JonathanDBrown', 'kelly_carlin'): 1, ('Helyxcious', 'OccupySF'): 2, ('kikiki321', 'Din_SFLA'): 1, ('OccupySantaFe', None): 1, ('kenjey', 'singlepayer'): 1, ('alyssa011968', 'livestream'): 1, ('Balkingpoints', None): 1, ('napcat1947', 'TheNewDeal'): 1, ('DeadJack57', None): 3, ('tmsimmz', None): 4, ('occupygreenbay', 'OccupySF'): 2, ('Spudlovr', None): 4, ('rivernewstc', 'Jeannie_Hartley'): 1, ('jboy', None): 1, ('explainify', None): 3, ('Wanderer19', 'KeithOlbermann'): 1, ('Citizen1452', 'OccupySF'): 1, ('Karateka', None): 1, ('lulusgirl888', '“@SabzBrach'): 1, ('thedailyfishfry', None): 7, ('bahnree', 'OccupyWallSt'): 1, ('dove_hawk', 'kittylight: “@anonops'): 1, ('volksmenner', 'OccupySF'): 2, ('bhick111', None): 1, ('LandLLaBoy', 'cjohanns'): 1, ('katiaperuca', 'GreeGreece'): 1, ('WhatMattersNews', 'A_L_A_Politics'): 1, ('wryson', None): 1, ('Hexham67', None): 1, ('CharlesBivona', None): 1, ('dannydoodar', 'KeithOlbermann'): 1, ('KVSwagger', None): 1, ('jonny_bouta', None): 1, ('heroofcamelot', None): 1, ('robertolobianco', None): 2, ('evans3_w', None): 1, ('liujingsheng001', 'OccupyPics'): 1, ('Hacksperger', 'AnonymousIRC'): 1, ('amandalilja8', 'OccupyVancouver'): 1, ('LifeasaReader', 'AnonKitsu'): 1, ('thedailyfishfry', 'pixls'): 1, ('margoswift', None): 2, ('fantim', None): 1, ('The_News_DIVA', 'Jeannie_Hartley'): 1, ('OccupyNCGBORO', 'angela0328'): 1, ('HenryZeniewicz', 'labgrrl'): 1, ('CitizenWorm', 'KrisKaos'): 1, ('robveliz', 'OccupySF'): 2, ('mijadedios', None): 3, ('jerseyanarchist', None): 4, ('allanbrauer', 'TheReidReport'): 1, ('smacknrat', 'CharlesBivona'): 1, ('primeris', 'anonops'): 1, ('ImogeneM1', 'TheNewDeal'): 1, ('cheappoet', 'WeOccupyAmerica'): 2, ('BigBizznass', None): 1, ('artkiver', 'OccupySF'): 1, ('Kinniska', 'Shoq'): 1, ('sebastian__p', None): 3, ('TdottH', None): 1, ('Amywhere', 'Beelzebjorn'): 1, ('Timothy_S', 'CharlesBivona'): 1, ('CelluloidBlonde', None): 3, ('smwildman', None): 2, ('CalFireNews', ': @OccupyFDSF'): 1, ('mangobeach', 'Spudlovr'): 3, ('Tan0_oTan', None): 1, ('TimothyS', None): 1, ('jischinger', None): 1, ('LifeasaReader', 'mrbarnard1'): 1, ('AccidentalBear', 'BrettGleason'): 1, ('lokozada', None): 1, ('OccupyMainSt', 'CharlesBivona'): 1, ('popart84', 'majorityfm'): 1, ('TucsonOccupy', 'Balkingpoints: @JeffSharlet'): 1, ('Christoph2012', 'A_L_A_Politics'): 1, ('OccupyNCGBORO', 'BlueDuPage'): 1, ('lhsalmon', 'Leslie_Wolfe'): 1, ('dangerousalice', 'OccupySF'): 3, ('BangoRkt', None): 1, ('rbscaife', 'OccupySF'): 1, ('kassandria13', 'OccupyMainSt'): 1, ('lulusgirl888', '“@ForseenUnNamed'): 1, ('joemerino5', None): 1, ('MattVTyler', 'jacobchicago @MattVTyler'): 1, ('kelliebrat61', 'LibertyBelle4'): 1, ('DonShappelle', 'Balkingpoints: @JeffSharlet'): 1, ('CAFalk', 'Seekadoo2'): 1, ('FernandoSabines', 'KeithOlbermann'): 1, ('sfslim', 'OccupySF'): 1, ('indigojourney', 'OccupySF'): 2, ('msaf', 'jeremyscahill'): 1, ('jimmytheheel', 'OccupySF'): 1, ('KimbrlyKrautter', 'CelluloidBlonde'): 1, ('bebird', 'azmoderate'): 1, ('josh2462', None): 1, ('Truthcaster1', 'OccupyWallSt'): 2, ('nicoles', 'CalFireNews'): 1, ('jameswhitely', 'KeithOlbermann'): 1, ('WomanVote', 'TheNewDeal'): 1, ('OccupyWallSt', 'CharlesBivona'): 1, ('OccupyBostonNOW', None): 1, ('nepsik_proto', 'TheNewDeal'): 1, ('maghera', None): 1, ('bming5', None): 1, ('Jay_in_Omaha', 'KrisKaos'): 1, ('jodicanary0501', 'CharlesBivona'): 1, ('keeperlefae', None): 1, ('born2twittah', 'WeOccupyAmerica'): 1, ('nicoles', 'OccupySF'): 2, ('Tibby1989', 'anonops'): 1, ('cheappoet', 'UnderdogLib'): 1, ('nonloc', None): 1, ('nicoles', 'BigBizznass'): 1, ('ScurvyMcRickets', 'anonops'): 1, ('soynicay', None): 2, ('dctwice', 'Wotansson'): 1, ('okiebowl', 'OccupySF'): 1, ('KaruJOY', 'AnonymousIRC'): 1, ('BlizzyBe', 'OccupySF'): 2, ('cheappoet', 'CharlesBivona'): 1, ('ChefKreyolAyiti', None): 1, ('Bavilabo', 'anonops'): 1, ('digitalghostgrl', None): 2, ('b_strange', 'MattBors'): 1, ('WhatMattersNews', 'josh2462'): 1, ('jdprose', None): 1, ('LGJuanDewey', 'MoveOn'): 1, ('AnonNCarolina2', 'cjohanns'): 1, ('99_film', None): 1, ('bebird', 'kittyFitz50'): 1, ('Procoolgranny', 'JoshuaHol'): 2, ('SirrK', 'OccupyAlbany'): 1, ('thewindsofwar', 'OccupySF'): 2, ('cgpb', None): 1, ('cheappoet', 'jeremyscahill'): 1, ('45JORDAN', 'MoveOn'): 1, ('A_L_A_Politics', 'pdneko'): 1, ('chantzerolin', 'SGardinier'): 1, ('Tokyo_Tom', 'Lizardoid'): 1, ('thewindsofwar', 'Saccaparami'): 1, ('born2twittah', 'jeremyscahill'): 1, ('WallStProtests', None): 2, ('teeglo_carbon', None): 1, ('ApolloForever', 'jeremyscahill'): 1, ('StevConnor', 'TdottH'): 1, ('ConspiracyWATCH', 'cjohanns: @MMFlint'): 1, ('JaniceKay5', 'OccupySF'): 1, ('UnanimousHQ', None): 2, ('matthewme23', None): 2, ('UsRevolt11', 'boffchops'): 1, ('esd2000', 'labgrrl'): 1, ('peaceonstreets', None): 1, ('cakeloan', None): 1, ('AnonNCarolina2', 'angela0328'): 1, ('GreggJLevine', 'OccupySF'): 1, ('feerandloathing', None): 1, ('litterof6', None): 1, ('Ciudadano_Zer0', None): 3, ('ChipleKira', '99_film'): 1, ('JLownLaw', None): 4, ('zatch6789', 'AACina'): 1, ('cheappoet', 'OccupyMainSt'): 1, ('RevLea', 'NeffKen'): 1, ('skweekie', 'OccupySF'): 2, ('rayvyn2k', 'KeithOlbermann'): 1, ('GilesMcK', None): 1, ('occupygreenbay', 'Spudlovr'): 3, ('mafuok', 'soynicay'): 1, ('opticaldensity', None): 2, ('kittystryker', 'CalFireNews'): 1, ('tmacoubrie', None): 1, ('Eva_in_Oregon', 'OccupySF'): 2, ('URSUExternal', 'Joshsod'): 1, ('Balkingpoints', 'nicolesandler'): 1, ('_Snafubar_', 'peterrothberg'): 1, ('futzzzz', None): 1, ('LJSearles', None): 1, ('LibertyBelle4', 'Thomasgivens'): 1, ('lulusgirl888', 'BiffSpliff: “@ModernBetsy'): 1, ('BlizzyBe', 'BlueDuPage'): 1, ('BakaKale', 'RichardKimNYC'): 1, ('PoliticsOfFear', None): 3, ('lynx55', None): 3, ('ElizabethBrossa', None): 2, ('kittylightsCat', 'kittylight'): 7, ('Scoopyex', 'OccupySF'): 1, ('Loading1333', 'myrddenbuckley'): 1, ('RubberRoomHotel', 'KeithSmooth'): 1, ('dannydoodar', 'kelly_carlin'): 1, ('SaschaEndlicher', None): 1, ('zatch6789', '99_film'): 1, ('elctrodnd21', 'TheNewDeal'): 1, ('JBeres87', 'KeithOlbermann'): 1, ('ganralf7', 'Beelzebjorn'): 1, ('CosmUnity', None): 1, ('pixplz', 'jeremyscahill'): 1, ('cassandraheresy', 'angela0328'): 1, ('revrendoni', 'TheNewDeal'): 1, ('murmur55', None): 1, ('ANGRYSAM', 'labgrrl'): 1, ('TorianBrown', None): 1, ('Break1_9', '99_film'): 1, ('Phraise_one', 'TheOther99'): 1, ('99_occupy', '99_film'): 1, ('AudreyEwell', '99_film'): 1, ('Shiftinthinking', 'OccupySF'): 4, ('Cocoxochitl', 'MattBors'): 1, ('BlueDuPage', None): 1, ('p_auer', None): 1, ('KMM_OR', 'OccupySF'): 1, ('djtroublemaker', 'majorityfm'): 1, ('The99Percenters', 'JLownLaw'): 2, ('W26Michelle', None): 1, ('grimacetv', None): 1, ('d20Dad', None): 1, ('PARKETH84', 'MJMcKean'): 1, ('KaliKittyKat', None): 1, ('miss_millions', 'TheOther99: @TheOther99'): 1, ('Kaymee', 'JLownLaw'): 1, ('CKwindham', None): 2, ('Truthcaster1', 'CharlesBivona'): 1, ('azmoderate', None): 4, ('Azurke', 'DaveMc99TA'): 1, ('bonapartess1', 'TheNewDeal'): 1, ('ladykayaker', 'Hexham67'): 1, ('FreddyMonti', None): 1, ('jazzidiot', None): 1, ('Amywhere', 'cjohanns'): 1, ('swianecki', 'brookejarvis'): 1, ('kassandria13', 'CharlesBivona'): 1, ('livvy_xox', 'anonops'): 1, ('KarynBakoCA', 'CalFireNews'): 1, ('Luchia_', None): 2, ('RichardJamesH', None): 1, ('The_Proletarian', 'bveeus'): 1, ('thewindsofwar', 'LJSearles'): 2, ('distantlover125', 'TorianBrown'): 1, ('lMLx3likewoah', None): 1, ('thomshouse', None): 1, ('phillipanderson', None): 4, ('kittylightsCat', 'cjohanns'): 1, ('RowleyGirl_4', 'OccupyWallSt'): 1, ('CaraCordoni', 'OccupySF'): 2, ('Leoslaire', 'OccupySF'): 1, ('miixxy', None): 1, ('robinjpearson', 'codeamazon'): 1, ('LeftSlashRight', 'BlueDuPage'): 1, ('geckomom', None): 1, ('NouriNv', 'JeffreyFeldman'): 1, ('Cin_Le1', 'robertolobianco'): 1, ('shahid', 'anonops'): 1, ('UANO1CATS', 'RichardKimNYC'): 1, ('liubaldo_garcia', 'CelluloidBlonde'): 2, ('kreneskyp', 'cjoh'): 1, ('Nemokrati', 'Beelzebjorn'): 1, ('tarboxk', None): 1, ('ellinjaa', 'CharlesBivona'): 1, ('LHubich', None): 1, ('ElderStatesman', None): 2, ('Jay_in_Omaha', 'OccupySF'): 1, ('Vida_Jay', 'OccupyWallSt'): 2, ('justinhaaheim', 'jeremyscahill'): 1, ('MiyazakiMegu', 'TheNewDeal'): 1, ('LJSearles', 'OccupySF'): 1, ('miixxy', 'HuggyBear116'): 1, ('csbarron4', None): 1, ('N1CKG_g', 'PattyOnEdge'): 1, ('GuerrillaDaily', 'OccupySF'): 1, ('BlueDuPage', 'OccupyMainSt'): 1, ('miixxy', 'TorianBrown'): 1, ('BarbaraRacek', None): 1, ('Mikee1da', 'OccupySF'): 1, ('mattdina', 'ConspiracyWATCH'): 1, ('xica25', 'gwynnek'): 1, ('co6dem', None): 1, ('MentalPoison', 'wordpressdotcom'): 1, ('PhattyF', 'HumanityCritic'): 1, ('C_BlazE', None): 1, ('Saccaparami', None): 3, ('junixu', None): 1, ('BoojieMan', None): 1, ('MinkoffMinx', 'TheNewDeal'): 1, ('Zooman70', None): 1, ('CosmUnity', 'DJHustle @T5JS @ArtisticBlog @magnifyk'): 1, ('MyDixie_Wrecked', None): 2, ('WhatMattersNews', None): 2, ('twatwaffle8', 'jeremyscahill'): 1, ('jazzidiot', 'michaelschaub'): 1, ('BlueDuPage', 'OccupySantaFe'): 1, ('little_sparrows', 'OccupySF'): 1, ('putmygamefaceon', None): 1, ('AtomAu', 'BigMoe_'): 1, ('jefe331', 'anonops'): 1, ('millbot', None): 2, ('phileeznuts', 'anonops'): 1, ('tjgdolphin', 'TheNewDeal'): 2, ('asperkimberly', 'ForseenUnNamed'): 1, ('NewAmericaMedia', 'jeffsharlet'): 1, ('RhythmFootPrint', 'CharlesBivona'): 1, ('kittylight', 'TorianBrown'): 1, ('mangobeach', 'Saccaparami'): 2, ('brx0', 'LibertyBelle4'): 1, ('Screwcomforttoo', 'FreakOutNation'): 1, ('vallie', None): 1, ('RobJRII', None): 1, ('AnnieAngst', 'WeOccupyAmerica'): 1, ('LittonFire', 'miixxy'): 1, ('swianecki', None): 1, ('kikiki321', None): 4, ('beetle_eater', None): 2, ('ishtarmuz', 'SoufiandMe'): 1, ('MiyazakiMegu', 'csobol'): 1, ('jimmytheheel', 'LJSearles'): 1, ('mzinshteyn', None): 1, ('RowleyGirl_4', 'robert3242'): 1, ('CrimeCaster', 'deniseromano'): 1, ('TimothyChutes', None): 2, ('Kaymee', None): 2, ('glorie_', None): 2, ('jopauca', None): 2, ('inbarati', None): 1, ('StillDiggin', 'OccupySF'): 5, ('favstar_pop', 'WeOccupyAmerica'): 1, ('bakerbacare', 'CalFireNews'): 1, ('Dolphin64', None): 1, ('anoctave', None): 1, ('coreyspaley', None): 1, ('lynx55', 'CalFireNews'): 1, ('LutherPatenge', 'PennyRed'): 1, ('ZempOh', None): 2, ('PopeShakey', None): 1, ('mikeplugh', None): 1, ('tjp11', None): 1, ('mocosamoments', None): 1, ('soynicay', 'TheRealGiest'): 1, ('KirsteninMT', 'neverfox'): 1, ('WarOnErrorDKos', 'CalFireNews'): 1, ('RyanHigginsRyan', 'OccupyWallSt'): 1, ('kittylight', 'lynx55'): 1, ('TheNewPopulists', 'codeamazon'): 1, ('HenryZeniewicz', 'OccupySF'): 2, ('MarlowesFaustus', 'anonops'): 1, ('OccupySomething', 'WhatMattersNews'): 1, ('miixxy', 'joemerino5'): 1, ('berinder', 'Beelzebjorn'): 1, ('AnonymousFL', 'anonops'): 1, ('forever_flavor6', 'jopauca'): 1, ('mike42024769', 'JLownLaw'): 1, ('esd2000', 'OccupyMainSt'): 1, ('LusciousLani', 'CalFireNews'): 1, ('Tawanda46', 'LibertyBelle4'): 1, ('ElizabethJone18', 'beetle_eater'): 1, ('Mike_EH_52', None): 1, ('AnonyKonk', None): 2, ('evilllamas', 'OccupyWallSt'): 1, ('Dharmapunk12', None): 2, ('jimmytheheel', 'geckomom'): 1, ('WR_', 'bluedupage'): 1, ('mafuok', 'NewAmericaMedia'): 1, ('RevLea', 'TimothyS'): 1, ('OccupyRedlands', None): 1, ('chachiTHEgr8', None): 1, ('MsRamy', 'ChefKreyolAyiti'): 1, ('MarlowesFaustus', 'deniseromano'): 1, ('mkidwell05', None): 1, ('CinnabarSweets', None): 1, ('pixls', None): 1, ('hlebcats', 'Din_SFLA'): 1, ('bebird', 'OccupyResults'): 1, ('i8wamu', None): 1, ('dvnix', 'PhattyF'): 1, ('MostafaCFE', 'Dharmapunk12'): 1, ('jimmytheheel', 'miixxy'): 1, ('iteabellsingers', 'The99Pct'): 1, ('ElizabethJone18', 'CalFireNews'): 1, ('Amywhere', 'Seekadoo2'): 1, ('fpaulin', 'inbarati'): 1, ('DrinkBeerN0tTea', 'FreakOutNation'): 1, ('butttless', None): 1, ('michaelwhitney', 'phillipanderson'): 1, ('wavyca', 'inbarati'): 1, ('subiepick', 'TheNewDeal'): 1, ('Thunderbro_', 'inbarati'): 1, ('MarcoCesarSaenz', None): 2, ('agentdarkapple', 'The99Pct'): 1, ('TheSHW', 'ZempOh'): 1, ('ishtarmuz', 'LJSearles'): 1, ('airialclark', 'OccupySF'): 1, ('leeand00', 'Jeannie_Hartley'): 1, ('nuveendhingra', None): 1, ('OOOlson', 'VoidSeed'): 1, ('ChipleKira', None): 2, ('failshow', None): 1, ('marxistveteran', None): 3, ('cjohanns', 'OccupySantaFe'): 1, ('HeartOfOrion', 'CalFireNews'): 1, ('wavyca', 'glorie_: @andersoncooper'): 1, ('donnyshell', None): 1, ('JoesUnionReview', None): 4, ('galatorg', 'cjohanns'): 2, ('rivenhomewood', 'BevanWhitfield'): 1, ('VendettaStudies', 'OccupySF'): 2, ('mamachao23', 'MJMcKean'): 1, ('rivenhomewood', 'misosusanowa'): 1, ('pagescster', 'OccupySF'): 1, ('occupy_berlin', None): 1, ('Dogpatch05', 'ewshefarted'): 1, ('lynx55', 'OccupySF'): 1, ('explainify', 'thomshouse'): 1, ('King_Gonad', 'OccupyWallSt'): 1, ('kittylight', 'CalFireNews'): 1, ('jen_h', None): 1, ('NYBAILBOSS', None): 1, ('B_Schneid90', None): 1, ('CraigR3521', 'PoliticsOfFear'): 1, ('HeartOfOrion', 'LJSearles'): 1, ('explainify', 'p_auer'): 1, ('Ikuestion', 'Jehuniko1'): 1, ('Kaymee', 'miixxy'): 1, ('mobius1ski', None): 3, ('ishtarmuz', 'OccupySF'): 1, ('jashsf', 'BlueDuPage'): 1, ('bebullish20k', 'TheNewDeal'): 2, ('n4rky', 'CalFireNews'): 1, ('MistrGreen56', 'TheNewDeal'): 1, ('Nougatrocity', 'Spudlovr'): 1, ('marxistveteran', 'OccupySantaFe'): 1, ('aaronaites', '99_film'): 1, ('OccupyToledo', 'OccupySF'): 1, ('Maga1661', None): 1, ('DubMasterC', 'Spudlovr'): 1, ('JeffSharlet', None): 1, ('leeand00', 'labgrrl'): 1, ('timmytink', 'TheEdShow'): 1, ('CorabelleFoster', None): 1, ('OccupyBham', 'OccupySF'): 2, ('OKWIFIP', None): 1, ('TheLoneDeranger', None): 1, ('HenryZeniewicz', 'Spudlovr'): 1, ('UnderdogLib', 'anonops'): 1, ('rjkuyvenhoven', 'jeremyscahill'): 1, ('ShareTheMic', None): 2, ('SabzBrach', 'diceylee808'): 1, ('DonShappelle', None): 3, ('rosebudcassidy', None): 1, ('xxkkxxkkxx', None): 1, ('hadearkandil', None): 4, ('vickycrampton', 'Leslie_Wolfe'): 1, ('Shikona', 'SupermanHotMale'): 1, ('JoBremerton', 'anonops'): 1, ('jxxmxx', 'OccupySF'): 1, ('ShelleyBuck', 'CalFireNews'): 1, ('TeeDee1', None): 1, ('Findantruth', None): 2, ('Wanderer19', 'OccupySF'): 2, ('cassandraheresy', 'UnanimousHQ'): 1, ('Tosfm', 'timmytink'): 1, ('OccupyWallSt', 'diceylee808'): 1, ('dkirkland', None): 1, ('OccupyAnchorage', None): 1, ('Tawanda46', 'Ilikewoods: @Tawanda46'): 1, ('lukelavanway', 'OccupyWallSt'): 1, ('pandazizou', 'TrueGilby'): 1, ('LApropguy', None): 1, ('kittylight', 'OccupySF'): 1, ('occupyRiverside', 'OccupyRedlands: @OccupyRiverside @OccupyLA @OWSLosAngeles'): 1, ('Moizzil', None): 1, ('ActivistsVoice', 'OccupySantaFe'): 1, ('leeand00', 'LucyKafanov'): 1, ('mrexecutive49', None): 1, ('iKrazie', None): 2, ('lancejgosnell', 'OccupySantaFe'): 1, ('NorthernEye1', None): 1, ('paralax999', 'OccupyWallSt'): 1, ('tazshedevl', None): 1, ('chhockle', 'OccupySF'): 2, ('Beglitched_news', None): 1, ('The99Percenters', 'OccupySantaFe'): 1, ('MiyazakiMegu', 'BuoySirUs'): 1, ('melissaS130', 'ChipleKira: @KeithOlbermann'): 1, ('fibercrystals', None): 2, ('The99Percenters', 'OccupySF'): 1, ('King_Gonad', 'jeremyscahill'): 1, ('Benjamin_Flex', None): 1, ('memimemimy', 'FreakOutNation'): 1, ('occupyRiverside', 'OccupyRedlands @OccupyRiverside @OccupyLA @OWSLosAngeles'): 1, ('TellyStern', None): 1, ('wrwarwick', 'anonops'): 1, ('TheClvrElephant', None): 1, ('OccupyAppleton', 'OccupySF'): 3, ('PyreBorn', 'OccupySF'): 2, ('GorlestonJames', None): 1, ('USABanker', None): 2, ('wavyca', None): 2, ('1sideways8', 'allisonkilkenny'): 1, ('WeOccupyAmerica', None): 1, ('OccupySomething', 'TorianBrown'): 1, ('shilkytouch', 'schwartzbrown'): 1, ('MiyazakiMegu', 'kallou22'): 1, ('markwhitt1', 'TheNewDeal'): 3, ('KliphScurlock', 'TheOther99: @TheOther99'): 1, ('adamwebs1', 'occupyRiverside'): 1, ('ElizabethJone18', None): 4, ('Barry_O44', None): 2, ('Beal187', 'AnonymousIRC'): 1, ('INTLRevolver', 'LJSearles'): 1, ('bellanerdette', 'jeremyscahill'): 1, ('guaracybm', None): 2, ('spacefroot', 'diceylee808'): 1, ('TheZparty', 'findantruth'): 1, ('watergatesummer', 'McBlondeLand'): 2, ('melanie0010', 'OccupySF'): 1, ('HenryZeniewicz', 'azmoderate'): 1, ('AndyDiogenes', None): 1, ('J4LYN', 'hadearkandil'): 1, ('AcePants', 'diceylee808'): 1, ('ishtarmuz', 'WeOccupyAmerica'): 1, ('sandra1672', 'diceylee808'): 1, ('cgpb', 'TimothyChutes'): 1, ('A_Lambillion', 'GuerillaMonk'): 1, ('Libertarian52', 'PoliticsOfFear'): 1, ('Canarycall', 'diceylee808'): 1, ('URSUExternal', 'pixls'): 1, ('luxou812', None): 1, ('StargazingFire', 'OccupySantaFe'): 1, ('tommasonic', None): 1, ('TheBookVlogger', None): 2, ('Maikel_Mangapul', 'AngieignA: @Maikel_Mangapul'): 1, ('diydanna', 'diceylee808'): 1, ('djphilh', None): 1, ('CraigLong12', None): 1, ('micchiato', 'diceylee808'): 1, ('Spudlovr', 'tazshedevl'): 1, ('skweekie', 'UnderdogLib'): 1, ('vallie', 'TheEdShow'): 1, ('The_Proletarian', 'AnonymousIRC'): 1, ('KurtSchlichter', 'CalFireNews'): 1, ('robinjpearson', 'BlackLagooner'): 1, ('OpWallStreet', 'angelsavant'): 1, ('steadyblogging', 'OccupyWallSt'): 1, ('bluedutchess726', 'diceylee808'): 1, ('PyreBorn', None): 11, ('jcporter1', 'TimothyS'): 2, ('pyrmontvillage', None): 1, ('markwhitt1', 'anonops'): 1, ('franniebobannie', 'timmytink'): 1, ('NationalReset', 'dominicksaia'): 1, ('GRTHEGREATEST1', 'PoliticsOfFear'): 1, ('kyduchess', 'PhattyF'): 1, ('xBigHausx', None): 1, ('OccupySomething', 'PoliticsOfFear'): 2, ('RyanHigginsRyan', None): 1, ('OpWallStreet', 'TorianBrown'): 1, ('strawprophet', 'OccupyAnchorage: “@aldrichj'): 1, ('okiebowl', 'WeOccupyAmerica'): 1, ('HeartOfOrion', 'OccupySF'): 1, ('JennaRayJedi', 'majorityfm'): 1, ('rowan_celeste', 'TheNewDeal'): 1, ('Sinj1', 'PirateWench'): 2, ('Jeannie_Hartley', None): 2, ('adamluebke', 'KeithOlbermann'): 1, ('OpPanama', 'anonops'): 1, ('leeand00', 'BigMoe_'): 1, ('ReemMosleh', 'OccupyWallSt'): 1, ('Man0101oWar', 'patrickshampine'): 1, ('Aine', 'youtube'): 2, ('FunkynFortunate', 'mytwistedwords1: @jacobchicago'): 1, ('ratkins', 'KeithOlbermann'): 1, ('martinperna', 'jeremyscahill'): 1, ('bluedutchess726', 'OOOlson'): 1, ('eraser', 'meiwd'): 1, ('mattmdiaz', 'OccupySantaFe'): 1, ('VoiceFromLeft', 'OccupyMainSt'): 1, ('AnonNCarolina2', 'diceylee808'): 1, ('satnitedj', None): 1, ('AnonNCarolina2', None): 1, ('bluedutchess726', 'UnderdogLib'): 2, ('Shikona', None): 1, ('Canarycall', 'TorianBrown'): 1, ('No_Bozo', 'burgerbuilders'): 1, ('literaryleft', 'ClassStruggler'): 1, ('peaceonstreets', 'Spudlovr'): 1, ('cwebba1', 'Titleixbaby'): 1, ('UnseenLetterbox', 'PyreBorn'): 1, ('SMitchell38', 'TheNewDeal'): 2, ('INTLRevolver', 'vallie'): 1, ('CJEssex', None): 1, ('miixxy', 'AnonNCarolina2'): 1, ('OpeningPage', 'OpWallStreet'): 1, ('1940_1980', 'anonops'): 1, ('Toasterrr', 'diceylee808'): 1, ('LuckyBunnyRich', None): 1, ('themick1962', 'derekahunter'): 1, ('CrisisJones', None): 1, ('SocialApocalyps', 'i8wamu'): 1, ('judderwocky', 'TorianBrown'): 1, ('MuxerMaravilla', None): 1, ('lynx55', 'kittylight: “@anonops'): 1, ('StargazingFire', 'TheLoneDeranger'): 1, ('evilllamas', None): 1, ('Ben4a', None): 1, ('superreturns', 'CharlesBivona'): 1, ('thewindsofwar', 'i8wamu'): 1, ('the_other_HK', 'TheNewDeal'): 1, ('carrig41', 'butttless'): 1, ('bratmeg', 'OccupyMN'): 1, ('burgerbuilders', 'OccupySF'): 1, ('Kaymee', 'TheNewDeal'): 1, ('RevLea', 'ElizabethJone18'): 1, ('linzgay', 'OccupyVancouver'): 1, ('kyduchess', 'OccupySantaFe'): 1, ('RoyE_AU', 'pyrmontvillage'): 1, ('SpreadButter', 'Barry_O44'): 2, ('BigBizznass', 'OccupySF'): 2, ('kikiki321', 'WeOccupyAmerica'): 1, ('billgcta', 'TheNewDeal'): 1, ('ryanjnagle', 'martinperna'): 1, ('DratSaddamWCK', 'anonops'): 1, ('KVSwagger', 'diceylee808'): 1, ('burgerbuilders', 'diceylee808'): 1, ('FiteTruth2Power', None): 1, ('cassandraheresy', 'Dharmapunk12'): 1, ('DownWithTheBull', 'Kaymee'): 1, ('Hanksingle', 'TorianBrown'): 1, ('Shiftinthinking', 'PyreBorn'): 3, ('Jelperman', 'MattBors'): 1, ('Teddy2500', None): 1, ('pqpolitics', 'Min_Reyes'): 1, ('feoilseantach', None): 1, ('mangobeach', None): 1, ('Spudlovr', 'dominicksaia'): 1, ('melissaS130', 'anonops'): 1, ('siggysour', None): 1, ('RowleyGirl_4', 'CountdownKO'): 1, ('BradMarston', 'derekahunter'): 1, ('cooperrayvisual', None): 2, ('lukec', None): 1, ('malcolmjackson', 'kathiewallace'): 1, ('ElizabethJone18', 'PyreBorn'): 1, ('melanie0010', 'Anon_Lobo'): 1, ('ARTIESWORLD', None): 1, ('markwhitt1', 'kcravenmusic: @OccupyFlorida'): 1, ('NWDowns', 'PyreBorn'): 8, ('frank95054', 'PoliticsOfFear'): 1, ('OccupyPics', None): 1, ('malaeus', 'OccupyComms'): 1, ('watergatesummer', 'BlueDuPage'): 1, ('Kaydreein', 'DonShappelle'): 1, ('Renaistweet', 'CalFireNews'): 1, ('MarlowesFaustus', 'mpjackson'): 1, ('Occupy_duess', 'TheBookVlogger'): 1, ('welchem89', 'OccupyWallSt'): 1, ('timecat5', None): 1, ('malaeus', 'Asher_Wolf'): 1, ('Santamoniker', None): 1, ('JReznickPhoto', None): 1, ('madhousemirror', 'peterrothberg'): 1, ('superbranch', 'diceylee808'): 1, ('Ronnie_XXIII', None): 1, ('Angelete71', 'OccupySF'): 1, ('Ironic_IconsArt', 'OccupyHouston'): 1, ('identitytempl8', 'ClassicBookworm'): 1, ('mattmdiaz', 'hadearkandil'): 1, ('wavyca', 'TooBigToBail'): 1, ('andrewbigdoor', 'diceylee808'): 1, ('TwoBodyProblem', None): 1, ('UsRevolt11', 'WeOccupyAmerica'): 1, ('misfitjen', 'anonops'): 1, ('phillipanderson', 'MattBors'): 1, ('DratSaddamWCK', None): 1, ('phill_spiker', 'diceylee808'): 1, ('arielpoland', 'ForseenUnNamed'): 1, ('mfu', 'jeremyscahill'): 1, ('jimmytheheel', 'k_l_h_j'): 1, ('Beyerstein', None): 1, ('inowgb', None): 1, ('wrenandox', 'LJSearles'): 1, ('PamelaDrew', None): 1, ('Nick_Est', 'cjohanns'): 1, ('tylerhjames64', 'PyreBorn'): 1, ('Calin_EU', 'OccupySF'): 1, ('GRTHEGREATEST1', None): 1, ('DiverCTH', 'butttless'): 1, ('Jockque', 'jackwadeshow'): 1, ('seasonothebitch', None): 1, ('airialclark', 'hadearkandil'): 1, ('6eep6eep', 'jackwadeshow'): 1, ('SonDancing', 'diceylee808'): 1, ('Kaymee', 'AnonNCarolina2'): 1, ('lovexinfiniti', None): 1, ('TurboKitty', None): 1, ('shannona_smith', None): 1, ('korpdawg', 'TheNewDeal'): 1, ('red_rogers', 'mpjackson'): 1, ('Zintia_nl', 'lawscribe'): 1, ('WhatMattersNews', 'mrsteele28'): 1, ('tommymiles', 'hadearkandil'): 1, ('oPHILOSORAPTORo', 'Trutherton'): 1, ('BSox_Revolution', None): 2, ('ma5terenexili0', 'TorianBrown'): 1, ('heidi6300', 'Badgitator'): 1, ('UnifiedLeft', 'OccupyMainSt'): 1, ('lexcampbell', 'marcocesarsaenz'): 1, ('NYC_GMC', 'marcocesarsaenz'): 1, ('sundeux', None): 1, ('Kaymee', 'OccupySF'): 1, ('King_Gonad', 'TheNewDeal'): 1, ('rocketgirl3914', None): 1, ('forever_flavor6', 'joehump52: @OccupyWallStNYC'): 1, ('ihadaneviltwin', 'MeTheMessinger'): 1, ('holidaygoheavy', 'ElizabethJone18'): 1, ('IronChad', 'TriRunner302'): 1, ('Spudlovr', 'millbot'): 1, ('PMgeezer', 'rspires1952'): 1, ('madeline_oh', 'seasonothebitch'): 1, ('Theninie28', None): 1, ('shannona_smith', 'TheNewDeal'): 1, ('ClowdClod', None): 1, ('megather', 'BaileyMcC'): 1, ('Tokyo_Tom', 'akrockefeller'): 1, ('Valerie0714', None): 1, ('LiviaBorak', 'lawscribe'): 1, ('IglooAnonymous', 'diceylee808'): 1, ('OccupyWallSt', 'Badgitator'): 1, ('DjSknee', 'TommySwitch'): 1, ('Beelzebjorn', 'hadearkandil'): 1, ('javimorillo', 'tinadupuy'): 1, ('DemonProphet', 'ElizabethBrossa'): 1, ('heartbraden', 'hadearkandil'): 1, ('AlvinsMom', 'OccupySantaFe'): 1, ('critmasspanic', 'anonops'): 1, ('evanbanks', None): 1, ('pishka', 'OccupyMainSt'): 1, ('mangobeach', 'TurboKitty'): 1, ('GuerrillaDaily', 'sundeux'): 1, ('MazMHussain', None): 1, ('MikePFrank', 'occupythefuture'): 1, ('amandafrahm', None): 1, ('acid_', 'PennyRed'): 1, ('PyreBorn', 'Badgitator'): 1, ('Titleixbaby', 'Beyerstein'): 1, ('EdenDiBianco', None): 1, ('RevLea', 'Benjamin_Flex'): 1, ('occupyRiverside', 'OccupySF'): 3, ('deviousjenna', 'OccupySF'): 1, ('red_rogers', None): 1, ('WhatMattersNews', 'lovexinfiniti'): 1, ('SvenStraatveit', 'TorianBrown'): 1, ('matter_of_facts', None): 4, ('shannona_smith', 'AlanColmes'): 1, ('KKElephant', 'Badgitator'): 1, ('KaraAlesandra', 'KeithOlbermann'): 1, ('OccupyMainSt', 'Badgitator'): 1, ('lonnie509', 'TheNewDeal'): 1, ('soybomber', 'OccupyMainSt'): 1, ('modsix', 'anonops'): 1, ('bonesbeach', None): 1, ('kittylight', None): 1, ('rattlecans', 'cjohanns'): 1, ('starshollowgzt', 'UltraVerified'): 1, ('OccupyBham', 'Badgitator'): 1, ('LauraShezBar', 'Badgitator'): 1, ('BlackOceanGhost', 'Badgitator'): 1, ('Xcntrik', None): 1, ('Luchia_', 'Valerie0714'): 1, ('DemonProphet', 'OccupyWallSt'): 1, ('OccupySeattle', 'Badgitator'): 1, ('laurenj_ellis', 'OccupyWallSt'): 1, ('S_Paden11', 'Badgitator'): 1, ('realsociology', 'TheOther99'): 1, ('LRJD', 'derekahunter'): 1, ('CTO9000', None): 1, ('evaottesmith', 'guardian'): 3, ('AlvinsMom', 'PhattyF'): 1, ('MikkiCZ', 'Badgitator'): 1, ('WhatMattersNews', 'millbot'): 1, ('deezthugs', 'jeremyscahill'): 1, ('ZK82', 'anonops'): 1, ('CrownCityCuts', 'Badgitator'): 1, ('melanie0010', 'sundeux'): 1, ('raycapiral', 'deniseromano'): 1, ('chillchuckchill', 'shannona_smith'): 1, ('dominique_e_', None): 2, ('gaspsiagore', None): 1, ('Manpuncher', 'leighalexander'): 1, ('Garou_Cuac', 'CharlesBivona'): 1, ('MikeHeXt', 'diceylee808'): 1, ('AntonioFlores00', 'Badgitator'): 1, ('Beelzebjorn', 'amandafrahm'): 1, ('GlobalRevLive', 'sundeux'): 1, ('TheNewPopulists', 'k_l_h_j: @mariacaranto'): 1, ('goundermytongue', 'millbot'): 1, ('tourtored1221', None): 2, ('shannona_smith', 'Shoq'): 1, ('galatorg', 'OccupySF'): 1, ('TheNewPopulists', 'BSox_Revolution'): 1, ('ClassicBookworm', 'Badgitator'): 1, ('kalpazan1', None): 4, ('naveplanetoide', 'TheNewDeal'): 2, ('Mikee1da', 'sundeux'): 1, ('mattmdiaz', 'Badgitator'): 1, ('shannona_smith', 'daveweigel'): 1, ('JoAllisonHenn', 'kelly_carlin'): 1, ('blackdognorth', 'Benjamin_Flex'): 1, ('thewindsofwar', 'Badgitator'): 1, ('NinaNerdFace', 'OccupyMainSt'): 1, ('laflifa', 'TheNewDeal'): 1, ('Break1_9', 'Badgitator'): 1, ('paris1939', 'TheNewDeal'): 1, ('pswswiney', 'KeithOlbermann'): 2, ('MajorLizUSA', None): 2, ('dgsr505', 'UnanimousHQ'): 1, ('UnderdogLib', None): 2, ('josh_ulino', 'Badgitator'): 1, ('JackDeTate', 'LJSearles'): 1, ('MitchHurley', None): 2, ('deviousjenna', 'Badgitator'): 1, ('radiofreejordan', 'lawscribe'): 1, ('Matias_DreadScy', 'Badgitator'): 1, ('1Viperbabe', None): 2, ('sardonicallyme', 'OccupyMainSt'): 1, ('jimmytheheel', 'TurboKitty'): 1, ('deviousjenna', 'OccupySantaFe'): 1, ('bluedutchess726', 'Valerie0714'): 1, ('HahaYoureFunny', 'diceylee808'): 1, ('Johnnyjuby', 'Badgitator'): 1, ('zenbazooka', 'MJMcKean'): 1, ('randytweets510', 'DaveMc99TA'): 1, ('MikeHeXt', 'BABYDIABOLICAL'): 1, ('elChepi', None): 1, ('watergatesummer', 'LibertyBelle4'): 1, ('dove_hawk', 'kittylight: “@Truth247'): 1, ('IamNickyT', 'ElizabethJone18'): 1, ('OccupySeattle', 'BlackLagooner'): 1, ('Desencubridor', 'Badgitator'): 1, ('anghosn', None): 1, ('DeemaM', 'Badgitator'): 1, ('dove_hawk', 'kittylight: “@LOLGOP'): 1, ('alanranta', None): 1, ('TopCat_TC', 'timmytink'): 1, ('TheChaseNight', 'AnonNCarolina2'): 1, ('Break1_9', 'diceylee808'): 1, ('sidescrollers', None): 1, ('rocketgirl3914', 'Badgitator'): 1, ('angelindiskies', 'Badgitator'): 1, ('RowleyGirl_4', None): 1, ('6eep6eep', 'Badgitator'): 1, ('seemegonzo', 'Badgitator'): 1, ('josh_ulino', 'jeremyscahill'): 1, ('TheBookVlogger', 'Badgitator'): 1, ('heatherhydra', 'BlackLagooner'): 1, ('mangobeach', 'tazshedevl'): 1, ('PaddyJManning', None): 1, ('_in_lakech', 'anonops'): 1, ('Tokyo_Tom', 'OccupyMainSt'): 1, ('OccupyHolidays', 'Teddy2500'): 1, ('matthewjcerrato', None): 1, ('indigojourney', 'sundeux'): 1, ('PASmokey', 'OccupySF'): 2, ('starshollowgzt', 'LibertyBelle4'): 1, ('BangoRkt', 'KBDPHD'): 1, ('bluedutchess726', 'OccupyMainSt'): 1, ('ADAPTChicago', 'Badgitator'): 1, ('andrewbigdoor', 'Badgitator'): 1, ('LibertyBelle4', None): 1, ('HKLFilms', None): 1, ('nayan1875', 'NeffKen: @MikeBloomberg @NYCMayorsOffice @NYGovCuomo'): 1, ('NasJab', 'hadearkandil'): 1, ('holidaygoheavy', None): 1, ('esd2000', 'Valerie0714'): 1, ('phillipanderson', 'seasonothebitch'): 1, ('search4truth1', 'UnderdogLib'): 1, ('dove_hawk', 'OccupySF'): 1, ('alphaisforever', None): 1, ('Nicotone', 'Badgitator'): 1, ('good2bgreene', 'sundeux'): 1, ('OhMeadhbh', 'youtube'): 3, ('vekleft', None): 3, ('Snarkathon', 'Badgitator'): 1, ('Myss_Relentless', 'Badgitator'): 1, ('skweekie', 'sundeux'): 1, ('ellinjaa', 'Badgitator'): 1, ('ElizabethJone18', 'OccupySF'): 1, ('Eva_in_Oregon', 'PyreBorn'): 1, ('Procoolgranny', 'sunshineejc: @OccupyWallStreet'): 1, ('_joaniegirl', 'Zoocritter'): 1, ('Kevinovations', 'TorianBrown'): 1, ('aarondhknight', 'jeremyscahill'): 1, ('RevLea', 'Badgitator'): 1, ('kikiki321', 'OccupyMainSt'): 1, ('DonShappelle', 'OccupyMainSt'): 1, ('lancejgosnell', 'sundeux'): 1, ('mtlunasea', None): 1, ('darrenlund', 'hadearkandil'): 1, ('DieLowen', 'OccupyMainSt'): 1, ('theJGway', 'AnonKitsu'): 1, ('justgrateful', None): 1, ('Ciudadano_Zer0', 'OccupyMainSt'): 1, ('rustymk2', 'alphaisforever'): 1, ('angelsavant', 'ArrghPaine'): 1, ('arthurfragoso', 'Badgitator'): 1, ('HahaYoureFunny', 'WeOccupyAmerica'): 1, ('Little_Luna1', 'Badgitator'): 1, ('veggieterrain', 'MMFlint'): 1, ('leeand00', 'kikiki321'): 1, ('SalCtrProg', 'millbot'): 1, ('Queiroga_', 'anonops'): 1, ('Sekhmetnakt', None): 4, ('LiveFree24x7', 'cmfcknw'): 1, ('King_Gonad', 'ZandarVTS'): 1, ('ElizabethJone18', 'holidaygoheavy'): 1, ('watergatesummer', 'jmalsin'): 1, ('americanzpring', 'PyreBorn'): 2, ('DanaGirl', 'GreeGreece'): 1, ('danielfiegesays', None): 7, ('okiedeb64', None): 1, ('skweekie', 'TurboKitty'): 1, ('MarcoCesarSaenz', 'OccupyWallSt'): 1, ('acatman', 'OccupyMainSt'): 1, ('LinkIzMyHomeboy', 'Badgitator'): 1, ('reneeroman300', 'MikeHeXt'): 1, ('JosephKBlack', None): 3, ('oakAsfan24', 'TheNewDeal'): 1, ('MyDixie_Wrecked', 'Badgitator'): 1, ('OccupyOrlMedia', 'sundeux'): 1, ('jorbot22', None): 1, ('ArianaFaustini', 'sundeux'): 1, ('AGrandKerfuffle', 'JLownLaw'): 2, ('LeftSlashRight', 'peterrothberg'): 1, ('farewellRPBLC', None): 1, ('LGwhat', 'Badgitator'): 1, ('Muslims4RonPaul', 'Moizzil'): 1, ('bazingainc', 'kkalmes2'): 1, ('Break1_9', 'sundeux'): 1, ('SvenStraatveit', 'BlackLagooner'): 1, ('CACR25', 'Badgitator'): 1, ('OccupySeattle', 'diceylee808'): 1, ('halabalusa', 'CharlesBivona'): 1, ('bebird', 'Badgitator'): 1, ('MarlowesFaustus', 'TheNewDeal'): 2, ('CultOfAngelique', None): 1, ('Robyn_DaHood', None): 1, ('Nosapaid', 'BCeeGee'): 1, ('imchasesbrain', 'Badgitator'): 1, ('Gloves4Masons', 'tommasonic'): 1, ('oglhaiti', 'dominique_e_'): 1, ('AGrandKerfuffle', 'mobius1ski'): 1, ('guykanon', 'red_rogers'): 1, ('papabearblaker', 'TorianBrown'): 1, ('jjmiphoto', None): 1, ('tnr', None): 1, ('KrissyRubbles', 'LiveFree24x7'): 1, ('48thave', 'OccupySF'): 1, ('kidcaregiver', 'OccupySF'): 1, ('liveforthesun', 'PoliticsOfFear'): 1, ('Kaydreein', 'OccupyMainSt'): 1, ('skweekie', 'DratSaddamWCK'): 1, ('emmaleelife', 'AnonKitsu'): 1, ('plathrop7', 'Badgitator'): 1, ('AnonyMissBadger', 'occupygreenbay'): 1, ('RayPayola', 'anonops'): 1, ('Jennyjinx', 'TheNewDeal'): 1, ('starshollowgzt', None): 1, ('OccupySeattle', 'OccupySF'): 1, ('jimmytheheel', None): 3, ('ShawnMilli', 'rustymk2'): 1, ('frogsarelovely', 'DaveMc99TA'): 1, ('KeithOlbermann', 'ChipleKira'): 1, ('bossman101', None): 1, ('LBaum83', None): 1, ('margiemetz44', None): 1, ('LaidBackFarmer', 'deniseromano'): 1, ('leeand00', 'Spudlovr'): 2, ('Kaymee', 'OccupyMainSt'): 1, ('letfreedomspk', 'deniseromano'): 1, ('nom_de_fume', 'OccupyWallSt'): 1, ('concretebeachRI', None): 1, ('GlobalOccupier', 'sundeux'): 1, ('RafaelMorataya2', 'SEIUenEspanol'): 1, ('MAK7591', 'kkalmes2'): 1, ('alaskaRP', 'OccupyWallSt'): 1, ('radiovillain', None): 1, ('franniebobannie', 'MitchHurley'): 1, ('UnifiedLeft', 'TorianBrown'): 1, ('maximosis', 'KeithOlbermann'): 1, ('nom_de_fume', 'TheNewDeal'): 1, ('nbcapobia', 'Badgitator'): 1, ('WeROccupyUnited', 'OccupySF'): 1, ('Psy51', 'Badgitator'): 1, ('katwithabook', 'OccupySF'): 1, ('daystarpro', None): 1, ('chachiTHEgr8', 'TheNewDeal'): 1, ('dannydoodar', 'OccupyMainSt'): 1, ('mgpettit', 'OccupySF'): 2, ('MAK7591', None): 1, ('NEFreedomRide', None): 1, ('3rdShftSexClerk', 'KeithOlbermann'): 1, ('kikiki321', 'KeithOlbermann'): 1, ('NailedToMyName', None): 1, ('justgrateful', 'Genespark: @justgrateful @ows'): 1, ('Bobbitz1944', 'TheNewDeal'): 1, ('mjsunflowerjj', 'KeithOlbermann'): 1, ('Hardline_Stance', 'liveforthesun'): 1, ('saschamaj', None): 2, ('Luchia_', 'KeithOlbermann'): 1, ('darianknight', None): 2, ('bebird', 'KeithOlbermann'): 1, ('BadMonsanto', 'OccupySF'): 1, ('mgpettit', 'BigBizznass'): 1, ('hyperlocavore', None): 1, ('Gobanian', 'CharlesBivona'): 1, ('Athenae', 'millbot'): 1, ('franniebobannie', 'hadearkandil'): 1, ('feskone', None): 1, ('keeth', 'lukec'): 1, ('ElleCSid', 'TheNewDeal'): 1, ('rattlecans', None): 4, ('justforclasss', 'Badgitator'): 1, ('snarnold1', None): 2, ('mangobeach', 'peterrothberg'): 1, ('PsychoNotLiz', None): 1, ('JackHart67', 'tnr'): 1, ('jugganautical', 'alphaisforever'): 1, ('kidcaregiver', 'sundeux'): 1, ('xalisae', 'DeadJack57'): 2, ('kallou22', 'sundeux'): 1, ('starshollowgzt', 'KeithOlbermann'): 1, ('WeROccupyUnited', None): 3, ('klejko', 'anonops'): 1, ('WhatMattersNews', 'margiemetz44'): 1, ('quirkyme', 'KeithOlbermann'): 1, ('TheDejaVuDu', None): 1, ('skooks', 'KeithOlbermann'): 1, ('Beelzebjorn', None): 1, ('caine2000', None): 1, ('JC_Christian', None): 1, ('occupygreenbay', 'sundeux'): 1, ('TheRagingCelt', 'KeithOlbermann'): 1, ('CynthiaY29', 'CalFireNews'): 1, ('Unity_c7', None): 2, ('k_l_h_j', 'chachiTHEgr8'): 1, ('JahFurry', 'seasonothebitch'): 1, ('shortformernie', None): 1, ('Aine', 'KeithOlbermann'): 1, ('timetrick', 'anonops'): 1, ('achariw', 'Zoocritter'): 1, ('trevineanise', 'KeithOlbermann'): 1, ('emiliawrites', 'seasonothebitch'): 1, ('singlepayer', None): 3, ('Anti_Secret', 'anonops'): 1, ('randytweets510', 'jeremyscahill'): 1, ('bfrysworld', None): 3, ('skweekie', 'Robyn_DaHood: @headhntr @Fight4Fairness @YourAnonNews'): 1, ('Tokyo_Tom', 'miixxy'): 1, ('Can_ada', 'because_thalb'): 1, ('cherrytreecig', 'pourmecoffee'): 1, ('NWDowns', 'PsychoNotLiz'): 1, ('MAK7591', 'KeithOlbermann'): 1, ('lipstickham', 'sundeux'): 1, ('jlr_1969', 'KeithOlbermann'): 1, ('DaveMc99TA', 'Valerie0714'): 1, ('OccupyWallStNYC', 'KeithOlbermann'): 1, ('tinajbowen', 'CharlesBivona'): 1, ('StargazingFire', 'sundeux'): 1, ('_in_lakech', None): 2, ('five15design', 'KeithOlbermann'): 1, ('starshollowgzt', 'McBlondeLand'): 1, ('Ronc99', None): 1, ('rhabarbeer', None): 1, ('ohohEN', None): 1, ('because_thalb', 'hyperlocavore'): 1, ('FinchHaven', 'KeithOlbermann'): 1, ('KNDEA', 'diceylee808'): 1, ('josephdemaria', 'KeithOlbermann'): 1, ('The_News_DIVA', None): 4, ('SuzanneTwoTon', 'KeithOlbermann'): 1, ('skweekie', 'CultOfAngelique'): 1, ('WashPahpin', None): 1, ('mykatmikey', 'Shoq: @AP'): 1, ('AtomAu', 'OccupySF'): 1, ('MAK7591', 'randytweets510'): 1, ('SuzanneTwoTon', 'JC_Christian'): 1, ('Kevinovations', 'Badgitator'): 1, ('cgartmann24', 'CharlesBivona'): 1, ('bmaz', 'phillipanderson'): 1, ('thewindsofwar', 'WeROccupyUnited'): 2, ('FreiahD', 'KeithOlbermann'): 1, ('TomMcQuillen', None): 2, ('mbooshay', 'livestream'): 1, ('AnoniW33ZY', 'diceylee808'): 1, ('rckvm', 'KeithOlbermann'): 1, ('Jessica_Shearer', 'mkink'): 1, ('buckzollo', 'GhostPanther'): 1, ('VegasPhotog', 'jimmytheheel: @TurboKitty'): 1, ('Dave_Amato', None): 1, ('revrendoni', 'WeOccupyAmerica'): 1, ('frogsarelovely', 'TTSCanada'): 1, ('Screwcomforttoo', 'Badgitator'): 1, ('vtknitboy', 'WeOccupyAmerica'): 1, ('starshollowgzt', 'JC_Christian'): 1, ('Amhurlei', None): 1, ('billgcta', 'KeithOlbermann'): 1, ('StigNasty', 'TheNewDeal'): 1, ('thewindsofwar', 'PyreBorn'): 2, ('lipstickham', 'shannona_smith'): 1, ('Anti_Secret', 'PyreBorn'): 1, ('christypaffgen', None): 1, ('michaelidov', None): 1, ('MiyazakiMegu', 'Min_Reyes'): 2, ('captainkika', None): 1, ('YezeniaPoulsen', 'allisonkilkenny'): 1, ('deviousjenna', 'alanranta'): 1, ('boilthebeast', 'azmoderate'): 1, ('3lis3Ashl3y', 'sundeux'): 1, ('kaatje36', None): 2, ('AnonNCarolina2', 'ChipleKira'): 2, ('1sideways8', None): 1, ('jimgigliotti', 'Spudlovr'): 3, ('jeskriske', 'KeithOlbermann'): 1, ('OccupyWallStNYC', 'mobius1ski'): 1, ('bobbarrick', None): 1, ('themojowire', None): 2, ('alnayeb', 'TheNewDeal'): 1, ('babaoreilymike', 'Beelzebjorn'): 1, ('Rebecca1nAZ', 'kkalmes2'): 1, ('IELMCC', 'UnionPlus'): 1, ('NWDowns', 'KeithOlbermann'): 1, ('shortcomment', None): 1, ('democrab', 'tnr'): 1, ('peterdamien', 'MJMcKean'): 1, ('skweekie', 'JosephKBlack: @andersoncooper'): 1, ('torinstweets', 'biinT'): 1, ('pulserazor', 'TheLoneDeranger'): 1, ('rkell', 'Jeannie_Hartley'): 1, ('sisbuzz', 'deniseromano: @Pirata13'): 1, ('kcravenmusic', 'mobius1ski'): 1, ('jimgigliotti', 'jeremyscahill'): 1, ('alaskaRP', 'jeremyscahill'): 1, ('DrBenway23', None): 1, ('JoshuaHol', 'PyreBorn'): 1, ('because_thalb', 'KeithOlbermann'): 1, ('babaoreilymike', 'UnderdogLib'): 1, ('rhodamine', None): 1, ('Joe_Bosh', None): 1, ('ptypk', 'ChipleKira'): 1, ('pishka', 'KeithOlbermann'): 1, ('because_thalb', 'occupygreenbay'): 1, ('Isajah78', 'edgewatercreek'): 1, ('skweekie', 'DanaGirl'): 1, ('SteveLussier', 'OccupySF'): 2, ('Santnamor2013', 'Tokyo_Tom'): 1, ('Prime_116', 'randytweets510'): 1, ('Tigergal62', 'TheNewDeal'): 1, ('IamNickyT', None): 1, ('MikeHeXt', 'AnonyOps'): 1, ('AtomAu', 'PyreBorn'): 1, ('RawwrrrRyan', 'KeithSmooth'): 1, ('Screwcomforttoo', None): 1, ('Demopublican1', 'red_rogers'): 1, ('Meisju', 'KeithOlbermann'): 1, ('MiyazakiMegu', 'Shoq'): 1, ('jasminepw', 'AddThis'): 1, ('RickSmithShow', 'seasonothebitch'): 1, ('banditelli', 'seasonothebitch'): 1, ('mospiritu', 'WeOccupyAmerica'): 1, ('ForseenUnNamed', None): 1, ('monkeyofdarknes', 'KeithOlbermann'): 1, ('grassrootzv', 'KeithOlbermann'): 1, ('mikeyhatesit', None): 1, ('cee_skwared', 'mobius1ski'): 1, ('GlobalRevLive', 'WeROccupyUnited'): 1, ('MastaMp3', 'KeithOlbermann'): 1, ('OccupyWallSt', 'mobius1ski'): 1, ('Kaymee', 'KeithOlbermann'): 1, ('GlobalOccupier', None): 1, ('RearNakedSmoke', 'KeithOlbermann'): 1, ('bmaz', 'seasonothebitch'): 1, ('malaeus', 'TheOther99: @TheOther99'): 1, ('UrbanForager', 'WeOccupyAmerica'): 1, ('FackBuster', 'KeithOlbermann'): 1, ('AnonyMissBadger', None): 1, ('66sicksfishstix', None): 2, ('malaeus', 'deniseromano'): 1, ('SolCollins', None): 1, ('roguetowel', None): 1, ('shortformblog', None): 1, ('starshollowgzt', 'mobius1ski'): 1, ('WThomasMarks', 'JoshuaHol'): 1, ('good2bgreene', 'WeROccupyUnited'): 1, ('misosusanowa', None): 2, ('MikeHeXt', None): 1, ('bori_214', 'anonops'): 1, ('thedrunkdriver', 'anonops'): 1, ('Daigansf', 'OccupyWallSt'): 1, ('ladykayaker', 'PyreBorn'): 1, ('christianepps', 'MotherJones'): 1, ('azmoderate', 'Valerie0714'): 1, ('leeand00', 'Tokyo_Tom'): 1, ('hjertebraaten', 'hadearkandil'): 2, ('wheeliesmom', 'Titleixbaby'): 1, ('BigBizznass', 'WeROccupyUnited'): 1, ('freespeach2', 'Screwcomforttoo'): 1, ('joanwalsh', 'JoshuaHol'): 1, ('sKgBdub', 'pixls'): 1, ('kaatje36', 'KeithOlbermann'): 1, ('ACCBiggz', 'KeithOlbermann'): 1, ('GeorgeAngus', 'PoliticsOfFear'): 1, ('derrickcrowe', 'KeithOlbermann'): 1, ('because_thalb', 'LJSearles'): 1, ('PyreBorn', 'JoshuaHol'): 1, ('KforKallisti', 'JosephKBlack'): 1, ('TeresaLove305', None): 1, ('Tokyo_Tom', 'TracyLeigh10'): 1, ('superreturns', 'anonops'): 1, ('yarddonky', 'Badgitator'): 1, ('Itsmekelly', 'KeithOlbermann'): 1, ('GomerWHoward', 'crewislife'): 1, ('skweekie', 'themojowire'): 1, ('soybomber', 'mobius1ski'): 2, ('Anonash', None): 1, ('klaptastic', None): 2, ('Break1_9', 'WeROccupyUnited'): 1, ('wavyca', 'DrBenway23'): 1, ('mangobeach', 'Valerie0714'): 1, ('Junomysteez', None): 1, ('prajnaseek', 'inwpress'): 11, ('FourYawkeyWay', None): 2, ('dmcrane', 'TheNewDeal'): 1, ('cassandraheresy', 'caine2000'): 1, ('myfaceinforums', 'DonShappelle'): 1, ('occupygreenbay', None): 1, ('KarynBakoCA', 'KeithOlbermann'): 1, ('lovecreekmama', None): 1, ('NotWilson1', 'anonops'): 1, ('OWNtheNWO', 'KeithOlbermann'): 1, ('Matt_Mahaney', 'KeithOlbermann'): 1, ('thomascarpe', None): 1, ('soybomber', 'KeithOlbermann'): 1, ('GreggJLevine', 'JoshuaHol'): 1, ('syaume', 'thedejavudu'): 1, ('jscottfitzwater', 'tinadupuy'): 1, ('OpWallStreet', None): 1, ('freespeach2', 'JoshuaHol'): 1, ('realthaniil', 'KeithOlbermann'): 1, ('Pootentate', None): 1, ('Aine', 'diceylee808'): 1, ('sarah_arrazola', None): 2, ('popart84', None): 2, ('Marshallsfuture', 'WeROccupyUnited'): 1, ('heatherhydra', 'KeithOlbermann'): 1, ('SooperMexican', 'JoshuaHol'): 1, ('mykatmikey', 'KeithOlbermann'): 1, ('Pixelfish', '52stations'): 1, ('dmcrane', 'Spudlovr'): 1, ('AgentMomost', 'KeithOlbermann'): 1, ('klaptastic', 'PyreBorn'): 1, ('Can_ada', 'sundeux'): 1, ('MikeElk', 'JoshuaHol'): 1, ('BuzzIzarownd', 'KeithOlbermann'): 1, ('BrainTrack', 'PlanetPOV'): 1, ('Tim_Sanchez', 'KeithOlbermann'): 1, ('MiroWare', 'mobius1ski'): 1, ('yarddonky', 'OccupyMainSt'): 1, ('UsRevolt11', None): 1, ('Break1_9', 'KeithOlbermann'): 1, ('LeightonCardno', 'KeithOlbermann'): 1, ('shonan_naminori', 'millbot'): 1, ('OccupyWallStNYC', 'Badgitator'): 1, ('pishka', 'anonops'): 1, ('Shadow_Frau', 'KeithOlbermann'): 1, ('Occupy_duess', 'WeROccupyUnited'): 1, ('ahebblet', None): 1, ('LeftSlashRight', None): 2, ('farewellRPBLC', 'mobius1ski'): 1, ('Gilgameshismist', None): 1, ('Kaydreein', 'SolCollins: @moposc'): 1, ('superreturns', 'OccupyWallSt'): 1, ('charliezugasti', 'Badgitator'): 1, ('liamrulz', 'PyreBorn'): 1, ('Hussein_Jaafar', 'KeithOlbermann'): 1, ('fresh__air', 'Badgitator'): 1, ('gypsy18', 'KeithOlbermann'): 1, ('watergatesummer', None): 1, ('wheeliesmom', 'lynx55'): 1, ('xbradx75', 'KeithOlbermann'): 1, ('stevenstim', 'ewshefarted'): 1, ('liubaldo_garcia', 'KeithOlbermann'): 1, ('Imlostinwyoming', 'Badgitator'): 1, ('WhatMattersNews', 'thomascarpe'): 1, ('liamrulz', 'holidaygoheavy'): 1, ('brendanorrell', 'WeROccupyUnited'): 1, ('Sweet_Reason', 'MoveOn'): 1, ('AnonBecca', 'WeROccupyUnited'): 1, ('lancejgosnell', 'Beelzebjorn'): 1, ('Occupy_duess', 'KeithOlbermann'): 1, ('VendettaStudies', None): 1, ('GreeGreece', 'TracyLeigh10'): 1, ('Andreas24x7', 'KeithOlbermann'): 1, ('LannersPub', None): 1, ('johntheBasterd', 'KeithOlbermann'): 1, ('mean_uhh', 'mobius1ski'): 1, ('GomerWHoward', 'TheNewDeal'): 1, ('southsidedeauce', 'opticaldensity'): 1, ('bexistntlcrisis', 'GhostPanther'): 1, ('Mattixbigs', 'OpWallStreet'): 1, ('NWDowns', 'JoshuaHol'): 1, ('AlexLFz', 'Tokyo_Tom'): 1, ('thedaltonallen', None): 2, ('LadybugJennlee', 'KeithOlbermann'): 1, ('JamesSTL77', 'Teddy2500'): 1, ('GomerWHoward', 'Anomaly100'): 1, ('diceylee808', 'mtracey'): 1, ('punkflamingo', None): 1, ('wheeliesmom', 'BlueDuPage'): 1, ('heatherhydra', 'OpWallStreet'): 1, ('guykanon', 'dominique_e_'): 1, ('AlohaEvery1', 'The99Pct'): 2, ('ArmAnon', 'KeithOlbermann'): 1, ('call_me_kimster', 'TheNewDeal'): 1, ('INTLRevolver', 'TheNewDeal'): 1, ('Irenehammer', 'kelly_carlin'): 1, ('Amanda_j_w', 'anjalimullany'): 1, ('americanzpring', 'JoshuaHol'): 1, ('because_thalb', 'Badgitator'): 1, ('eroberts123', None): 2, ('Occupythebanks', 'radicalbytes'): 1, ('colanana', 'SenatorSanders'): 1, ('dj_moni', 'WeROccupyUnited'): 1, ('mditeresa', 'ChipleKira'): 1, ('malaeus', 'KeithOlbermann'): 1, ('unklejohn', 'WeOccupyAmerica'): 1, ('baysocialist', 'WeROccupyUnited'): 1, ('antonborst', 'KeithOlbermann'): 1, ('ReTweetAgain', 'KeithOlbermann'): 1, ('ArianaFaustini', 'WeROccupyUnited'): 1, ('PASmokey', 'JoshuaHol'): 1, ('dannydoodar', 'bobbarrick'): 1, ('Marshallsfuture', 'Badgitator'): 1, ('wheeliesmom', 'OccupySF'): 1, ('Niahlist78', 'OpWallStreet'): 1, ('Moon_Shadows', 'mobius1ski'): 1, ('OccupyResults', None): 3, ('campeaux', 'KeithOlbermann'): 1, ('MarlowesFaustus', 'mobius1ski'): 1, ('AMSPRINGDOTORG', 'ARTIESWORLD'): 1, ('OccupyOrlMedia', 'OpWallStreet'): 1, ('MPlatt4', 'Leslie_Wolfe'): 1, ('mki_mom', 'JoshuaHol'): 1, ('NDHduz', 'JoshuaHol'): 1, ('alikat747', '“@OccupySF'): 1, ('Moon_Shadows', 'OccupySF'): 1, ('Psycho_Iko', 'anonops'): 1, ('antmuni', 'Badgitator'): 1, ('Artmom80', None): 1, ('AtomAu', 'TheNewDeal'): 1, ('SarinMods', 'Badgitator'): 1, ('BillCody', 'Badgitator'): 1, ('INTLRevolver', 'OpWallStreet'): 1, ('colanana', 'OpWallStreet'): 1, ('TexasCommie', 'UnifiedLeft'): 1, ('TX_YCL', 'UnifiedLeft'): 1, ('statmanbaugh', 'KeithOlbermann'): 1, ('RedWorkerbot', 'UnifiedLeft'): 1, ('Tosfm', 'diceylee808'): 1, ('sandppl', None): 1, ('amanicdroid', 'arclight'): 1, ('zenDR', 'diceylee808'): 1, ('Can_ada', 'BrainTrack'): 1, ('EddieAtari', None): 1, ('Niahlist78', 'WeROccupyUnited'): 1, ('branadams', 'dominique_e_'): 1, ('ismailhpolat', 'diceylee808'): 1, ('wheeliesmom', 'WeOccupyAmerica'): 1, ('phillipanderson', 'ChipleKira'): 1, ('Rusty626', 'mobius1ski'): 1, ('cjohanns', None): 1, ('because_thalb', 'Wonkette'): 1, ('babaoreilymike', 'Badgitator'): 1, ('LaidBackFarmer', 'KeithOlbermann'): 1, ('Guy_Tweeting', 'KeithOlbermann'): 1, ('wheeliesmom', 'McBlondeLand'): 2, ('americanzpring', 'ElizabethJone18'): 2, ('get_enlightened', 'diceylee808'): 1, ('Maguis25', None): 1, ('berkchops', 'KeithOlbermann'): 1, ('cartdawg', None): 2, ('CynthiaY29', 'PyreBorn'): 1, ('Craftmydemise', 'Badgitator'): 1, ('ShalyG', 'OpWallStreet'): 1, ('curiouscliche', 'DanielDenvir'): 1, ('maxberger', 'Badgitator'): 1, ('get_enlightened', 'RowleyGirl_4'): 1, ('evlance', 'KeithOlbermann'): 1, ('Kinniska', 'jackwadeshow'): 2, ('MiroWare', 'anonops'): 1, ('andrewmcgill', 'shortformblog'): 1, ('OccupyComms', None): 8, ('TheAngryindian', 'evaottesmith'): 1, ('MiyazakiMegu', 'J4LYN'): 1, ('Iron0xide', None): 3, ('Pootentate', 'ElizabethJone18'): 2, ('xica25', 'KeithOlbermann'): 1, ('ReaLiveArtist', 'CosmUnity'): 1, ('stcolumbia', None): 1, ('Shayne213', 'TexasCommie'): 1, ('kstatik', 'PyreBorn'): 1, ('cjohanns', 'Beelzebjorn'): 1, ('ChuckBaggett', None): 1, ('statikluft', 'TheNewDeal'): 1, ('HEALERBREE', 'allisonkilkenny'): 1, ('Procoolgranny', 'TheNewDeal'): 1, ('kidcaregiver', 'JoshuaHol'): 1, ('everydaymuslim', 'KeithOlbermann'): 1, ('jchicksrock', None): 1, ('MightyPenGirl', 'OpWallStreet'): 1, ('Obamaphile', 'WeOccupyAmerica'): 1, ('matt_v_824', 'Badgitator'): 1, ('MyArtisticHome', None): 1, ('Lusho0487', 'anonops'): 1, ('lancejgosnell', 'WeROccupyUnited'): 1, ('monicareida', 'micahuetricht'): 1, ('theblej', None): 3, ('humanright2home', None): 4, ('HEALERBREE', 'OccupyWallSt'): 1, ('lawscribe', 'KeithOlbermann'): 1, ('Pootentate', 'PyreBorn'): 1, ('GoOnBeCrazy', 'KeithOlbermann'): 1, ('tourtored1221', 'PsychoNotLiz'): 1, ('greenthumbnails', 'WeROccupyUnited'): 1, ('sindikaria', None): 4, ('NashaPao', None): 1, ('J4LYN', 'diceylee808'): 1, ('LeftSlashRight', 'singlepayer'): 1, ('colanana', 'TorianBrown'): 1, ('bluedutchess726', 'WeOccupyAmerica'): 1, ('HEALERBREE', 'KeithOlbermann'): 1, ('JeannedarcRemko', 'KeithOlbermann'): 1, ('ANarrowView', 'Badgitator'): 1, ('LKmpf', 'diceylee808'): 1, ('Dawn_GN', 'ClassicBookworm'): 2, ('Fallaryn', 'ElizabethJone18'): 1, ('margaritateresa', 'SupermanHotMale'): 1, ('rhabarbeer', 'occupy_berlin'): 1, ('okiedeb64', 'ChipleKira'): 1, ('SonDancing', 'Badgitator'): 1, ('DougEDougie', 'OccupySF'): 3, ('fragileeve', 'Badgitator'): 1, ('CoyoteOnPeyote', 'Badgitator'): 1, ('MightyPenGirl', 'kalpazan1'): 1, ('bluedutchess726', 'Spudlovr'): 1, ('marygkosta', 'Cocoxochitl'): 1, ('dannydoodar', None): 1, ('azmoderate', 'WeOccupyAmerica'): 1, ('BlueFundraiser', None): 2, ('wendyjohnson_BA', 'KeithOlbermann'): 1, ('DonShappelle', 'EddieAtari: @OccupyWallSt'): 1, ('algebraist', None): 1, ('lexky1', 'UnderdogLib'): 1, ('INTLRevolver', 'OccupySF'): 1, ('bori_214', 'eli_d_m'): 1, ('Tim_Sanchez', None): 1, ('reneeroman300', 'KeithOlbermann'): 1, ('DerekAldous', 'KeithOlbermann'): 1, ('DavidovicMarija', None): 1, ('sindikaria', 'The99Percenters'): 1, ('taylorsilvestri', 'Badgitator'): 1, ('tnecniva', 'majorityfm'): 1, ('Photoronin3', 'mobius1ski'): 1, ('OccupyToledo', None): 1, ('SAMiam897', None): 1, ('Shiftinthinking', 'Badgitator'): 1, ('beetle_eater', 'KeithOlbermann'): 1, ('oyemenena', 'KeithOlbermann'): 1, ('HEALERBREE', 'PyreBorn'): 1, ('SJ_duh', 'ElizabethJone18'): 1, ('AnonOws', 'WeROccupyUnited'): 1, ('adamhudson5', 'JoshuaHol'): 1, ('rattlecans', 'JoshuaHol'): 1, ('AceOfChubbz', 'mobius1ski'): 1, ('urijoe', None): 1, ('dancharvey', None): 1, ('jhwygirl', 'DougEDougie'): 1, ('MightyPenGirl', 'PyreBorn'): 1, ('GoddessBlue', None): 1, ('phantele', None): 1, ('The_News_DIVA', 'mobius1ski'): 1, ('andrewbigdoor', 'KeithOlbermann'): 1, ('JasonRHamer', None): 1, ('robinjpearson', 'Min_Reyes'): 1, ('E_MARSTON', None): 1, ('Jewtastic', None): 1, ('MightyPenGirl', 'WeROccupyUnited'): 1, ('chemoelectric', 'LibertyBelle4'): 2, ('DonShappelle', 'ClassicBookworm'): 1, ('Kaymee', 'JoshuaHol'): 1, ('endoJap', 'AnonymousIRC'): 1, ('GomerWHoward', 'UnderdogLib'): 1, ('lancejgosnell', 'cjohanns'): 1, ('americanzpring', 'alikat747'): 1, ('Dawn_GN', 'jeremyscahill'): 1, ('malaeus', 'OccupyWallSt'): 1, ('CocoPazzo', 'veggieterrain'): 1, ('malaeus', 'kcravenmusic: @OccupyFlorida'): 1, ('opticaldensity', 'Cocoxochitl'): 1, ('sindikaria', 'PsychoNotLiz'): 1, ('TaraNeverTerra', 'Badgitator'): 1, ('ParadiseGray', 'OpWallStreet'): 1, ('EdHinJr', 'jeremyscahill'): 1, ('DonShappelle', 'KeithOlbermann'): 1, ('GreggJLevine', 'phillipanderson'): 1, ('OccupyOrlMedia', None): 1, ('hadearkandil', 'Smithsofia'): 1, ('INTLRevolver', 'CrisisJones'): 1, ('daweiner', 'Badgitator'): 1, ('JoeyBoots', 'youtube'): 1, ('ArianaFaustini', 'OccupyToledo'): 1, ('roaming_radical', 'OccupySF'): 1, ('OWNtheNWO', None): 8, ('gyrizar', 'KeithOlbermann'): 1, ('andreadevinney', 'TheNewDeal'): 1, ('jay_o_matic', None): 3, ('because_thalb', 'TracyLeigh10'): 1, ('herbiv0re', None): 1, ('londonriots8', 'KeithOlbermann'): 1, ('Procoolgranny', 'jeremyscahill'): 1, ('howlnmoon', 'JoshuaHol'): 1, ('alyssa011968', 'KeithOlbermann'): 1, ('MightyPenGirl', 'theblej'): 1, ('sindikaria', 'OccupyMainSt'): 1, ('bradisinnewyork', None): 1, ('Gregstreetny', None): 1, ('public_archive', None): 1, ('americanzpring', 'OccupyToledo'): 1, ('liveforthesun', 'punkflamingo'): 1, ('veggienut', 'KeithOlbermann'): 1, ('justindarc', 'KeithOlbermann'): 1, ('ILoveHumansClub', None): 1, ('jeffbrewerjr', 'TheNewDeal'): 1, ('bebird', 'OccupySF'): 1, ('ChillOutSquad', 'Badgitator'): 1, ('boppy6', 'jeremyscahill'): 1, ('hadearkandil', 'FourYawkeyWay: @hadearkandil'): 1, ('Shayne213', 'PyreBorn'): 1, ('daweiner', 'KeithOlbermann'): 1, ('mangobeach', 'TracyLeigh10'): 1, ('RomperSTL', 'malcolmjackson'): 1, ('TakeWallStreet', 'TorianBrown'): 1, ('CrimeCaster', 'Badgitator'): 1, ('carolerae', 'Valerie0714'): 1, ('MassBliss', None): 1, ('guykanon', 'WallStProtests'): 1, ('expressional', 'jeremyscahill'): 1, ('Hanksingle', 'KeithOlbermann'): 1, ('LittlMissMary', None): 1, ('GoOnBeCrazy', None): 1, ('bebird', 'hadearkandil'): 1, ('d3z78', 'anonops'): 1, ('CrimeCaster', 'public_archive'): 1, ('simplyShervin', 'Badgitator'): 1, ('lautarodamato', 'Badgitator'): 1, ('notPICNIC', 'zeitkunst'): 1, ('lipstickham', None): 1, ('ToddColorado', 'PyreBorn'): 1, ('fistbait', 'Badgitator'): 1, ('saraGcouture', 'phillipanderson'): 1, ('mindofH', 'KeithOlbermann'): 1, ('bellport_phys', None): 1, ('VoiceFromLeft', None): 1, ('yarddonky', 'PsychoNotLiz'): 1, ('acatman', 'GoOnBeCrazy'): 1, ('mtlunasea', 'WeROccupyUnited'): 1, ('EnkindlerAnon', 'CalFireNews'): 1, ('CrimeCaster', 'JosephKBlack'): 1, ('gwenners', None): 1, ('mangobeach', 'OpWallStreet'): 1, ('CalFireNews', None): 1, ('bioticvector', None): 2, ('ArianaFaustini', 'ToddColorado'): 1, ('Kaymee', 'RailWriter: @Kaymee'): 1, ('opticaldensity', 'cjohanns'): 1, ('mindofH', 'PyreBorn'): 1, ('DivaTomboy', None): 1, ('JackHart67', None): 4, ('tnecniva', None): 1, ('jwculbert', None): 1, ('twitrbugs', 'DaveMc99TA'): 1, ('RockItHotPocket', None): 1, ('mangobeach', 'TheNewDeal'): 1, ('miixxy', 'CelluloidBlonde'): 1, ('ashleykingsley', None): 2, ('public_archive', 'dominique_e_'): 1, ('Tez_TCulla', None): 1, ('rhymeswithran', 'MJMcKean'): 1, ('desertcronenm', None): 1, ('komcaast', 'Pootentate'): 1, ('OccupyAppleton', 'WeROccupyUnited'): 1, ('dove_hawk', None): 3, ('EmpressSteph', 'phillipanderson'): 1, ('Manpanzeehawk', 'anonops'): 1, ('TksABunchJohn', 'GeekHillbilly'): 1, ('sweet1kim', 'KeithOlbermann'): 1, ('JoeyBoots78', 'Badgitator'): 1, ('ReaLiveArtist', 'OccupyMainSt'): 2, ('starcaster', 'anonops'): 1, ('UsRevolt11', 'OpWallStreet'): 1, ('CrimeCaster', 'bradisinnewyork'): 1, ('OccupyOrlandoFL', 'OccupyOrlMedia: @occupywallst'): 1, ('sisbuzz', None): 1, ('marygkosta', None): 1, ('Clarknt67', 'GoOnBeCrazy'): 1, ('meimichan', 'JoshuaHol'): 1, ('enjen99', 'Badgitator'): 1, ('papabearblaker', 'KeithOlbermann'): 1, ('UofAlec', None): 1, ('lynx55', 'TracyLeigh10'): 1, ('NDHduz', 'CalFireNews'): 1, ('wheeliesmom', 'Badgitator'): 1, ('occupy_berlin', 'OpWallStreet'): 1, ('daveweeden', 'Beyerstein'): 1, ('BrianDCrouse', 'Min_Reyes'): 1, ('Deevioustweets', None): 1, ('MoreheadD', None): 1, ('StargazingFire', 'Beelzebjorn'): 1, ('ArmAnon', 'Badgitator'): 1, ('MightyPenGirl', 'jchicksrock'): 1, ('treisiroon', 'Asher_Wolf'): 1, ('UnderdogLib', 'PyreBorn'): 1, ('AngryBlackLady', None): 2, ('zoesch', 'Badgitator'): 1, ('Moon_Shadows', 'TheNewDeal'): 1, ('sisbuzz', 'Dharmapunk12'): 1, ('airialclark', 'OWNtheNWO'): 1, ('C0d3Fr0sty', None): 1, ('BSidesNarrative', 'ashleykingsley'): 1, ('Aidanwakefield', 'KeithOlbermann'): 1, ('OccupyAppleton', 'KeithOlbermann'): 1, ('OccupyNorthCal', 'OpWallStreet'): 1, ('kmontenegro', 'jeremyscahill'): 1, ('bluedutchess726', 'AnonyMissBadger'): 1, ('MollyRen', None): 1, ('FrannieFrancine', None): 1, ('MiyazakiMegu', 'BatshitGOP'): 1, ('enjen99', 'KeithOlbermann'): 1, ('yeahhcurtis', 'OccupyMainSt: @ErinBurnettCNN'): 1, ('thatsLILO', 'Badgitator'): 1, ('NDHduz', 'PyreBorn'): 1, ('Kim_SFB', 'Badgitator'): 1, ('sinclairmagic', None): 1, ('occpal', 'hadearkandil'): 2, ('LuckyLeilani', 'mobius1ski'): 1, ('OccupySaltLake', 'jhwygirl'): 1, ('msaf', 'Badgitator'): 1, ('PyreBorn', 'daizy44: @PyreBorn'): 1, ('nyceducation', 'KeithOlbermann'): 1, ('danicosme', 'OccupyWallSt @KeithOlbermann'): 1, ('melanie0010', 'diceylee808'): 1, ('TylerJMoss', None): 1, ('bori_214', 'CelluloidBlonde'): 1, ('lilibat', 'Nikchick'): 1, ('tyrantswine', None): 1, ('shaunasmo', None): 15, ('LuckyGirlBlue', 'CharlesBivona'): 1, ('INTLRevolver', None): 1, ('cliffbaker9', 'Spudlovr'): 1, ('ccharvella', 'Badgitator'): 1, ('bob_dane', 'OpWallStreet'): 1, ('anonlgrisback', 'C0d3Fr0sty'): 1, ('michaelpremo', None): 1, ('movimty', 'mobius1ski'): 1, ('msaf', 'mobius1ski'): 1, ('mtlunasea', 'diceylee808'): 1, ('RomperSTL', 'rkl2195'): 1, ('dmcrane', None): 1, ('mytwistedwords1', None): 2, ('yarddonky', 'diceylee808'): 1, ('wheeliesmom', 'KeithOlbermann'): 1, ('amedee', 'RoelVerrycken'): 1, ('voudras_dee', None): 2, ('MightyPenGirl', 'alikat747'): 1, ('hemiix3', 'anonops'): 1, ('TakeWallStreet', None): 1, ('philly1776', 'MattBors'): 1, ('get_enlightened', 'Beelzebjorn'): 1, ('The99Percenters', 'Badgitator'): 1, ('eadvocate', None): 1, ('revmagdalen', None): 5, ('RobertBogdal', 'JoshuaHol'): 1, ('SuperFastMovies', None): 1, ('Din_SFLA', None): 1, ('soybomber', 'WeROccupyUnited'): 1, ('randytweets510', 'TheNewDeal'): 1, ('Fred54Joachim', None): 1, ('ArianaFaustini', 'OWNtheNWO'): 1, ('guykanon', 'because_thalb'): 1, ('RedArmyChef', 'k_l_h_j: @mariacaranto'): 1, ('expressional', 'GoddessBlue'): 1, ('GaloiseE', 'Badgitator'): 1, ('SuzanneTwoTon', 'diceylee808'): 1, ('YezeniaPoulsen', 'KeithOlbermann'): 1, ('CaliCowboy', None): 1, ('MightyPenGirl', 'bradisinnewyork'): 1, ('BlackGod917', 'public_archive'): 1, ('braifycakes', 'marygkosta'): 1, ('Truthcaster1', None): 3, ('bsmood', 'KeithOlbermann'): 1, ('LeeMILBY', None): 1, ('Break1_9', 'TorianBrown'): 1, ('Bilked2TheBrink', 'TheNewDeal'): 5, ('RobertBogdal', 'KeithOlbermann'): 1, ('ReTweetAgain', 'mobius1ski'): 1, ('MightyPenGirl', 'OWNtheNWO'): 1, ('Rev_LeePhillips', 'Jeannie_Hartley: @Mia_Farrow'): 1, ('highway39', 'MirelaMonte'): 1, ('McBlondeLand', None): 3, ('opticaldensity', 'Luchia_: !@OccupyWallSt'): 1, ('obby', None): 1, ('opticaldensity', 'C0d3Fr0sty'): 1, ('cgpb', 'shortformernie'): 1, ('trident90', 'Badgitator'): 1, ('TProlificJones', 'KeithOlbermann'): 1, ('Min_Reyes', 'RuralBC'): 1, ('UsRevolt11', 'Teddy2500'): 1, ('J4LYN', 'JLownLaw'): 1, ('CelluloidBlonde', 'chiplekira: @KeithOlbermann'): 1, ('JenEvolve', 'CelluloidBlonde'): 1, ('FiteTruth2Power', 'Beelzebjorn'): 1, ('aerosolhalos', 'Badgitator'): 1, ('big_dl77', 'WhyWeOccupy'): 1, ('J4LYN', 'JackHart67: @MikeBloomberg'): 1, ('asaslight', 'Badgitator'): 1, ('dvnix', 'AngryBlackLady'): 2, ('movimty', '2011rebelion'): 1, ('ReTweetAgain', 'OccupyWallStNYC'): 1, ('matthewme23', 'diceylee808'): 1, ('2bit_reportage', 'jeremyscahill'): 1, ('daveweeden', 'TheNewDeal'): 1, ('J4LYN', 'lipstickham'): 1, ('flaviocafe', 'mobius1ski'): 1, ('matthewme23', 'anonops'): 2, ('smacknrat', 'TheBookVlogger'): 1, ('JefTek', 'TheNewDeal'): 1, ('jurassicpork59', None): 1, ('ArianaFaustini', '66sicksfishstix'): 1, ('Olivianuzzi', None): 1, ('Spudlovr', 'hnombi'): 1, ('Break1_9', 'TakeWallStreet'): 1, ('matthewme23', 'KeithOlbermann'): 1, ('Jessica_Shearer', None): 1, ('EricPiet', 'KeithOlbermann'): 1, ('mamajo76', 'anonops'): 1, ('AngryHuman43', 'TakeWallStreet'): 1, ('ReTweetAgain', 'TakeWallStreet'): 1, ('saraGcouture', 'AACina: @AJStream'): 1, ('kstatik', 'saramikaila'): 1, ('SirMcHaggis', 'mobius1ski'): 1, ('OccupyKauai', 'mobius1ski'): 1, ('Bartisan', 'GhostPanther'): 1, ('ArianaFaustini', 'PyreBorn'): 1, ('CraigBlaylock', 'OccupyWallSt'): 1, ('LilEsBella', 'KeithOlbermann'): 1, ('akrockefeller', None): 1, ('prancingpapio', 'JoshuaHol'): 1, ('LeXKalibur', 'KeithOlbermann'): 1, ('tyler_c_kelley', 'OccupyComms: @MMFlint'): 1, ('guykanon', 'ILoveHumansClub'): 1, ('hughcmcbride', 'MattBors'): 1, ('Muslims4RonPaul', 'TakeWallStreet'): 1, ('AnonMedics', None): 1, ('IsaacHale', 'JoshuaHol'): 1, ('GoOnBeCrazy', 'UnderdogLib'): 1, ('odees2', 'C0d3Fr0sty'): 1, ('superbranch', None): 2, ('OccupySomething', 'firehat'): 1, ('OccupyKauai', 'KeithOlbermann'): 1, ('mykatmikey', 'LibertyBelle4'): 1, ('bikeswarm', None): 1, ('CraigBlaylock', 'superbranch'): 1, ('burgerbuilders', 'OccupyWallSt'): 1, ('mindofH', 'CelluloidBlonde'): 1, ('melanie0010', 'Luchia_: !@OccupyWallSt'): 1, ('aeidinger', 'justgrateful'): 1, ('matthewme23', 'OccupyWallSt'): 2, ('tyler_c_kelley', 'ReTweetAgain'): 1, ('The99Percenters', 'KeithOlbermann'): 1, ('aliyunafsah', 'azmoderate'): 1, ('philly_bits', None): 2, ('yonezawamacaron', 'phillipanderson'): 1, ('cgpb', 'Beelzebjorn'): 1, ('frogetteca', None): 2, ('RecommTweet', 'MPwrites'): 1, ('liubaldo_garcia', 'Badgitator'): 1, ('Can_ada', None): 1, ('ChristofPierson', 'UltraVerified'): 1, ('1940_1980', 'OccupySF'): 1, ('randytweets510', 'Spudlovr'): 1, ('seanjb9', None): 1, ('IsaacHale', 'Badgitator'): 1, ('WEou812', 'KeithOlbermann'): 1, ('Aranjedeath', 'saramikaila'): 1, ('BenMcNulty', None): 1, ('crunchy_sounds', None): 1, ('eriqsaurusrex', 'jeremyscahill'): 1, ('AshleyFloyd', 'KeithOlbermann'): 1, ('Wotansson', None): 2, ('OccupyID', 'KeithOlbermann'): 1, ('db_s_turbosnail', 'hadearkandil'): 1, ('j3', None): 1, ('Aranjedeath', None): 1, ('sisbuzz', 'UnderdogLib'): 1, ('db_s_turbosnail', 'C0d3Fr0sty'): 1, ('UsRevolt11', 'sindikaria'): 1, ('LeftyJeenyus', 'WashPahpin: @LeftyJeenyus @SVNTHLTTR'): 1, ('ArtandLogik', 'KeithOlbermann'): 1, ('LUCKYMW', 'JoshuaHol'): 1, ('matthewme23', 'ThomasRHart'): 1, ('acatman', 'tmsimmz'): 1, ('RevLea', 'LibertyBelle4'): 1, ('Kaymee', 'Min_Reyes'): 1, ('MiroCollas', 'KeithOlbermann'): 1, ('smacknrat', 'humanright2home'): 1, ('matthewme23', 'jamiekilstein'): 1, ('AgainstOblivion', 'C0d3Fr0sty'): 1, ('cliffbaker9', 'OccupyMainSt'): 1, ('badweatherrr', 'anonops'): 1, ('J4LYN', 'OWNtheNWO'): 1, ('OccupyMainSt', 'JLownLaw'): 1, ('Minus777', 'WhyWeOccupy'): 1, ('Janiebt', 'KeithOlbermann'): 1, ('AaronBBrown', 'OccupyBrooklyn'): 1, ('susanondeharbor', None): 1, ('cjohanns', 'JLownLaw'): 1, ('torinstweets', 'PyreBorn'): 1, ('liubaldo_garcia', 'mobius1ski'): 1, ('NewCarlisleNews', 'KeithOlbermann'): 1, ('GyouzaSpec', 'JGChesney'): 1, ('lynx55', 'hnombi'): 1, ('Can_ada', 'OccupySF'): 1, ('indigojourney', 'Beelzebjorn'): 1, ('revrendoni', 'Badgitator'): 1, ('vivicaherself', None): 1, ('laborunionrpt', None): 1, ('UnanimousHQ', 'cryptogon'): 1, ('yarddonky', 'KeithOlbermann'): 1, ('LOLGOP', None): 1, ('matthewme23', 'HuffingtonPost'): 1, ('MoAli87', 'KeithOlbermann'): 1, ('PyreBorn', 'JLownLaw'): 1, ('SupermanHotMale', None): 1, ('stylefiveoh', None): 1, ('MuxerMaravilla', 'AngryBlackLady'): 1, ('Occupy_duess', 'Badgitator'): 1, ('DlorenDarnell', None): 1, ('hlebcats', 'KeithOlbermann'): 1, ('lancejgosnell', 'JLownLaw'): 1, ('joepa51', None): 1, ('ChristofPierson', None): 1, ('OccupyOpenMind', 'DSuperior'): 1, ('OccupyWallSt', 'UltraVerified'): 1, ('UsRevolt11', 'PsychoNotLiz'): 1, ('matthewme23', 'SenatorSanders'): 1, ('verfremdung', '99_film'): 1, ('americanzpring', 'OWNtheNWO'): 1, ('jashsf', 'McBlondeLand'): 1, ('EisMC2', 'ThomasRHart'): 1, ('mefranny', 'Badgitator'): 1, ('conductorebrio', 'Badgitator'): 1, ('Occupy_duess', 'OpWallStreet'): 1, ('GabiElenaDohm', 'jeremyscahill'): 1, ('unpaidtroll', 'revmagdalen: @TheNewDeal'): 1, ('MightyPenGirl', None): 1, ('mangobeach', 'dmcrane'): 1, ('smshetty', 'SupermanHotMale'): 1, ('Tramz93', None): 1, ('mykatmikey', 'TheNewDeal'): 1, ('azjayhawk47', None): 1, ('InaGrae', 'jeremyscahill'): 1, ('NoToPalins', 'LOLGOP'): 1, ('EasternExit', None): 1, ('agentska', 'JoshuaHol'): 1, ('Corruptbastards', 'MMFlint'): 1, ('Can_ada', 'public_archive'): 1, ('zeltserman', 'michaelidov'): 1, ('1Viperbabe', 'JLownLaw'): 1, ('TexasCommie', 'LOLGOP'): 1, ('siblatha', 'mobius1ski'): 1, ('Kaymee', 'UltraVerified'): 1, ('Just_Josh_LaX', None): 1, ('AuntInAZ', 'LOLGOP'): 1, ('LeeCamp', None): 2, ('MichaelGregory4', None): 1, ('matthewme23', 'SupermanHotMale'): 1, ('Sir_Richard_311', None): 1, ('chrismclark', 'ChipleKira'): 1, ('dissenting', 'doctordrewl'): 1, ('2KindsJustice', 'JLownLaw'): 1, ('Ssimpatic', 'OpWallStreet'): 1, ('suzannah_mpls', 'LibertyBelle4'): 1, ('BuoySirUs', 'Badgitator'): 1, ('AntarianRani', 'jackwadeshow'): 1, ('JayandSteve', 'LOLGOP'): 1, ('justoneblackman', 'public_archive'): 1, ('mangobeach', 'AngryBlackLady'): 2, ('ProjectCambio', 'OccupySF'): 2, ('DlorenDarnell', 'HuffingtonPost'): 1, ('EVICTIONSLA', 'tommasonic'): 1, ('JayandSteve', 'Genespark'): 1, ('Peaceisillegal', 'Badgitator'): 1, ('camicakes_', 'KeithOlbermann'): 1, ('paul_fkn_y', 'LOLGOP'): 1, ('nayan1875', None): 1, ('GreeGreece', None): 1, ('Wednesday33', '2011rebelion'): 1, ('malasadasbooks', 'LOLGOP'): 1, ('Raquel_la_Madre', None): 2, ('chema1686', 'anonops'): 1, ('The99Percenters', 'cjohanns'): 1, ('Ognir2', 'WeROccupyUnited'): 1, ('guykanon', 'CelluloidBlonde'): 1, ('MightyPenGirl', 'j3'): 1, ('4rilla', None): 1, ('johnrennhack', 'phillipanderson'): 1, ('justoneblackman', 'AngryBlackLady'): 2, ('j9lonehill', 'CelluloidBlonde'): 1, ('JoshFinn', None): 1, ('ElizabethJone18', 'Dymaxion'): 1, ('wrobson', 'KeithOlbermann'): 1, ('IamSilverPeace', None): 2, ('NWDowns', 'JLownLaw'): 1, ('DlorenDarnell', 'michellemalkin'): 1, ('Occupy3rdStone', 'LeeCamp'): 2, ('jandroid', 'OccupyOregon'): 1, ('alanpdx', 'saramikaila'): 1, ('johnpgatta', 'KeithOlbermann'): 1, ('ghalyah4life', 'youtube'): 1, ('ciruelas_rojas', 'LOLGOP'): 1, ('BrianDCrouse', None): 1, ('BKronick', 'Badgitator'): 1, ('because_thalb', 'AngryBlackLady'): 2, ('OccupySaltLake', 'OpWallStreet'): 1, ('Alioops007', 'ANTISECTARIAN'): 1, ('DlorenDarnell', 'Herfarm'): 2, ('RomperSTL', 'JLownLaw'): 1, ('sunshineejc', None): 1, ('matthewme23', 'lynx55'): 1, ('tali3sin', None): 1, ('DemsatSFSU', 'JoshuaHol'): 1, ('IsaacHale', 'UltraVerified'): 1, ('mattemmer', None): 1, ('MightyPenGirl', 'BenMcNulty'): 1, ('aiz3319', 'PyreBorn'): 1, ('bethechange75', 'mtlunasea'): 1, ('JethroGibbsFan', 'KeithOlbermann'): 1, ('amartinfoley', 'TheNewDeal'): 1, ('VinceMalumBono', 'C0d3Fr0sty'): 1, ('2KindsJustice', 'Spudlovr'): 1, ('AntarianRani', 'TheNewDeal'): 1, ('KarmickBrew', 'akrockefeller'): 1, ('Truthcaster1', 'UltraVerified'): 1, ('ma5terenexili0', 'Min_Reyes'): 1, ('yesreallyy', 'JosephKBlack'): 1, ('occupyamsterdam', 'OccupyWallSt'): 1, ('matthewme23', 'McBlondeLand'): 1, ('conductorebrio', 'mobius1ski'): 1, ('Saccaparami', 'ThomasRHart'): 1, ('WolfNW', 'KeithOlbermann'): 1, ('ageofgreenery', None): 1, ('CultOfAngelique', 'OpWallStreet'): 1, ('The99Percenters', 'OccupyToledo'): 1, ('Adreadonymous', 'anonops'): 1, ('mikebabz', 'mpchristoffels'): 1, ('AnonNep', 'TakeWallStreet'): 1, ('revmagdalen', 'hadearkandil'): 1, ('JGibsonDem', 'AngryBlackLady'): 1, ('kidtree', None): 1, ('theevilhour', 'KeithOlbermann'): 1, ('kaatje36', 'guaracybm'): 1, ('Bartisan', None): 1, ('OccupySaltLake', 'sundeux'): 1, ('conductorebrio', 'KeithOlbermann'): 1, ('OpWallStreet', 'TakeWallStreet'): 1, ('guykanon', 'ToddColorado'): 1, ('Break1_9', None): 1, ('MightyPenGirl', 'LOLGOP'): 1, ('sisbuzz', 'kikiki321'): 1, ('bailey_carlson', 'm_cetera'): 1, ('Kinniska', 'OccupySF'): 1, ('MissRedy', 'akrockefeller'): 1, ('tannazebd', 'KeithOlbermann'): 1, ('CCC4Hope', 'SenatorSanders'): 1, ('veggieterrain', None): 1, ('thedorkygirl', None): 1, ('paisleyrae', 'PyreBorn'): 1, ('SocialApocalyps', 'Badgitator'): 1, ('Conan776', 'Spudlovr'): 1, ('thewindsofwar', 'ElizabethJone18'): 1, ('asher2789', None): 1, ('sindikaria', 'csobol'): 1, ('brx0', 'saramikaila'): 1, ('The99Percenters', 'WeROccupyUnited'): 1, ('BotreeCafe', None): 1, ('littlejolit', 'Spudlovr'): 1, ('guykanon', 'VoiceFromLeft'): 1, ('Conan776', 'diceylee808'): 1, ('HelpEgyptHeal', None): 1, ('RichardH0well', '66sicksfishstix'): 1, ('The99Percenters', 'OpWallStreet'): 1, ('aliasooze', 'Beelzebjorn'): 1, ('chhockle', 'ElizabethJone18'): 1, ('INTLRevolver', 'TheBookVlogger'): 1, ('madeline_oh', None): 1, ('ElizabethWard2', 'Herfarm'): 1, ('UsRevolt11', 'OccupyMainSt: @ErinBurnettCNN'): 1, ('campamocha7', 'SuperFastMovies'): 1, ('ancasuiu', 'KTVU'): 1, ('Hardline_Stance', 'bfrysworld'): 1, ('matthewme23', 'darianknight'): 1, ('Pootentate', 'OccupyMainSt: @ErinBurnettCNN'): 1, ('Masta420Chiefa', 'C0d3Fr0sty'): 1, ('curiouscliche', 'Cryptomeorg'): 1, ('kaatje36', 'sindikaria'): 1, ('OccupySomething', 'randytweets510'): 1, ('StealthBull', 'youtube'): 1, ('lookupfolks', 'rspires1952'): 1, ('favstar_pop', 'ThomasRHart'): 1, ('torinstweets', 'BenMcNulty'): 1, ('DakotaNorthAnon', 'PyreBorn'): 2, ('SexasaurusRAWR', 'Badgitator'): 1, ('Nathankds', None): 1, ('andrewbigdoor', 'UltraVerified'): 1, ('MightyPenGirl', 'AngryBlackLady'): 1, ('carrig41', 'JGChesney'): 1, ('Stephano_N', 'OccupyWallSt'): 1, ('EXplorerDasta', 'mobius1ski'): 1, ('PyreBorn', 'WeROccupyUnited'): 1, ('sisbuzz', 'sillymickel'): 1, ('Imlostinwyoming', 'TakeWallStreet'): 1, ('ErikDaenitz', None): 1, ('Shiftinthinking', 'Truthcaster1'): 1, ('odees2', None): 2, ('shoutcacophony', 'OccupySF'): 1, ('veggieterrain', 'TheNewDeal'): 1, ('kaatje36', 'Tramz93'): 1, ('mikepropst', 'MJMcKean'): 1, ('OccupyID', 'diceylee808'): 1, ('janniaragon', 'LOLGOP'): 1, ('MightyPenGirl', 'SupermanHotMale'): 1, ('Master0fPuppets', 'KeithOlbermann'): 1, ('joukjebroier', 'kaatje36'): 1, ('frogsarelovely', 'PyreBorn'): 1, ('joshuacstephens', 'jeremyscahill'): 1, ('Adreadonymous', 'OccupySF'): 1, ('rtoberl', 'michellemalkin'): 1, ('angelindiskies', 'OccupyToledo'): 1, ('jackwadeshow', None): 1, ('MightyPenGirl', 'sindikaria'): 1, ('alphadm', 'JoshuaHol'): 1, ('J4LYN', 'ElizabethJone18'): 1, ('vieillefemme', 'mobius1ski'): 1, ('DakotaNorthAnon', 'CalFireNews'): 1, ('Kaymee', 'WeROccupyUnited'): 1, ('Amywhere', 'OpWallStreet'): 1, ('Ziggy_Daddy', 'Shoq'): 1, ('pishka', 'OWNtheNWO'): 1, ('YourOrganicLife', None): 1, ('hush2012', 'KeithOlbermann'): 1, ('Beelzebjorn', 'PyreBorn'): 1, ('ScottSwezey', None): 1, ('margaritateresa', 'gemimms: “@TheNewDeal'): 1, ('KWUofA', None): 1, ('randytweets510', 'singlepayer'): 1, ('dirtyknives', 'AnonymousIRC'): 1, ('treisiroon', 'geckomom'): 1, ('TheVinceEdwards', 'KeithOlbermann'): 1, ('99Prcnt', 'paisleyrae'): 1, ('KyleStyle4', 'ThomasRHart'): 1, ('andrewbigdoor', None): 1, ('crissymoss', 'ForseenUnNamed'): 1, ('Adam_Stirling', 'TheNewDeal'): 1, ('kidcaregiver', 'WeROccupyUnited'): 1, ('aiz3319', 'Truthcaster1'): 1, ('ScanCase', None): 1, ('veggieterrain', 'OccupyMainSt'): 1, ('RedandBlueAmeri', None): 1, ('GaryRidesBikes', 'bikeswarm'): 1, ('piqueristic', 'LOLGOP'): 1, ('namroopa', None): 1, ('livedave', None): 1, ('WindyCityRednek', 'rightinillinois'): 1, ('ThorStaats', None): 1, ('Art_Guy1', None): 1, ('andrewbigdoor', 'superbranch'): 1, ('NWDowns', 'WeROccupyUnited'): 1, ('sophantastic93', 'TheOther99: @TheOther99'): 1, ('neeirish', None): 1, ('manbear', 'theblej'): 1, ('kaatje36', 'AaronBBrown'): 1, ('BFRESHPhoto', 'seasonothebitch'): 1, ('spirefly', 'Badgitator'): 1, ('CarlPaulus', None): 1, ('HethreC', 'DanielDenvir'): 1, ('Break1_9', 'UltraVerified'): 1, ('matthewme23', 'paisleyrae'): 1, ('LeftSlashRight', 'AngryBlackLady'): 1, ('oneunionmom', 'jackwadeshow'): 1, ('OccupyWallStMus', None): 1, ('ivyrayne83', 'anonops'): 1, ('MarkGerard', None): 1, ('fiorentina5', 'mobius1ski'): 1, ('laurenglasscock', 'turnageb'): 1, ('watershedchron', None): 1, ('Zjlynch', 'C0d3Fr0sty'): 1, ('Org9', None): 1, ('silviaglaa', 'Ciudadano_Zer0'): 1, ('txmeljo', 'TheNewDeal'): 1, ('pllorenzo', 'WeOccupyAmerica'): 1, ('judderwocky', 'TakeWallStreet'): 1, ('Benjamin_Flex', 'Spudlovr'): 1, ('viktorado', 'OpWallStreet'): 1, ('only_positivity', 'TheNewDeal'): 1, ('anamsiddiq', 'duylinhtu'): 1, ('bioticvector', 'KeithOlbermann'): 1, ('TLBramley', None): 1, ('NotQuiteMary', 'TheOther99'): 1, ('MightyPenGirl', 'AnonyKonk: @BarackObama'): 1, ('twitrbugs', 'LOLGOP'): 1, ('copygeniusgirl', None): 1, ('MiranHosny', 'hadearkandil'): 1, ('MiyazakiMegu', 'crazyjane13'): 1, ('bori_214', 'majorityfm'): 1, ('manbear', 'j3'): 1, ('pdjmoo', 'DailyKos'): 1, ('LaLaurLaura', 'OccupyOrlMedia: @occupywallst'): 1, ('portugaltheman', 'CelluloidBlonde'): 1, ('robin_egg_blue_', 'TheNewDeal'): 1, ('_ScottRoy', 'CalFireNews'): 1, ('Perazza', 'KeithOlbermann'): 1, ('MightyPenGirl', 'BrianDCrouse'): 1, ('politicsofamy', 'HuffingtonPost'): 1, ('DadaIsGalletas', 'CelluloidBlonde'): 1, ('dvnix', 'Art_Guy1'): 1, ('ilmestykset', None): 1, ('Amywhere', 'TheNewDeal'): 1, ('EvanPokroy', 'politicsofamy'): 1, ('pishka', 'PyreBorn'): 1, ('portugaltheman', 'PyreBorn'): 1, ('RomperSTL', 'Teddy2500'): 1, ('dvnix', 'Shoq'): 1, ('AntarianRani', 'JeffSharlet'): 1, ('vaneeesa', 'WikiTerms'): 5, ('OccupyKC', 'Beelzebjorn'): 1, ('singlepayer', 'UltraVerified'): 1, ('DBAYJR', 'TheOther99'): 1, ('guykanon', 'OWNtheNWO'): 1, ('DakotaNorthAnon', 'ElizabethJone18'): 1, ('Isajah78', 'diceylee808'): 1, ('HuggyBear116', None): 1, ('trvslogan', 'OccupyWallSt'): 1, ('autolysis', 'allisonkilkenny'): 1, ('UsRevolt11', 'JLownLaw'): 1, ('mangobeach', 'JLownLaw'): 1})
In [4]:
list(rt_network.items())
name=['user','number']
import pandas as pd
test=pd.DataFrame(columns=name,data=list(rt_network.items()))
test.to_csv('C:/Users/shysh/Desktop/HOMEWORK/homework2.csv')