Skip to content

Instantly share code, notes, and snippets.

@PyYoshi
Forked from maxpert/results.txt
Last active August 3, 2018 08:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PyYoshi/c47dfb45dcc51f1d301b to your computer and use it in GitHub Desktop.
Save PyYoshi/c47dfb45dcc51f1d301b to your computer and use it in GitHub Desktop.
JSON vs MsgPack using Gzip + LZ4
---------- RAW ----------
JSON 34291 byte(s)
MsgPack 26364 byte(s)
---------- GZIP ---------
JSON 05986 byte(s)
MsgPack 06198 byte(s)
---------- LZ4 ----------
JSON 09758 byte(s)
MsgPack 08548 byte(s)
import json
import zlib
import lz4
import msgpack
def compress_gzip(data):
return zlib.compress(data)
def compress_lz4(data):
return lz4.dumps(data)
class CompJSONDB(object):
size = 0
def save(self, dct, compressor):
compressed = compressor(json.dumps(dct).encode())
self.size = self.size + len(compressed)
return len(compressed)
class MsgPackDB(object):
size = 0
def save(self, dct):
l = len(msgpack.packb(dct))
self.size = self.size + l
return l
class CompMsgPackDB(object):
size = 0
def save(self, dct, compressor):
l = len(compressor(msgpack.packb(dct)))
self.size = self.size + l
return l
if __name__ == "__main__":
msgpackdb = MsgPackDB()
gzMsgpackdb = CompMsgPackDB()
gzJsondb = CompJSONDB()
lzMsgpackdb = CompMsgPackDB()
lzJsondb = CompJSONDB()
with open('./public_timeline.json') as fp:
public_timeline_buf = fp.read()
public_timeline = json.loads(public_timeline_buf)
public_timeline_size = len(json.dumps(public_timeline))
msgpackdb.save(public_timeline)
gzJsondb.save(public_timeline, compress_gzip)
gzMsgpackdb.save(public_timeline, compress_gzip)
lzJsondb.save(public_timeline, compress_lz4)
lzMsgpackdb.save(public_timeline, compress_lz4)
print("---------- RAW ----------")
print("JSON %05d byte(s)" % public_timeline_size)
print("MsgPack %05d byte(s)" % msgpackdb.size)
print("---------- GZIP ---------")
print("JSON %05d byte(s)" % gzJsondb.size)
print("MsgPack %05d byte(s)" % gzMsgpackdb.size)
print("---------- LZ4 ----------")
print("JSON %05d byte(s)" % lzJsondb.size)
print("MsgPack %05d byte(s)" % lzMsgpackdb.size)
[
{
"text":"Whn IGet Ah Car Ima Love Life.",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"web",
"id_str":"32188907760128000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"profile_sidebar_fill_color":"",
"url":null,
"profile_background_tile":true,
"time_zone":"Central Time (US & Canada)",
"description":"IMake Decisions With My Heart.. IDeal With Pain By Laughin, Drinkin, And Lettin It Go.. Life Goes On.",
"listed_count":0,
"following":null,
"verified":false,
"friends_count":91,
"followers_count":177,
"location":"",
"profile_link_color":"0084B4",
"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1224851279\/july_5922_normal.jpg",
"favourites_count":3,
"profile_sidebar_border_color":"BDDCAD",
"id_str":"205423565",
"screen_name":"ForeverAjee",
"is_translator":false,
"contributors_enabled":false,
"profile_use_background_image":true,
"notifications":null,
"profile_background_color":"9AE4E8",
"protected":false,
"show_all_inline_media":false,
"geo_enabled":false,
"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/199590544\/cassie2.jpg",
"name":"Queen_Ajee",
"follow_request_sent":null,
"statuses_count":4423,
"id":205423565,
"lang":"en",
"utc_offset":-21600,
"created_at":"Wed Oct 20 21:21:13 +0000 2010",
"profile_text_color":"333333"
},
"id":32188907760128000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:08 +0000 2011"
},
{
"text":"\u041a\u0430\u043a \u043e\u043f\u0443\u0441\u0442\u043e\u0448\u0438\u0442\u044c \u043e\u0437\u0435\u0440\u043e \u0437\u0430 15 \u043c\u0438\u043d\u0443\u0442? (4 \u0444\u043e\u0442\u043e http:\/\/ivit.info\/foto\/9292-.html #ivit_info",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/ivit.info\" rel=\"nofollow\"\u003Eivit_bot3\u003C\/a\u003E",
"id_str":"32188905553920000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"is_translator":false,
"show_all_inline_media":false,
"geo_enabled":false,
"friends_count":1965,
"profile_sidebar_fill_color":"DDEEF6",
"url":null,
"statuses_count":12012,
"profile_background_tile":false,
"time_zone":null,
"description":null,
"following":null,
"followers_count":517,
"location":null,
"contributors_enabled":false,
"profile_link_color":"0084B4",
"profile_image_url":"http:\/\/a3.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png",
"favourites_count":0,
"profile_sidebar_border_color":"C0DEED",
"id_str":"156994182",
"follow_request_sent":null,
"verified":false,
"screen_name":"ivit_mirror2",
"profile_use_background_image":true,
"notifications":null,
"profile_background_color":"C0DEED",
"protected":false,
"profile_background_image_url":"http:\/\/a3.twimg.com\/a\/1296265969\/images\/themes\/theme1\/bg.png",
"name":"ivit_mirror2",
"listed_count":19,
"id":156994182,
"lang":"en",
"utc_offset":null,
"created_at":"Fri Jun 18 14:38:49 +0000 2010",
"profile_text_color":"333333"
},
"id":32188905553920000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:07 +0000 2011"
},
{
"text":"Celexa (Citalopram) 20mg http:\/\/page2rss.com\/\/caa5e5aae1651e05173332a7e73fc6d1\/5306809_5307108\/celexa-citalopram-mg",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/page2rss.com\/\" rel=\"nofollow\"\u003EPage2RSS\u003C\/a\u003E",
"id_str":"32188903981056000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"verified":false,
"profile_sidebar_fill_color":"252429",
"url":"http:\/\/www.unidrugs.net\/",
"contributors_enabled":false,
"profile_background_tile":true,
"time_zone":"Greenland",
"description":"Uni Drugs MedStore - CHEAP No Prescription Drugs - CIALIS KAMAGRA LEVITRA VIAGRA",
"listed_count":1,
"following":null,
"followers_count":188,
"location":"No Prescription Drugs Online",
"profile_link_color":"2FC2EF",
"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1191189246\/title_what_normal.gif",
"is_translator":false,
"favourites_count":0,
"friends_count":183,
"profile_sidebar_border_color":"181A1E",
"id_str":"98020812",
"screen_name":"UniDrugs",
"profile_use_background_image":true,
"statuses_count":26262,
"notifications":null,
"profile_background_color":"1A1B1F",
"protected":false,
"show_all_inline_media":false,
"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/60815103\/header.png",
"name":"No Prescription Drug",
"follow_request_sent":null,
"geo_enabled":false,
"id":98020812,
"lang":"en",
"utc_offset":-10800,
"created_at":"Sun Dec 20 01:33:07 +0000 2009",
"profile_text_color":"666666"
},
"id":32188903981056000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:07 +0000 2011"
},
{
"text":"Interesing article on the OSU page http:\/\/oregonstate.edu\/ua\/ncs\/archives\/2011\/jan\/gender-and-hygiene-could-cleanliness-be-hurting-girls",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"web",
"id_str":"32188902932480000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"is_translator":false,
"profile_sidebar_fill_color":"DDEEF6",
"url":null,
"verified":false,
"profile_background_tile":false,
"time_zone":null,
"description":null,
"following":null,
"followers_count":2,
"location":null,
"follow_request_sent":null,
"profile_link_color":"0084B4",
"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png",
"contributors_enabled":false,
"favourites_count":0,
"profile_sidebar_border_color":"C0DEED",
"id_str":"235872290",
"screen_name":"BeauReeves",
"profile_use_background_image":true,
"show_all_inline_media":false,
"listed_count":1,
"geo_enabled":false,
"notifications":null,
"profile_background_color":"C0DEED",
"protected":false,
"statuses_count":14,
"profile_background_image_url":"http:\/\/a3.twimg.com\/a\/1296099941\/images\/themes\/theme1\/bg.png",
"name":"Cortney Elliott",
"friends_count":5,
"id":235872290,
"lang":"en",
"utc_offset":null,
"created_at":"Sun Jan 09 07:56:30 +0000 2011",
"profile_text_color":"333333"
},
"id":32188902932480000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:07 +0000 2011"
},
{
"text":"....Every time im in the club and this song comes on, girls rush me http:\/\/www.youtube.com\/watch?v=Ac64vNkk6Ks ...no lie",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"web",
"id_str":"32188898847232000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"is_translator":false,
"friends_count":199,
"profile_sidebar_fill_color":"252429",
"url":null,
"profile_background_tile":false,
"time_zone":"Mountain Time (US & Canada)",
"description":"I inhaled a chemical substance that put me to sleep in 1311. Slept for 700yrs and woke up in 2011. My point is... ",
"following":null,
"followers_count":263,
"location":"Still in the Chemical Lab",
"statuses_count":4488,
"profile_link_color":"2FC2EF",
"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1227546014\/x2_37b5ca0_normal.jpeg",
"favourites_count":12,
"profile_sidebar_border_color":"181A1E",
"id_str":"206762057",
"follow_request_sent":null,
"screen_name":"neosoul_poetry",
"profile_use_background_image":true,
"verified":false,
"notifications":null,
"profile_background_color":"1A1B1F",
"protected":false,
"show_all_inline_media":false,
"contributors_enabled":false,
"profile_background_image_url":"http:\/\/a3.twimg.com\/a\/1296156503\/images\/themes\/theme9\/bg.gif",
"name":"Chemistry's Soul Bro",
"listed_count":6,
"geo_enabled":false,
"id":206762057,
"lang":"en",
"utc_offset":-25200,
"created_at":"Sat Oct 23 17:17:44 +0000 2010",
"profile_text_color":"666666"
},
"id":32188898847232000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:06 +0000 2011"
},
{
"text":"well............................YEEESSSSSSSSSSSS. \u2014 i can't choose:\/ http:\/\/4ms.me\/efKJj8",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/formspring.me\" rel=\"nofollow\"\u003EFormspring.me\u003C\/a\u003E",
"id_str":"32188897383424000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"verified":false,
"profile_sidebar_fill_color":"c9c9c9",
"url":null,
"profile_background_tile":true,
"time_zone":null,
"description":"im 13 and i love nathan sykes, end of story.",
"is_translator":false,
"contributors_enabled":false,
"following":null,
"followers_count":66,
"location":"",
"profile_link_color":"e6104d",
"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1222601502\/031407_normal.jpg",
"favourites_count":0,
"profile_sidebar_border_color":"bfbfbf",
"id_str":"208284899",
"follow_request_sent":null,
"screen_name":"lucysykesxD",
"show_all_inline_media":false,
"geo_enabled":false,
"profile_use_background_image":true,
"statuses_count":645,
"notifications":null,
"profile_background_color":"07090b",
"protected":false,
"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/182773722\/x6a3ea21af284dee8d4147c29c719e40.png",
"name":"lucyellenwilson.",
"listed_count":0,
"friends_count":420,
"id":208284899,
"lang":"en",
"utc_offset":null,
"created_at":"Wed Oct 27 00:31:55 +0000 2010",
"profile_text_color":"1c1f23"
},
"id":32188897383424000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:05 +0000 2011"
},
{
"text":"Payla\u015f\u0131mlar B\u015flam\u0131\u015ft\u0131r... ;)",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003EFacebook\u003C\/a\u003E",
"id_str":"32188894237696000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"show_all_inline_media":false,
"geo_enabled":false,
"profile_sidebar_fill_color":"F6F6F6",
"url":null,
"follow_request_sent":false,
"statuses_count":455,
"profile_background_tile":false,
"time_zone":null,
"description":"",
"following":false,
"followers_count":0,
"location":"",
"profile_link_color":"038543",
"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1098936715\/CA47PBUU_normal.jpg",
"favourites_count":0,
"profile_sidebar_border_color":"EEEEEE",
"id_str":"176355718",
"listed_count":0,
"verified":false,
"friends_count":0,
"screen_name":"mertozengin",
"profile_use_background_image":true,
"notifications":false,
"profile_background_color":"ACDED6",
"protected":false,
"profile_background_image_url":"http:\/\/a2.twimg.com\/a\/1295982098\/images\/themes\/theme18\/bg.gif",
"name":"mert zengin",
"is_translator":false,
"contributors_enabled":false,
"id":176355718,
"lang":"en",
"utc_offset":null,
"created_at":"Mon Aug 09 09:14:24 +0000 2010",
"profile_text_color":"333333"
},
"id":32188894237696000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:05 +0000 2011"
},
{
"text":"Huh man RT @cash_money_1800 Old skool ran it to me he told me even when ya bread low nigga never keep ya head (cont) http:\/\/tl.gd\/8h18sa",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/twidroyd.com\" rel=\"nofollow\"\u003Etwidroyd\u003C\/a\u003E",
"id_str":"32188892971008000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"listed_count":1,
"profile_sidebar_fill_color":"efefef",
"url":null,
"profile_background_tile":true,
"time_zone":"Quito",
"description":"",
"following":null,
"verified":false,
"friends_count":144,
"followers_count":197,
"location":"Slowneck ave",
"profile_link_color":"009999",
"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1211996905\/young_nice_normal.jpg",
"is_translator":false,
"favourites_count":4,
"profile_sidebar_border_color":"eeeeee",
"id_str":"123096473",
"screen_name":"nicemoneysigns",
"contributors_enabled":false,
"profile_use_background_image":true,
"follow_request_sent":null,
"notifications":null,
"profile_background_color":"131516",
"protected":false,
"show_all_inline_media":false,
"geo_enabled":false,
"profile_background_image_url":"http:\/\/a2.twimg.com\/a\/1296265969\/images\/themes\/theme14\/bg.gif",
"name":"Darian",
"statuses_count":5267,
"id":123096473,
"lang":"en",
"utc_offset":-18000,
"created_at":"Mon Mar 15 00:17:24 +0000 2010",
"profile_text_color":"333333"
},
"id":32188892971008000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:04 +0000 2011"
},
{
"text":"Ocio==> Gratis Busca y encuentra videos Divertidos You Tube sin acceder http:\/\/bit.ly\/aYlwyX",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/cascada.site88.net\/ACT\/index.html\" rel=\"nofollow\"\u003EAuto Creador de Tweets \u003C\/a\u003E",
"id_str":"32188889934336000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"is_translator":false,
"contributors_enabled":false,
"profile_sidebar_fill_color":"DDEEF6",
"url":"http:\/\/www.crear-negocios.com",
"profile_background_tile":false,
"time_zone":"Greenland",
"description":"Apoyando emprendedores con negocios en internet, ventas, marketing, seo, dise\u00f1o web, dise\u00f1o grafico. productos digitales",
"following":null,
"followers_count":776,
"location":"Madrid",
"follow_request_sent":null,
"profile_link_color":"0084B4",
"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1198004562\/pieppal_normal.jpg",
"show_all_inline_media":false,
"geo_enabled":false,
"favourites_count":0,
"profile_sidebar_border_color":"C0DEED",
"id_str":"96700064",
"statuses_count":31759,
"screen_name":"crearnegocios",
"profile_use_background_image":true,
"listed_count":8,
"notifications":null,
"friends_count":712,
"profile_background_color":"C0DEED",
"protected":false,
"profile_background_image_url":"http:\/\/a3.twimg.com\/a\/1296179758\/images\/themes\/theme1\/bg.png",
"name":"Arlex Molina",
"verified":false,
"id":96700064,
"lang":"es",
"utc_offset":-10800,
"created_at":"Mon Dec 14 05:16:19 +0000 2009",
"profile_text_color":"333333"
},
"id":32188889934336000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:04 +0000 2011"
},
{
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"id_str":"32188889825280000",
"source":"web",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"profile_background_tile":true,
"time_zone":null,
"description":"Interagir \u00e9 uma coisa maravilhosa!!! Adoro falar, aprender, ver coisas novas o tempo todo! E a\u00ed, a gente divide com a galera por aqui! =D",
"following":null,
"verified":false,
"followers_count":68,
"location":"Brasil",
"profile_link_color":"F8D605",
"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/732464470\/ANNA_RACHEL_CARICATURA_normal.jpg",
"is_translator":false,
"contributors_enabled":false,
"favourites_count":0,
"profile_sidebar_border_color":"F8D605",
"id_str":"119838029",
"screen_name":"arachelferreira",
"profile_use_background_image":true,
"follow_request_sent":null,
"notifications":null,
"profile_background_color":"000000",
"show_all_inline_media":false,
"geo_enabled":false,
"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/84123578\/Lu_de_Mari_1.jpg",
"protected":false,
"statuses_count":535,
"name":"Anna Rachel Ferreira",
"lang":"en",
"created_at":"Thu Mar 04 20:01:58 +0000 2010",
"profile_text_color":"333333",
"id":119838029,
"listed_count":4,
"utc_offset":null,
"friends_count":72,
"profile_sidebar_fill_color":"FD0B71",
"url":"http:\/\/www.annarachel-impressoes.blogspot.com"
},
"favorited":false,
"id":32188889825280000,
"created_at":"Mon Jan 31 21:30:04 +0000 2011",
"text":"Quem s\u00e3o os monarcas sen\u00e3o seres humanos com uma carga pesad\u00edssima a carregar? \"O Discurso do Rei\" lembra a humanidade da Coroa brit\u00e2nica"
},
{
"text":"Make yourself a #Crochet cap @YouTube - http:\/\/ow.ly\/3NBhN",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E",
"id_str":"32188889519104000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"contributors_enabled":false,
"profile_sidebar_fill_color":"000c29",
"url":"http:\/\/www.youtube.com\/crochet",
"listed_count":0,
"profile_background_tile":false,
"time_zone":null,
"description":"Crochet Guru",
"following":null,
"followers_count":37,
"location":"Savannah Georgia",
"friends_count":3,
"profile_link_color":"784726",
"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1176781882\/cupcake_normal.jpg",
"favourites_count":0,
"profile_sidebar_border_color":"212535",
"id_str":"220129089",
"is_translator":false,
"show_all_inline_media":false,
"geo_enabled":false,
"screen_name":"CrochetGeek",
"statuses_count":682,
"profile_use_background_image":false,
"notifications":null,
"profile_background_color":"31343d",
"protected":false,
"follow_request_sent":null,
"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/175753393\/x0f7fc6e815be05ce5cdd7ab33758383.jpg",
"name":"Teresa Crochet",
"id":220129089,
"lang":"en",
"verified":false,
"utc_offset":null,
"created_at":"Fri Nov 26 21:33:30 +0000 2010",
"profile_text_color":"323e4c"
},
"id":32188889519104000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:03 +0000 2011"
},
{
"text":"Omw 2 da crib",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E",
"id_str":"32188887728128000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"profile_sidebar_fill_color":"DDEEF6",
"url":null,
"profile_background_tile":true,
"time_zone":null,
"description":"We born to lose but build to win\/\/\/\/\/\/\/ Cant buy luv cant hide hate 100% fact",
"follow_request_sent":null,
"following":null,
"followers_count":152,
"location":"EVERYWHERE!!!!!!",
"show_all_inline_media":false,
"geo_enabled":false,
"profile_link_color":"0084B4",
"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1229359324\/IMG00039-20110129-1013_normal.jpg",
"statuses_count":527,
"favourites_count":0,
"profile_sidebar_border_color":"C0DEED",
"id_str":"228533094",
"screen_name":"i_gottahave_her",
"listed_count":5,
"profile_use_background_image":true,
"friends_count":130,
"notifications":null,
"profile_background_color":"C0DEED",
"protected":false,
"verified":false,
"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/183600070\/2002_paid_in_full_004.jpg",
"name":"Carlos Rivera",
"id":228533094,
"is_translator":false,
"contributors_enabled":false,
"lang":"en",
"utc_offset":null,
"created_at":"Mon Dec 20 00:45:09 +0000 2010",
"profile_text_color":"333333"
},
"id":32188887728128000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:03 +0000 2011"
},
{
"text":"Se hebben weer een mongol gevonde bij voetbalfans",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E",
"id_str":"32188882703360000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"profile_sidebar_fill_color":"DDEEF6",
"url":null,
"profile_background_tile":false,
"time_zone":null,
"description":"",
"listed_count":0,
"following":null,
"followers_count":35,
"location":"\u00dcT: 52.045802,4.360992",
"profile_link_color":"0084B4",
"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/980815061\/ik_normal.jpg",
"is_translator":false,
"show_all_inline_media":false,
"geo_enabled":false,
"favourites_count":0,
"friends_count":44,
"profile_sidebar_border_color":"C0DEED",
"id_str":"140401429",
"statuses_count":514,
"screen_name":"wendeltromp",
"profile_use_background_image":true,
"contributors_enabled":false,
"notifications":null,
"profile_background_color":"C0DEED",
"protected":false,
"profile_background_image_url":"http:\/\/a3.twimg.com\/a\/1296179758\/images\/themes\/theme1\/bg.png",
"name":"wendel tromp",
"follow_request_sent":null,
"verified":false,
"id":140401429,
"lang":"en",
"utc_offset":null,
"created_at":"Wed May 05 11:52:44 +0000 2010",
"profile_text_color":"333333"
},
"id":32188882703360000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:02 +0000 2011"
},
{
"text":"\u0411\u043e\u0435\u0432\u0438\u043a\u0438 \u0438 \u0434\u0435\u0442\u0435\u043a\u0442\u0438\u0432\u044b :: \u0411\u043e\u043b\u044c\u0448\u043e\u0439 \u0432\u044b\u0441\u0442\u0440\u0435\u043b \/ The Big Bang (\u0422\u043e\u043d\u0438 \u041a\u0440\u0430\u043d\u0442\u0446) [2010 \u0433., \u0431\u043e\u0435\u0432\u0438\u043a, \u0442\u0440\u0438\u043b\u043b\u0435\u0440, \u0434\u0435\u0442\u0435\u043a\u0442\u0438\u0432, DVDRip]... http:\/\/bit.ly\/eld8BJ",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003Etwitterfeed\u003C\/a\u003E",
"id_str":"32188880081920000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"show_all_inline_media":false,
"geo_enabled":true,
"profile_sidebar_fill_color":"DDEEF6",
"url":"http:\/\/rutracker.ru",
"follow_request_sent":null,
"statuses_count":1615,
"profile_background_tile":false,
"time_zone":"Moscow",
"description":"",
"following":null,
"followers_count":68,
"location":"Moskow",
"profile_link_color":"0084B4",
"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1031766110\/P6276697_normal.jpg",
"favourites_count":0,
"profile_sidebar_border_color":"C0DEED",
"id_str":"160277659",
"listed_count":4,
"verified":false,
"friends_count":0,
"screen_name":"olegvv",
"profile_use_background_image":true,
"notifications":null,
"profile_background_color":"C0DEED",
"protected":false,
"profile_background_image_url":"http:\/\/a3.twimg.com\/a\/1296156503\/images\/themes\/theme1\/bg.png",
"name":"Oleg Volkov",
"is_translator":false,
"contributors_enabled":false,
"id":160277659,
"lang":"en",
"utc_offset":10800,
"created_at":"Sun Jun 27 18:34:01 +0000 2010",
"profile_text_color":"333333"
},
"id":32188880081920000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:01 +0000 2011"
},
{
"text":"IIF THE BUS LIIEVES AT 715 NII I GET UP AT 7 THEN IITS NO REASON FOR MEII TO GO CRAZYI II MIISSED THE BUS II MIISSED IIT SO MOMO KISS MY ASS",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"web",
"id_str":"32188879033344000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"profile_sidebar_fill_color":"DDEEF6",
"url":null,
"statuses_count":57,
"geo_enabled":true,
"profile_background_tile":false,
"time_zone":null,
"description":"",
"following":null,
"followers_count":3,
"location":"new orleans\/alabama",
"is_translator":false,
"contributors_enabled":false,
"profile_link_color":"0084B4",
"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1022525321\/31274_122653971093835_100000476995337_234977_8368683_n_normal.jpg",
"favourites_count":0,
"profile_sidebar_border_color":"C0DEED",
"id_str":"95760712",
"verified":false,
"screen_name":"LADYKAY504",
"follow_request_sent":null,
"profile_use_background_image":true,
"notifications":null,
"profile_background_color":"C0DEED",
"protected":false,
"profile_background_image_url":"http:\/\/a3.twimg.com\/a\/1296265969\/images\/themes\/theme1\/bg.png",
"name":"lakeisha",
"show_all_inline_media":false,
"id":95760712,
"listed_count":0,
"lang":"en",
"utc_offset":null,
"created_at":"Wed Dec 09 23:39:21 +0000 2009",
"friends_count":110,
"profile_text_color":"333333"
},
"id":32188879033344000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:01 +0000 2011"
},
{
"text":"Changing Subject......What Do I Want 2 Eat...@Kiid_Gutts Did Granny Cook 2day",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"web",
"id_str":"32188875778560000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"profile_sidebar_fill_color":"7AC3EE",
"url":null,
"profile_background_tile":true,
"time_zone":"Mountain Time (US & Canada)",
"description":"",
"follow_request_sent":null,
"following":null,
"followers_count":105,
"location":"Cordova TN",
"profile_link_color":"FF0000",
"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1199859968\/Image11242010162655_normal.jpg",
"show_all_inline_media":false,
"geo_enabled":false,
"favourites_count":1,
"profile_sidebar_border_color":"65B0DA",
"id_str":"48889194",
"statuses_count":3847,
"screen_name":"KandiKoatd",
"listed_count":1,
"profile_use_background_image":true,
"contributors_enabled":false,
"notifications":null,
"profile_background_color":"642D8B",
"protected":false,
"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/182368478\/images_bigger.jpg",
"friends_count":129,
"name":"Terria Ashley",
"verified":false,
"id":48889194,
"is_translator":false,
"lang":"en",
"utc_offset":-25200,
"created_at":"Sat Jun 20 01:24:59 +0000 2009",
"profile_text_color":"3D1957"
},
"id":32188875778560000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:00 +0000 2011"
},
{
"text":"Ah, I believe we got our question! :) Thanks to everyone who submitted\/gave us feedback!",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E",
"id_str":"32188873681408000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"is_translator":false,
"profile_sidebar_fill_color":"252429",
"url":"http:\/\/www.tom-sturridge.com",
"verified":false,
"profile_background_tile":true,
"time_zone":"Quito",
"description":"Twitter for the Tom Sturridge Fansite - Tom-Sturridge.com -- We're NOT Tom!",
"following":null,
"followers_count":2321,
"location":"",
"follow_request_sent":null,
"profile_link_color":"2FC2EF",
"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/402485952\/twittPIC_normal.jpg",
"contributors_enabled":false,
"favourites_count":0,
"profile_sidebar_border_color":"181A1E",
"id_str":"30516935",
"screen_name":"TomSturridgecom",
"profile_use_background_image":true,
"show_all_inline_media":false,
"listed_count":79,
"geo_enabled":false,
"notifications":null,
"profile_background_color":"1A1B1F",
"protected":false,
"statuses_count":450,
"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/8227277\/2.jpg",
"name":"Tom-Sturridge.com",
"friends_count":162,
"id":30516935,
"lang":"en",
"utc_offset":-18000,
"created_at":"Sat Apr 11 20:26:56 +0000 2009",
"profile_text_color":"666666"
},
"id":32188873681408000,
"favorited":false,
"created_at":"Mon Jan 31 21:30:00 +0000 2011"
},
{
"text":"in language arts",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E",
"id_str":"32188871169024000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"follow_request_sent":null,
"profile_sidebar_fill_color":"080808",
"url":"http:\/\/www.myspace.com\/roza009",
"show_all_inline_media":true,
"geo_enabled":true,
"profile_background_tile":true,
"time_zone":"Pacific Time (US & Canada)",
"description":"the name iis Rosa Jackson prefered to be called Jayy' 14 years young and Rape my Follow button hugs and kisses to my FOLLOWERS & skype me at: itsJayy_\ue32b\ue32d\ue328\ue32a",
"statuses_count":1569,
"following":null,
"followers_count":161,
"location":"makiin ur dreamz come tru[:",
"profile_link_color":"2d5aa8",
"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1198374896\/image_normal.jpg",
"listed_count":2,
"favourites_count":3,
"friends_count":172,
"profile_sidebar_border_color":"b818c7",
"id_str":"207858983",
"screen_name":"ItsJayy_",
"verified":false,
"profile_use_background_image":true,
"notifications":null,
"profile_background_color":"1c6275",
"protected":false,
"is_translator":false,
"contributors_enabled":false,
"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/182128427\/idk.jpg",
"name":"hmu its Rosa Jackson",
"id":207858983,
"lang":"en",
"utc_offset":-28800,
"created_at":"Tue Oct 26 05:06:04 +0000 2010",
"profile_text_color":"4756b8"
},
"id":32188871169024000,
"favorited":false,
"created_at":"Mon Jan 31 21:29:59 +0000 2011"
},
{
"text":"triste noticia..meu cursinho come\u00e7a amanha",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"web",
"id_str":"32188870535680000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"follow_request_sent":null,
"profile_sidebar_fill_color":"E5507E",
"url":null,
"show_all_inline_media":false,
"geo_enabled":false,
"profile_background_tile":true,
"time_zone":null,
"description":"",
"statuses_count":1275,
"following":null,
"followers_count":197,
"location":"",
"profile_link_color":"B40B43",
"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1193644905\/DSC07138_normal.JPG",
"listed_count":11,
"favourites_count":0,
"friends_count":520,
"profile_sidebar_border_color":"CC3366",
"id_str":"168197464",
"screen_name":"dezi_pink",
"verified":false,
"profile_use_background_image":true,
"notifications":null,
"profile_background_color":"FF6699",
"protected":false,
"is_translator":false,
"contributors_enabled":false,
"profile_background_image_url":"http:\/\/a3.twimg.com\/a\/1296265969\/images\/themes\/theme11\/bg.gif",
"name":"Dezirre",
"id":168197464,
"lang":"en",
"utc_offset":null,
"created_at":"Sun Jul 18 17:37:15 +0000 2010",
"profile_text_color":"362720"
},
"id":32188870535680000,
"favorited":false,
"created_at":"Mon Jan 31 21:29:59 +0000 2011"
},
{
"text":"Uhggg im hungry what shall i eat and dont say wings cuzx thats ghetto",
"in_reply_to_screen_name":null,
"in_reply_to_status_id":null,
"place":null,
"in_reply_to_user_id":null,
"retweeted":false,
"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E",
"id_str":"32188868962816000",
"in_reply_to_status_id_str":null,
"geo":null,
"contributors":null,
"in_reply_to_user_id_str":null,
"retweet_count":0,
"truncated":false,
"coordinates":null,
"user":{
"profile_sidebar_fill_color":"efefef",
"url":null,
"is_translator":false,
"profile_background_tile":true,
"time_zone":"Quito",
"description":"Dont know you can sumit up for me",
"following":null,
"verified":false,
"followers_count":4,
"location":"Miami,Dade county",
"profile_link_color":"009999",
"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1199496236\/6_normal.jpeg",
"follow_request_sent":null,
"favourites_count":0,
"profile_sidebar_border_color":"eeeeee",
"id_str":"92817466",
"contributors_enabled":false,
"screen_name":"Dunndunn2",
"profile_use_background_image":true,
"notifications":null,
"profile_background_color":"131516",
"protected":false,
"show_all_inline_media":false,
"listed_count":0,
"geo_enabled":false,
"profile_background_image_url":"http:\/\/a2.twimg.com\/a\/1296156503\/images\/themes\/theme14\/bg.gif",
"name":"lexie lashaya",
"statuses_count":47,
"id":92817466,
"lang":"en",
"utc_offset":-18000,
"created_at":"Thu Nov 26 19:20:12 +0000 2009",
"friends_count":7,
"profile_text_color":"333333"
},
"id":32188868962816000,
"favorited":false,
"created_at":"Mon Jan 31 21:29:59 +0000 2011"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment