pax_global_header00006660000000000000000000000064150161727600014517gustar00rootroot0000000000000052 comment=b43c9b24605ce2fca7bb303cdd845f8e814c15fa jello-1.6.1/000077500000000000000000000000001501617276000126315ustar00rootroot00000000000000jello-1.6.1/.github/000077500000000000000000000000001501617276000141715ustar00rootroot00000000000000jello-1.6.1/.github/workflows/000077500000000000000000000000001501617276000162265ustar00rootroot00000000000000jello-1.6.1/.github/workflows/pythonapp.yml000066400000000000000000000013121501617276000207700ustar00rootroot00000000000000name: Tests on: push: paths: - "**/*.py" pull_request: paths: - "**/*.py" jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Test with unittest run: | python -m unittest discover tests jello-1.6.1/.gitignore000077500000000000000000000001111501617276000146150ustar00rootroot00000000000000__pycache__ *.pyc dist/ build/ *.egg-info/ .github/ _config.yml .vscode/ jello-1.6.1/ADVANCED_USAGE.md000066400000000000000000000063631501617276000152540ustar00rootroot00000000000000# Jello Advanced Usage #### Custom Configuration File You can use the `-i` option to initialize the `jello` environment with your own configuration file. The configuration file accepts valid python code where you can enable/disable `jello` options, customize your colors, add `import` statements for your favorite modules, and define your own functions. The file must be named `.jelloconf.py` and must be located in the proper directory based on the OS platform: - Linux, unix, macOS: `~/` - Windows: `%appdata%/` ##### Setting Options To set `jello` options in the `.jelloconf.py` file, import the `jello.lib.opts` class, add any of the following and set to `True` or `False`: ```python from jello.lib import opts opts.mono = True # -m option opts.compact = True # -c option opts.empty = True # -e option opts.lines = True # -l option opts.raw = True # -r option opts.raw_input = True # -R option opts.force_color = True # -C option opts.nulls = True # -n option opts.schema = True # -s option opts.types = True # -t option ``` ##### Setting Colors You can customize the colors by importing the `jello.lib.opts` class and setting the following variables to one of the following string values: `'black'`, `'red'`, `'green'`, `'yellow'`, `'blue'`, `'magenta'`, `'cyan'`, `'gray'`, `'brightblack'`, `'brightred'`, `'brightgreen'`, `'brightyellow'`, `'brightblue'`, `'brightmagenta'`, `'brightcyan'`, or `'white'`. ```python from jello.lib import opts opts.keyname_color = 'blue' # Key names opts.keyword_color = 'brightblack' # true, false, null opts.number_color = 'magenta' # integers, floats opts.string_color = 'green' # strings ``` > Note: Any colors set via the `JELLO_COLORS` environment variable will take precedence over any color values set in the `.jelloconf.py` configuration file ##### Importing Modules To import a module (e.g. `glom`) during initialization, just add the `import` statement to your `.jelloconf.py` file: ```python from glom import * ``` Then you can use `glom` in your `jello` filters without importing: ```bash jc -a | jello -i 'glom(_, "parsers.25.name")' "lsblk" ``` ##### Adding Functions You can also add functions to your initialization file. For example, you could simplify `glom` use by adding the following function to `.jelloconf.py`: ```python def g(query): import glom return glom.glom(_, query) ``` Then you can use the following syntax to filter the JSON data: ```bash jc -a | jello -i 'g("parsers.6.compatible")' [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] ``` Or you can predefine often-used queries by defining them as functions in `.jelloconf.py`: ```python def darwin_compatible(): result = [] for entry in _.parsers: if "darwin" in entry.compatible: result.append(entry.name) return result ``` Then you can use the predefined query like so: ```bash jc -a | jello -i 'darwin_compatible()' [ "airport", "airport_s", "arp", "asciitable", ... ] ``` Tip: Add a the following to print a message to STDERR in your `.jelloconf.py` file to show when the initialization file is being used: ```python import sys print('Running initialization file', file=sys.stderr) ``` jello-1.6.1/CHANGELOG000066400000000000000000000135171501617276000140520ustar00rootroot00000000000000jello changelog 20250529 v1.6.1 - Add the `-R` option to ingest the data as a raw string instead of converting to a dict/list - Add more information to query errors - Add the ability to add more information to the query scope - Add Python runtime information to `-v` option 20230423 v1.6.0 - Add the ability to directly use a JSON file or JSON Lines files as data input (`-f`) - Add the ability to load a query from a file (`-q`) - Add the empty data option (`-e`) - Fix user-defined functions in ~/.jelloconf initialization file 20230114 v1.5.5 - Fix schema output to ensure invalid variable names are enclosed in bracket notation - Fix to allow blank lines when slurping JSON Lines objects 20220730 v1.5.4 - Add `__main__.py` to package for `python -m jello` use cases 20220626 v1.5.3 - Fix scope issue in query function - Remove old man page from source package - Clean up tests 20211216 v1.5.2 - Enhance error output with text wrapping 20211213 v1.5.1 - Fix key names with spaces in Schema view 20211208 v1.5.0 - Note to Package Maintainers: `/jello/man/jello.1` no longer exists. Please use `/man/jello.1` - Wrap warning messages that exceed the terminal width - Add support for the NO_COLOR environment variable to set mono (http://no-color.org/) - Add -C option (opts.force_color) to force color output even when using pipes (overrides -m and NO_COLOR) 20211129 v1.4.6 - Note to Package Maintainers: TLDR: `/jello/man/jello.1` is deprecated and only `/man/jello.1` should be used. See the note at 20211126 v1.4.5 - Change schema output to include the base name of _ - Allow arrays to be printed as JSON Lines 20211126 v1.4.5 - Note to Package Maintainers: TLDR: `/jello/man/jello.1` is deprecated and only `/man/jello.1` should be used. The Man page in the PyPi source packages will be moving from `/jello/man/jello.1` to `/man/jello.1` in version 1.5.0. For now the Man page will be available in both locations, but be aware that the Man page at `/jello/man/jello.1` is now considered deprecated. - Include CHANGELOG in source distribution - Fix Man page location in source packages - Fix JSON load exception message to be more helpful - Fix schema view for nested lists - Add object and array initiation lines to schema view - Add Python 3.10 tests 20210626 v1.4.4 - Rename internal variables so they don't collide with user defined names - Clean up user runtime environment of unused variables 20210623 v1.4.3 - Update html formatting tests to only run if Pygments v2.9.0 is installed - Fix typo in man page - Fix tests failing on non-AMD64 architectures due to non-sorted set 20210622 v1.4.2 - Add MANIFEST.in file to project root to add man page to source 20210621 v1.4.1 - Add validation for type annotation option in initialization file 20210614 v1.4.0 - Add type annotation option for Schema view - Enhance error handling when a dict method is accessed (e.g. .get) - Enhance exception error messages - Pygments library dependency is now optional - Code refactor to split cli from lib 20210609 v1.3.6 - Documentation fixes for packages and binaries hosting 20210609 v1.3.5 - Enhance lines output to support colors - Enhance raw output to force monochrome output 20210609 v1.3.4 - Documentation fixes 20210608 v1.3.3 - Raise exception while creating JSON for non-serializable objects 20210608 v1.3.2 - Fix JSON strings with UTF-8 characters in Schema output 20210608 v1.3.1 - Fix regression with JELLO_COLORS environment variable 20210608 v1.3.0 - Add ability to use dot notation - Add more version information - Enhance performance and memory utilization for larger datasets - Enhance JSON strings to output UTF-8 characters instead of escaped codes - Enhance compact output to be even more compact by removing extra spaces - Add tests for python 3.9 20210524 v1.2.11 - Fix colors on Windows - Fix unrecognized characters in README.md for Windows - Create MSI installer for Windows 20200909 v1.2.10 - Add 'as_lib' option to pyquery and load_json to allow raising exceptions when being used as a module 20200728 v1.2.9 - Use sys.exit() for pyoxidizer support 20200614 v1.2.8 - Improve handling of blank input 20200612 v1.2.7 - Handle blank input gracefully 20200509 v1.2.6 - Add license file to package - Remove tests from package - Reduce pygments requirement to v2.4.2 20200412 v1.2.5 - Add custom colors to JELLO_COLORS env variable and .jelloconf.py 20200409 v1.2.4 - Fix Windows compatibility for broken pipe handling 20200409 v1.2.3 - Simplify broken pipe handling 20200409 v1.2.2 - Enhance schema format and colors for arrays - Simplify schema monochrome code 20200409 v1.2.1 - Add colors to schema view - Add schema option to .jelloconf.py - Change JSON colors to use ansi colors to match schema view - Fix BrokenPipeError message 20200408 v1.2.0 - Add -s schema option to print in a grep-able format 20200404 v1.1.2 - Remove lines() function and fix error message 20200403 v1.1.1 - Add option variable support to .jelloconf.py 20200402 v1.1.0 - Add color output by default when not piping data to another program - Add -m option for monochrome output 20200401 v1.0.0 - Remove requirement to assign the result to 'r' 20200401 v0.8.0 - Github Actions CI unit tests - Code cleanup - Add more tests 20200331 v0.5.0 - Add -l option for lines output (deprecated lines() function) - Add -i option to import a custom configuration to initialize the environment - Fixed handling of strings with newlines for lines output - Add over 100 tests 20200325 v0.3.1 - Enhanced exception handling 20200325 v0.3.0 - Add -r option for raw output - Fix null, and boolean values - Add -n option to print selected null values 20200325 v0.2.0 - Handle TypeError for bash array joins 20200324 v0.1.9 - More exception handling 20200324 v0.1.8 - Enhance error messages 20200324 v0.1.7 - Fix helptext and version printing 20200324 v0.1.6 - Add __init__.py to package 20200324 v0.1.5 - Initial releasejello-1.6.1/LICENSE000066400000000000000000000020551501617276000136400ustar00rootroot00000000000000MIT License Copyright (c) 2020 Kelly Brazil Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. jello-1.6.1/MANIFEST.in000066400000000000000000000000461501617276000143670ustar00rootroot00000000000000include man/jello.1 include CHANGELOG jello-1.6.1/README.md000066400000000000000000000367401501617276000141220ustar00rootroot00000000000000[![Pypi](https://img.shields.io/pypi/v/jello.svg)](https://pypi.org/project/jello/) >Built on `jello`: >- [Jello Explorer](https://github.com/kellyjonbrazil/jellex) (aka `jellex`) interactive TUI >- `jello` [web demo](https://jello-web.onrender.com) # jello Filter JSON and JSON Lines data with Python syntax `jello` is similar to `jq` in that it processes JSON and JSON Lines data except `jello` uses standard python dict and list syntax. JSON or JSON Lines can be piped into `jello` via STDIN or can be loaded from a JSON file or JSON Lines files (JSON Lines are automatically slurped into a list of dictionaries). Once loaded, the data is available as a python list or dictionary object named '`_`'. Processed data can be output as JSON, JSON Lines, bash array lines, or a grep-able schema. For more information on the motivations for this project, see my [blog post](https://blog.kellybrazil.com/2020/03/25/jello-the-jq-alternative-for-pythonistas/). ## Install You can install `jello` via `pip`, via OS Package Repository, MSI installer for Windows, or by downloading the correct binary for your architecture and running it anywhere on your filesystem. ### Pip (macOS, linux, unix, Windows) For the most up-to-date version and the most cross-platform option, use `pip` or `pip3` to download and install `jello` directly from [PyPi](https://pypi.org/project/jello/): [![Pypi](https://img.shields.io/pypi/v/jello.svg)](https://pypi.org/project/jello/) ```bash pip3 install jello ``` ### Packages and Binaries | OS | Command | |-----------------------|--------------------------| | Debian/Ubuntu linux | `apt-get install jello` | | Fedora linux | `dnf install jello` | | Arch linux | `pacman -S jello` | | macOS | `brew install jello` | > For more OS packages, see https://repology.org/project/jello/versions. See [Releases](https://github.com/kellyjonbrazil/jello/releases) on Github for MSI packages and binaries. ### Usage ``` cat data.json | jello [OPTIONS] [QUERY | -q ] jello [OPTIONS] [QUERY | -q ] [-f ] ``` `QUERY` is optional and can be most any valid python code. Alternatively, a query file can be specified with `-q` to load the query from a file. Within the query, `_` is the sanitized JSON from STDIN presented as a python dict or list of dicts. If `QUERY` is omitted then the original JSON input will simply be pretty printed. You can use dot notation or traditional python bracket notation to access key names. > Note: Reserved key names that cannot be accessed using dot notation can be accessed via standard python dictionary notation. (e.g. `_.foo["get"]` instead of `_.foo.get`) A simple query: ```bash cat data.json | jello _.foo ``` or ```bash jello _.foo -f data.json ``` or ```bash jello '_["foo"]' -f data.json ``` #### Options - `-c` compact print JSON output instead of pretty printing - `-C` force color output even when using pipes (overrides `-m` and the `NO_COLOR` env variable) - `-e` empty data (don't process data from STDIN or file) - `-f` load input data from JSON file or JSON Lines files (must be the final option, if used) - `-i` initialize environment with a custom config file - `-l` lines output (suitable for bash array assignment) - `-m` monochrome output - `-n` print selected `null` values - `-q` load query from a file - `-r` raw output of selected strings (no quotes) - `-R` raw string input (don't auto convert input to dict/list) - `-s` print the JSON schema in grep-able format - `-t` print type annotations in schema view - `-h` help - `-v` version info #### Simple Examples `jello` simply pretty prints the JSON if there are no options or query passed: ```bash echo '{"foo":"bar","baz":[1,2,3]}' | jello { "foo": "bar", "baz": [ 1, 2, 3 ] } ``` If you prefer compact output, use the `-c` option: ```bash echo '{"foo":"bar","baz":[1,2,3]}' | jello -c {"foo":"bar","baz":[1,2,3]} ``` Use the `-l` option to convert lists/arrays into lines: ```bash echo '{"foo":"bar","baz":[1,2,3]}' | jello -l _.baz 1 2 3 ``` The `-l` option also allows you to create [JSON Lines](https://jsonlines.org/): ```bash echo '[{"foo":"bar","baz":[1,2,3]},{"fiz":"boo","buz":[4,5,6]}]' | jello -l {"foo":"bar","baz":[1,2,3]} {"fiz":"boo","buz":[4,5,6]} ``` You can print a grep-able schema by using the `-s` option: ```bash echo '{"foo":"bar","baz":[1,2,3]}' | jello -s _ = {}; _.foo = "bar"; _.baz = []; _.baz[0] = 1; _.baz[1] = 2; _.baz[2] = 3; ``` #### Assigning Results to a Bash Array Use the `-l` option to print JSON array output in a manner suitable to be assigned to a bash array. The `-r` option can be used to remove quotation marks around strings. If you want `null` values to be printed as `null`, use the `-n` option, otherwise they are printed as blank lines. Bash variable: ``` variable=($(cat data.json | jello -rl _.foo)) ``` Bash array variable (Bash 4+): ``` mapfile -t variable < <(cat data.json | jello -rl _.foo) ``` Bash array variable (older versions of Bash): ``` variable=() while read -r value; do variable+=("$value") done < <(cat data.json | jello -rl _.foo) ``` ### Non-JSON Data Input (YAML, CSV, etc.) You can work with other types of data with the `-R` (raw string input) option. For example, if you would like to read in YAML data you can load the data as a raw string, import the `yaml` library, and load the string data into `_` with the `yaml` library: ```bash $ cat values.yaml var1: value1 var2: value2 var3: value3 $ jello -Rr ' import yaml _ = yaml.safe_load(_) _["var2"] ' -f values.yaml value2 ``` > Note: Dot notation is not supported with the `-R` option unless the library used to > convert the raw string supports this. (e.g. `python-benedict`) ### Setting Custom Colors via Environment Variable Custom colors can be set via the `JELLO_COLORS` environment variable. Any colors set in the environment variable will take precedence over any colors set in the initialization file. (see [Advanced Usage](https://github.com/kellyjonbrazil/jello/blob/master/ADVANCED_USAGE.md)) The `JELLO_COLORS` environment variable takes four comma separated string values in the following format: ``` JELLO_COLORS=,,, ``` Where colors are: `black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `gray`, `brightblack`, `brightred`, `brightgreen`, `brightyellow`, `brightblue`, `brightmagenta`, `brightcyan`, `white`, or `default` For example, to set to the default colors: ``` JELLO_COLORS=blue,brightblack,magenta,green ``` or ``` JELLO_COLORS=default,default,default,default ``` ### Disable Colors via Environment Variable You can set the [`NO_COLOR`](http://no-color.org/) environment variable to any value to disable color output in `jello`. Note that using the `-C` option to force color output will override both the `NO_COLOR` environment variable and the `-m` option. ### Advanced Usage Here is more [Advanced Usage](https://github.com/kellyjonbrazil/jello/blob/master/ADVANCED_USAGE.md) information. > To accelerate filter development and testing, try [`jellex`](https://github.com/kellyjonbrazil/jellex). `jellex` is an interactive front-end TUI built on `jello` that allows you to see your filter results in real-time along with any errors. ## Examples: ### Printing the Grep-able Schema ```bash $ jc -a | jello -s _ = {}; _.name = "jc"; _.version = "1.17.2"; _.description = "JSON CLI output utility"; _.author = "Kelly Brazil"; _.author_email = "kellyjonbrazil@gmail.com"; _.website = "https://github.com/kellyjonbrazil/jc"; _.copyright = "© 2019-2021 Kelly Brazil"; _.license = "MIT License"; _.parser_count = 80; _.parsers = []; _.parsers[0] = {}; _.parsers[0].name = "acpi"; _.parsers[0].argument = "--acpi"; _.parsers[0].version = "1.2"; _.parsers[0].description = "`acpi` command parser"; _.parsers[0].author = "Kelly Brazil"; _.parsers[0].author_email = "kellyjonbrazil@gmail.com"; _.parsers[0].compatible = []; _.parsers[0].compatible[0] = "linux"; _.parsers[0].magic_commands = []; _.parsers[0].magic_commands[0] = "acpi"; _.parsers[1] = {}; _.parsers[1].name = "airport"; _.parsers[1].argument = "--airport"; _.parsers[1].version = "1.3"; ... ``` ### Printing the Grep-able Schema with type annotations (useful for grepping types) ```bash jc dig example.com | jello -st _ = []; // (array) _[0] = {}; // (object) _[0].id = 23819; // (number) _[0].opcode = "QUERY"; // (string) _[0].status = "NOERROR"; // (string) _[0].flags = []; // (array) _[0].flags[0] = "qr"; // (string) _[0].flags[1] = "rd"; // (string) _[0].flags[2] = "ra"; // (string) _[0].query_num = 1; // (number) _[0].answer_num = 1; // (number) _[0].authority_num = 0; // (number) _[0].additional_num = 1; // (number) _[0].opt_pseudosection = {}; // (object) _[0].opt_pseudosection.edns = {}; // (object) _[0].opt_pseudosection.edns.version = 0; // (number) _[0].opt_pseudosection.edns.flags = []; // (array) _[0].opt_pseudosection.edns.udp = 4096; // (number) _[0].question = {}; // (object) _[0].question.name = "example.com."; // (string) _[0].question.class = "IN"; // (string) _[0].question.type = "A"; // (string) _[0].answer = []; // (array) _[0].answer[0] = {}; // (object) _[0].answer[0].name = "example.com."; // (string) _[0].answer[0].class = "IN"; // (string) _[0].answer[0].type = "A"; // (string) _[0].answer[0].ttl = 48358; // (number) _[0].answer[0].data = "93.184.216.34"; // (string) _[0].query_time = 46; // (number) _[0].server = "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)"; // (string) _[0].when = "Mon Nov 29 09:41:11 PST 2021"; // (string) _[0].rcvd = 56; // (number) _[0].when_epoch = 1638207671; // (number) _[0].when_epoch_utc = null; // (null) ``` ### Printing the Structure of the JSON ```bash jc dig example.com | jello -st | grep '(object)\|(array)' _ = []; // (array) _[0] = {}; // (object) _[0].flags = []; // (array) _[0].opt_pseudosection = {}; // (object) _[0].opt_pseudosection.edns = {}; // (object) _[0].opt_pseudosection.edns.flags = []; // (array) _[0].question = {}; // (object) _[0].answer = []; // (array) _[0].answer[0] = {}; // (object) ``` ### Lambda Functions and Math ```bash echo '{"t1":-30, "t2":-20, "t3":-10, "t4":0}' | jello '\ keys = _.keys() vals = _.values() cel = list(map(lambda x: (float(5)/9)*(x-32), vals)) dict(zip(keys, cel))' { "t1": -34.44444444444444, "t2": -28.88888888888889, "t3": -23.333333333333336, "t4": -17.77777777777778 } ``` ```bash jc -a | jello 'len([entry for entry in _.parsers if "darwin" in entry.compatible])' 45 ``` ### For Loops Output as JSON array ```bash jc -a | jello '\ result = [] for entry in _.parsers: if "darwin" in entry.compatible: result.append(entry.name) result' [ "airport", "airport_s", "arp", "crontab", "crontab_u", ... ] ``` Output as bash array ```bash jc -a | jello -rl '\ result = [] for entry in _.parsers: if "darwin" in entry.compatible: result.append(entry.name) result' airport airport_s arp crontab crontab_u ... ``` ### List and Dictionary Comprehension Output as JSON array ```bash jc -a | jello '[entry.name for entry in _.parsers if "darwin" in entry.compatible]' [ "airport", "airport_s", "arp", "crontab", "crontab_u", ... ] ``` Output as bash array ```bash jc -a | jello -rl '[entry.name for entry in _.parsers if "darwin" in entry.compatible]' airport airport_s arp crontab crontab_u ... ``` ### Expressions and Environment Variables ```bash echo '{"login_name": "joeuser"}' | jello 'os.getenv("LOGNAME") == _.login_name' true ``` ### Using 3rd Party Modules You can import and use your favorite modules to manipulate the data. For example, using `glom`: ```bash jc -a | jello '\ from glom import * glom(_, ("parsers", ["name"]))' [ "airport", "airport_s", "arp", "blkid", "crontab", "crontab_u", "csv", ... ] ``` ### Advanced JSON Manipulation The data from this example comes from https://programminghistorian.org/assets/jq_twitter.json Under **Grouping and Counting**, Matthew describes an advanced `jq` filter against a sample Twitter dataset that includes JSON Lines data. There he describes the following query: > "We can now create a table of users. Let’s create a table with columns for the user id, user name, followers count, and a column of their tweet ids separated by a semicolon." https://programminghistorian.org/en/lessons/json-and-jq Here is a simple solution using `jello`: ```bash cat jq_twitter.json | jello -l '\ user_ids = set() for tweet in _: user_ids.add(tweet.user.id) result = [] for user in user_ids: user_profile = {} tweet_ids = [] for tweet in _: if tweet.user.id == user: user_profile.update({ "user_id": user, "user_name": tweet.user.screen_name, "user_followers": tweet.user.followers_count}) tweet_ids.append(str(tweet.id)) user_profile["tweet_ids"] = ";".join(tweet_ids) result.append(user_profile) result' ... {"user_id": 2696111005, "user_name": "EGEVER142", "user_followers": 1433, "tweet_ids": "619172303654518784"} {"user_id": 42226593, "user_name": "shirleycolleen", "user_followers": 2114, "tweet_ids": "619172281294655488;619172179960328192"} {"user_id": 106948003, "user_name": "MrKneeGrow", "user_followers": 172, "tweet_ids": "501064228627705857"} {"user_id": 18270633, "user_name": "ahhthatswhy", "user_followers": 559, "tweet_ids": "501064204661850113"} {"user_id": 14331818, "user_name": "edsu", "user_followers": 4220, "tweet_ids": "615973042443956225;618602288781860864"} {"user_id": 2569107372, "user_name": "SlavinOleg", "user_followers": 35, "tweet_ids": "501064198973960192;501064202794971136;501064214467731457;501064215759568897;501064220121632768"} {"user_id": 22668719, "user_name": "nodehyena", "user_followers": 294, "tweet_ids": "501064222772445187"} ... ```jello-1.6.1/_config.yml000066400000000000000000000000321501617276000147530ustar00rootroot00000000000000theme: jekyll-theme-caymanjello-1.6.1/build-package.sh000077500000000000000000000002051501617276000156550ustar00rootroot00000000000000#!/bin/bash # build jello PIP package # to install locally, run: pip3 install jello-x.x.tar.gz python3 setup.py sdist bdist_wheel jello-1.6.1/install.sh000077500000000000000000000000561501617276000146370ustar00rootroot00000000000000#!/bin/bash pip3 install --upgrade --user -e .jello-1.6.1/jello/000077500000000000000000000000001501617276000137365ustar00rootroot00000000000000jello-1.6.1/jello/__init__.py000066400000000000000000000003441501617276000160500ustar00rootroot00000000000000"""jello - query JSON at the command line with python syntax""" __version__ = '1.6.1' AUTHOR = 'Kelly Brazil' WEBSITE = 'https://github.com/kellyjonbrazil/jello' COPYRIGHT = '© 2020-2025 Kelly Brazil' LICENSE = 'MIT License' jello-1.6.1/jello/__main__.py000066400000000000000000000000431501617276000160250ustar00rootroot00000000000000import jello.cli jello.cli.main() jello-1.6.1/jello/cli.py000066400000000000000000000214631501617276000150650ustar00rootroot00000000000000"""jello - query JSON at the command line with python syntax""" import os import sys import signal import shutil import textwrap import traceback from textwrap import TextWrapper import jello from jello.lib import opts, load_json, read_file, pyquery, Schema, Json def ctrlc(signum, frame): """exit with error on SIGINT""" sys.exit(1) def get_stdin(): """return STDIN data""" if sys.stdin.isatty(): return None else: return sys.stdin.read() def print_help(): print(textwrap.dedent('''\ jello: query JSON at the command line with python syntax Usage: cat data.json | jello [OPTIONS] [QUERY | -q ] jello [OPTIONS] [QUERY | -q ] [-f ] -c compact JSON output -C force color output even when using pipes (overrides -m) -e empty data (don't process data from STDIN or file) -f load input data from JSON file or JSON Lines files -i initialize environment with .jelloconf.py located at ~ (linux) or %appdata% (Windows) -l output as lines suitable for assignment to a bash array -m monochrome output -n print selected null values -q load query from a file -r raw string output (no quotes) -R raw string input (don't auto convert input to dict/list) -s print the JSON schema in grep-able format -t print type annotations in schema view -v version info -h help Use '_' as the input data and use python dict and list bracket syntax or dot notation to filter the results and/or rebuild the output. Examples: cat data.json | jello _.foo jello _.foo -f data.json jello '_["foo"]' -f data.json variable=($(cat data.json | jello -l _.foo)) ''')) sys.exit() def print_error(message): """print error messages to STDERR and quit with error code""" print(message, file=sys.stderr) sys.exit(1) def print_exception(e=None, data='', query='', response='', ex_type='Runtime'): exception_message = '' term_width = shutil.get_terminal_size().columns or 80 split_length = int(term_width) if split_length < 10: split_length = 10 # prepare short info where the error occurred stacktrace = traceback.extract_tb(e.__traceback__) stacklines = [] if len(stacktrace): if stacktrace[-1].filename == "": # we get as filename when exception occurs in a exec() call stacklines.append(f"Jello query, line {stacktrace[-1].lineno}") # lineno begins with 1, lists with 0 -> subtract 1 stacklines.append(" " + query.split('\n')[stacktrace[-1].lineno-1]) wrapper = TextWrapper(width=term_width, initial_indent='', subsequent_indent=' ' * 12) exception_message = wrapper.fill(f'jello: {ex_type} Exception: {e.__class__.__name__}') + '\n' wrapper = TextWrapper(width=term_width, initial_indent=' ' * 8, subsequent_indent=' ' * 12) # add pre-formatted stacktrace text: flatten the info into lines, normalize newlines for errstring in stacklines: for errline in errstring.split('\n'): if len(errline.replace('\n', '')): exception_message += wrapper.fill(errline.replace('\n', '')) + '\n' exception_message += wrapper.fill(f'{e}') + '\n' e_text = '' if hasattr(e, 'text'): e_text = str(e.text).replace('\n', '') detail = { f'{e.__class__.__name__}': e_text, 'query': str(query).replace('\n', '\\n'), 'data': str(data).replace('\n', '\\n'), 'response': str(response).replace('\n', '\\n') } for item in detail: if len(detail[item]) > (split_length * 2) + 10: detail[item] = f'{item}: {detail[item][:split_length]} ... {detail[item][-split_length:]}' elif detail[item]: detail[item] = f'{item}: {detail[item]}' if detail[item]: detail[item] = wrapper.fill(detail[item]) exception_message += f'{detail[item]}' + '\n' print(exception_message, file=sys.stderr) sys.exit(1) def main(data=None, query='_'): # break on ctrl-c keyboard interrupt signal.signal(signal.SIGINT, ctrlc) # break on pipe error. need try/except for windows compatibility try: signal.signal(signal.SIGPIPE, signal.SIG_DFL) except AttributeError: pass # enable colors for Windows cmd.exe terminal if sys.platform.startswith('win32'): os.system('') if data is None: data = get_stdin() options = [] long_options = {} arg_section = '' # can be query_file or data_files for arg in sys.argv[1:]: if arg == '-q': arg_section = 'query_file' elif arg == '-f': data = '' arg_section = 'data_files' elif arg_section == 'query_file': try: query = read_file(arg) except Exception as e: print_error(f'jello: Issue reading query file: {e}') finally: arg_section = '' elif arg_section == 'data_files': try: data += '\n' + read_file(arg) except Exception as e: print_error(f'jello: Issue reading data file: {e}') elif arg.startswith('-') and not arg.startswith('--'): options.extend(arg[1:]) arg_section = '' elif arg.startswith('--'): try: k, v = arg[2:].split('=') long_options[k] = int(v) arg_section = '' except Exception: print_help() else: query = arg arg_section = '' opts.compact = opts.compact or 'c' in options opts.initialize = opts.initialize or 'i' in options opts.lines = opts.lines or 'l' in options opts.empty = opts.empty or 'e' in options opts.force_color = opts.force_color or 'C' in options opts.mono = opts.mono or ('m' in options or bool(os.getenv('NO_COLOR'))) opts.nulls = opts.nulls or 'n' in options opts.raw = opts.raw or 'r' in options opts.raw_input = opts.raw_input or 'R' in options opts.schema = opts.schema or 's' in options opts.types = opts.types or 't' in options opts.version_info = opts.version_info or 'v' in options opts.helpme = opts.helpme or 'h' in options if opts.helpme: print_help() if opts.version_info: py_ver: str = '.'.join((str(sys.version_info.major), str(sys.version_info.minor), str(sys.version_info.micro))) print(textwrap.dedent(f'''\ jello: Version: {jello.__version__} Python Version: {py_ver} Python Path: {sys.executable} Author: {jello.AUTHOR} Website: {jello.WEBSITE} Copyright: {jello.COPYRIGHT} License: {jello.LICENSE} ''')) sys.exit() if data is None and not opts.empty: print_error('jello: Missing JSON or JSON Lines data via STDIN or file via -f option.\n') if opts.empty: data = '{}' # load the data as a raw string or JSON if opts.raw_input: data = str(data).rstrip('\r\n') else: # load the JSON or JSON Lines into a dict or list of dicts try: data = load_json(data) except Exception as e: print_exception(e, ex_type='JSON Load') # Read .jelloconf.py (if it exists) and run the query response = '' try: response = pyquery(data, query) except Exception as e: print_exception(e, data, query, ex_type='Query') # reset opts.mono after pyquery since initialization in pyquery can change values if opts.force_color: opts.mono = False # Create and print schema or JSON/JSON-Lines/Lines output = '' try: if opts.schema: schema = Schema() output = schema.create_schema(response) if not opts.mono and (sys.stdout.isatty() or opts.force_color): schema.set_colors() output = schema.color_output(output) else: json_out = Json() output = json_out.create_json(response) if (not opts.mono and not opts.raw) and (sys.stdout.isatty() or opts.force_color): json_out.set_colors() output = json_out.color_output(output) print(output) except Exception as e: print_exception(e, data, query, response, ex_type='Output') if __name__ == '__main__': main() jello-1.6.1/jello/dotmap.py000066400000000000000000000314571501617276000156060ustar00rootroot00000000000000# The MIT License (MIT) # # Copyright (c) 2015 Chris Redford # # Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated # documentation files (the "Software"), to deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to the following conditions: # The above copyright notice and this permission notice shall be included in all copies or substantial portions of # the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO # THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF # CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # Note: commented out code on lines 52-55 and 79-82. Changes on line 122-125 from collections import OrderedDict try: from collections.abc import MutableMapping, Iterable except ImportError: from collections import MutableMapping, Iterable from json import dumps from pprint import pprint from inspect import ismethod class DotMap(MutableMapping, OrderedDict): def __init__(self, *args, **kwargs): self._map = OrderedDict() self._dynamic = kwargs.pop('_dynamic', True) self._prevent_method_masking = kwargs.pop('_prevent_method_masking', False) trackedIDs = kwargs.pop('_trackedIDs', {}) if args: d = args[0] # for recursive assignment handling trackedIDs[id(d)] = self src = [] if isinstance(d, MutableMapping): src = self.__call_items(d) elif isinstance(d, Iterable): src = d for k,v in src: # Remove this code so we can load data that has reserved key names, yet # still raise an exception when attempting to create them later. # if self._prevent_method_masking and k in reserved_keys: # raise KeyError('"{}" is reserved'.format(k)) if isinstance(v, dict): idv = id(v) if idv in trackedIDs: v = trackedIDs[idv] else: trackedIDs[idv] = v v = self.__class__(v, _dynamic=self._dynamic, _prevent_method_masking = self._prevent_method_masking, _trackedIDs = trackedIDs) if type(v) is list: l = [] for i in v: n = i if isinstance(i, dict): idi = id(i) if idi in trackedIDs: n = trackedIDs[idi] else: trackedIDs[idi] = i n = self.__class__(i, _dynamic=self._dynamic, _prevent_method_masking = self._prevent_method_masking) l.append(n) v = l self._map[k] = v if kwargs: for k,v in self.__call_items(kwargs): # Remove this code so we can load data that has reserved key names, yet # still raise an exception when attempting to create them later. # if self._prevent_method_masking and k in reserved_keys: # raise KeyError('"{}" is reserved'.format(k)) self._map[k] = v def __call_items(self, obj): if hasattr(obj, 'iteritems') and ismethod(getattr(obj, 'iteritems')): return obj.iteritems() else: return obj.items() def items(self): return self.iteritems() def iteritems(self): return self.__call_items(self._map) def __iter__(self): return self._map.__iter__() def next(self): return self._map.next() def __setitem__(self, k, v): self._map[k] = v def __getitem__(self, k): if k not in self._map and self._dynamic and k != '_ipython_canary_method_should_not_exist_': # automatically extend to new DotMap self[k] = self.__class__() return self._map[k] def __setattr__(self, k, v): if k in {'_map','_dynamic', '_ipython_canary_method_should_not_exist_', '_prevent_method_masking'}: super(DotMap, self).__setattr__(k,v) elif self._prevent_method_masking and k in reserved_keys: raise KeyError('"{}" is reserved'.format(k)) else: self[k] = v def __getattr__(self, k): if k.startswith('__') and k.endswith('__'): raise AttributeError(f'{k} is reserved. Please use python dict bracket notation for this key.') if self._prevent_method_masking and k in reserved_keys: raise AttributeError(f'{k} is reserved. Please use python dict bracket notation for this key.') if k in {'_map','_dynamic','_ipython_canary_method_should_not_exist_'}: return super(DotMap, self).__getattr__(k) try: v = super(self.__class__, self).__getattribute__(k) return v except AttributeError: pass return self[k] def __delattr__(self, key): return self._map.__delitem__(key) def __contains__(self, k): return self._map.__contains__(k) def __add__(self, other): if self.empty(): return other else: self_type = type(self).__name__ other_type = type(other).__name__ msg = "unsupported operand type(s) for +: '{}' and '{}'" raise TypeError(msg.format(self_type, other_type)) def __str__(self, seen = None): items = [] seen = {id(self)} if seen is None else seen for k,v in self.__call_items(self._map): # circular assignment case if isinstance(v, self.__class__): if id(v) in seen: items.append('{0}={1}(...)'.format(k, self.__class__.__name__)) else: seen.add(id(v)) items.append('{0}={1}'.format(k, v.__str__(seen))) else: items.append('{0}={1}'.format(k, repr(v))) joined = ', '.join(items) out = '{0}({1})'.format(self.__class__.__name__, joined) return out def __repr__(self): return str(self) def toDict(self, seen = None): if seen is None: seen = {} d = {} seen[id(self)] = d for k,v in self.items(): if issubclass(type(v), DotMap): idv = id(v) if idv in seen: v = seen[idv] else: v = v.toDict(seen = seen) elif type(v) in (list, tuple): l = [] for i in v: n = i if issubclass(type(i), DotMap): idv = id(n) if idv in seen: n = seen[idv] else: n = i.toDict(seen = seen) l.append(n) if type(v) is tuple: v = tuple(l) else: v = l d[k] = v return d def pprint(self, pformat='dict'): if pformat == 'json': print(dumps(self.toDict(), indent=4, sort_keys=True)) else: pprint(self.toDict()) def empty(self): return (not any(self)) # proper dict subclassing def values(self): return self._map.values() # ipython support def __dir__(self): return self.keys() @classmethod def parseOther(self, other): if issubclass(type(other), DotMap): return other._map else: return other def __cmp__(self, other): other = DotMap.parseOther(other) return self._map.__cmp__(other) def __eq__(self, other): other = DotMap.parseOther(other) if not isinstance(other, dict): return False return self._map.__eq__(other) def __ge__(self, other): other = DotMap.parseOther(other) return self._map.__ge__(other) def __gt__(self, other): other = DotMap.parseOther(other) return self._map.__gt__(other) def __le__(self, other): other = DotMap.parseOther(other) return self._map.__le__(other) def __lt__(self, other): other = DotMap.parseOther(other) return self._map.__lt__(other) def __ne__(self, other): other = DotMap.parseOther(other) return self._map.__ne__(other) def __delitem__(self, key): return self._map.__delitem__(key) def __len__(self): return self._map.__len__() def clear(self): self._map.clear() def copy(self): return self.__class__(self) def __copy__(self): return self.copy() def __deepcopy__(self, memo=None): return self.copy() def get(self, key, default=None): return self._map.get(key, default) def has_key(self, key): return key in self._map def iterkeys(self): return self._map.iterkeys() def itervalues(self): return self._map.itervalues() def keys(self): return self._map.keys() def pop(self, key, default=None): return self._map.pop(key, default) def popitem(self): return self._map.popitem() def setdefault(self, key, default=None): return self._map.setdefault(key, default) def update(self, *args, **kwargs): if len(args) != 0: self._map.update(*args) self._map.update(kwargs) def viewitems(self): return self._map.viewitems() def viewkeys(self): return self._map.viewkeys() def viewvalues(self): return self._map.viewvalues() @classmethod def fromkeys(cls, seq, value=None): d = cls() d._map = OrderedDict.fromkeys(seq, value) return d def __getstate__(self): return self.__dict__ def __setstate__(self, d): self.__dict__.update(d) # bannerStr def _getListStr(self,items): out = '[' mid = '' for i in items: mid += ' {}\n'.format(i) if mid != '': mid = '\n' + mid out += mid out += ']' return out def _getValueStr(self,k,v): outV = v multiLine = len(str(v).split('\n')) > 1 if multiLine: # push to next line outV = '\n' + v if type(v) is list: outV = self._getListStr(v) out = '{} {}'.format(k,outV) return out def _getSubMapDotList(self, pre, name, subMap): outList = [] if pre == '': pre = name else: pre = '{}.{}'.format(pre,name) def stamp(pre,k,v): valStr = self._getValueStr(k,v) return '{}.{}'.format(pre, valStr) for k,v in subMap.items(): if isinstance(v,DotMap) and v != DotMap(): subList = self._getSubMapDotList(pre,k,v) outList.extend(subList) else: outList.append(stamp(pre,k,v)) return outList def _getSubMapStr(self, name, subMap): outList = ['== {} =='.format(name)] for k,v in subMap.items(): if isinstance(v, self.__class__) and v != self.__class__(): # break down to dots subList = self._getSubMapDotList('',k,v) # add the divit # subList = ['> {}'.format(i) for i in subList] outList.extend(subList) else: out = self._getValueStr(k,v) # out = '> {}'.format(out) out = '{}'.format(out) outList.append(out) finalOut = '\n'.join(outList) return finalOut def bannerStr(self): lines = [] previous = None for k,v in self.items(): if previous == self.__class__.__name__: lines.append('-') out = '' if isinstance(v, self.__class__): name = k subMap = v out = self._getSubMapStr(name,subMap) lines.append(out) previous = self.__class__.__name__ else: out = self._getValueStr(k,v) lines.append(out) previous = 'other' lines.append('--') s = '\n'.join(lines) return s reserved_keys = {i for i in dir(DotMap) if not i.startswith('__') and not i.endswith('__')} jello-1.6.1/jello/lib.py000066400000000000000000000442421501617276000150640ustar00rootroot00000000000000"""jello - query JSON at the command line with python syntax""" import os import sys import types import ast import json import shutil from keyword import iskeyword from textwrap import TextWrapper from jello.dotmap import DotMap # make pygments import optional try: from pygments import highlight from pygments.style import Style from pygments.token import (Name, Number, String, Keyword) from pygments.lexers import JsonLexer from pygments.lexers.javascript import JavascriptLexer from pygments.formatters import Terminal256Formatter from pygments.formatters import HtmlFormatter PYGMENTS_INSTALLED = True except Exception: PYGMENTS_INSTALLED = False def is_valid_variable_name(name: str) -> bool: dict_methods = [ '__class__', '__class_getitem__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getstate__', '__gt__', '__init__', '__init_subclass__', '__ior__', '__iter__', '__le__', '__len__', '__lt__', '__ne__', '__new__', '__or__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__ror__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'clear', 'copy', 'fromkeys', 'get', 'items', 'keys', 'pop', 'popitem', 'setdefault', 'update', 'values' ] return name.isidentifier() and not iskeyword(name) and name not in dict_methods class opts: initialize = None version_info = None helpme = None compact = None empty = None nulls = None raw = None raw_input = None lines = None force_color = None mono = None schema = None types = None keyname_color = None keyword_color = None number_color = None string_color = None class JelloTheme: if PYGMENTS_INSTALLED: theme = { Name: 'bold ansiblue', Keyword: 'ansibrightblack', Number: 'ansimagenta', String: 'ansigreen' } def set_colors(self): """ Updates the JelloTheme.theme dictionary used by the JelloStyle class. Grab custom colors from JELLO_COLORS environment variable and opts class set by .jelloconf.py file. Individual colors from JELLO_COLORS take precedence over .jelloconf.py. Individual colors from JELLO_COLORS will fall back to .jelloconf.py or default if the env variable color is set to 'default' JELLO_COLORS env variable takes 4 comma separated string values and should be in the format of: JELLO_COLORS=,,, Where colors are: black, red, green, yellow, blue, magenta, cyan, gray, brightblack, brightred, brightgreen, brightyellow, brightblue, brightmagenta, brightcyan, white, default Default colors: JELLO_COLORS=blue,brightblack,magenta,green or JELLO_COLORS=default,default,default,default """ env_colors = os.getenv('JELLO_COLORS') input_error = False if env_colors: color_list = env_colors.split(',') if env_colors and len(color_list) != 4: input_error = True if env_colors: for color in color_list: if color not in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'gray', 'brightblack', 'brightred', 'brightgreen', 'brightyellow', 'brightblue', 'brightmagenta', 'brightcyan', 'white', 'default']: input_error = True else: color_list = ['default', 'default', 'default', 'default'] # if there is an issue with the env variable, just set all colors to default and move on if input_error: warning_message(['could not parse JELLO_COLORS environment variable']) color_list = ['default', 'default', 'default', 'default'] if PYGMENTS_INSTALLED: # first set theme from opts class or fallback to defaults self.theme = { Name: f'bold ansi{opts.keyname_color}' if opts.keyname_color else self.theme[Name], Keyword: f'ansi{opts.keyword_color}' if opts.keyword_color else self.theme[Keyword], Number: f'ansi{opts.number_color}' if opts.number_color else self.theme[Number], String: f'ansi{opts.string_color}' if opts.string_color else self.theme[String] } # then set theme from JELLO_COLORS env variable or fallback to existing colors self.theme = { Name: f'bold ansi{color_list[0]}' if not color_list[0] == 'default' else self.theme[Name], Keyword: f'ansi{color_list[1]}' if not color_list[1] == 'default' else self.theme[Keyword], Number: f'ansi{color_list[2]}' if not color_list[2] == 'default' else self.theme[Number], String: f'ansi{color_list[3]}' if not color_list[3] == 'default' else self.theme[String] } class Schema(JelloTheme): """Inherits theme and set_colors() from JelloTheme""" def __init__(self): self._schema_list = [] def color_output(self, data): if not opts.mono and PYGMENTS_INSTALLED: class JelloStyle(Style): styles = self.theme lexer = JavascriptLexer() formatter = Terminal256Formatter(style=JelloStyle) return highlight(data, lexer, formatter)[0:-1] else: return data def html_output(self, data): class JelloStyle(Style): styles = self.theme lexer = JavascriptLexer() formatter = HtmlFormatter(style=JelloStyle, noclasses=True) return highlight(data, lexer, formatter) def create_schema(self, data): self._schema_gen(data) myschema = '\n'.join(self._schema_list) # unsure if this is helpful, but trying to reduce memory footprint by clearing the list self._schema_list *= 0 return myschema def _schema_gen(self, src, path='_'): """ Creates a grep-able schema representation of the JSON. This method is recursive, and output is stored within self._schema_list (list). """ if isinstance(src, list): # print empty brackets as first list definition val = '[]' val_type = '' padding = '' if opts.types: val_type = '// (array)' padding = ' ' if len(path) + len(val) + len(val_type) < 76: padding = ' ' * (76 - (len(path) + len(val) + len(val_type))) self._schema_list.append(f'{path} = {val};{padding}{val_type}') for i, item in enumerate(src): self._schema_gen(item, path=f'{path}[{i}]') elif isinstance(src, dict): # print empty curly brackets as first object definition val = '{}' val_type = '' padding = '' if opts.types: val_type = '// (object)' padding = ' ' if len(path) + len(val) + len(val_type) < 76: padding = ' ' * (76 - (len(path) + len(val) + len(val_type))) self._schema_list.append(f'{path} = {val};{padding}{val_type}') for k, v in src.items(): # encapsulate key in brackets if it is not a valid variable name if is_valid_variable_name(k): k = f'.{k}' else: k = f'["{k}"]' if isinstance(v, list): # print empty brackets as first list definition val = '[]' val_type = '' padding = '' if opts.types: val_type = '// (array)' padding = ' ' if len(path) + len(val) + len(val_type) < 76: padding = ' ' * (76 - (len(f'{path}{k}') + len(val) + len(val_type))) self._schema_list.append(f'{path}{k} = {val};{padding}{val_type}') for i, item in enumerate(v): self._schema_gen(item, path=f'{path}{k}[{i}]') elif isinstance(v, dict): self._schema_gen(v, path=f'{path}{k}') else: val = json.dumps(v, ensure_ascii=False) val_type = '' padding = '' if opts.types: if val == 'true' or val == 'false': val_type = '// (boolean)' elif val == 'null': val_type = '// (null)' elif val.replace('.', '', 1).isdigit(): val_type = '// (number)' else: val_type = '// (string)' padding = ' ' if len(path) + len(k) + len(val) + len(val_type) < 76: padding = ' ' * (76 - (len(path) + len(k) + len(val) + len(val_type))) self._schema_list.append(f'{path}{k} = {val};{padding}{val_type}') else: val = json.dumps(src, ensure_ascii=False) val_type = '' padding = '' if opts.types: if val == 'true' or val == 'false': val_type = '// (boolean)' elif val == 'null': val_type = '// (null)' elif val.replace('.', '', 1).isdigit(): val_type = '// (number)' else: val_type = '// (string)' padding = ' ' if len(path) + len(val) + len(val_type) < 76: padding = ' ' * (76 - (len(path) + len(val) + len(val_type))) self._schema_list.append(f'{path} = {val};{padding}{val_type}') class Json(JelloTheme): """Inherits theme and set_colors() from JelloTheme""" def color_output(self, data): if not opts.mono and PYGMENTS_INSTALLED: class JelloStyle(Style): styles = self.theme lexer = JsonLexer() formatter = Terminal256Formatter(style=JelloStyle) return highlight(data, lexer, formatter)[0:-1] else: return data def html_output(self, data): class JelloStyle(Style): styles = self.theme lexer = JsonLexer() formatter = HtmlFormatter(style=JelloStyle, noclasses=True) return highlight(data, lexer, formatter) def create_json(self, data): separators = None indent = 2 if opts.compact or opts.lines: separators = (',', ':') indent = None if isinstance(data, dict): return json.dumps(data, separators=separators, indent=indent, ensure_ascii=False) if isinstance(data, list): if not opts.lines: return json.dumps(data, separators=separators, indent=indent, ensure_ascii=False) # print lines else: flat_list = '' for entry in data: if entry is None: if opts.nulls: flat_list += 'null\n' else: flat_list += '\n' elif isinstance(entry, (dict, list, bool, int, float)): flat_list += json.dumps(entry, separators=separators, ensure_ascii=False) + '\n' elif isinstance(entry, str): # replace \n with \\n here so lines with newlines literally print the \n char entry = entry.replace('\n', '\\n') if opts.raw: flat_list += f'{entry}' + '\n' else: flat_list += f'"{entry}"' + '\n' return flat_list.rstrip() # naked single item return case elif data is None: if opts.nulls: return 'null' else: return '' elif isinstance(data, (bool, int, float)): return json.dumps(data, ensure_ascii=False) elif isinstance(data, str): # replace \n with \\n here so lines with newlines literally print the \n char data = data.replace('\n', '\\n') if opts.raw: return f'{data}' else: return f'"{data}"' # only non-serializable types are left. Force an exception from json.dumps() else: json.dumps(data) # this code should not run, but just in case something slips by above raise TypeError(f'Object is not JSON serializable') def load_json(data): try: json_dict = json.loads(data) except Exception as e: try: # if json.loads fails, try loading as json lines json_dict = [json.loads(i) for i in data.splitlines() if i.strip()] except Exception: # raise original JSON exception instead of JSON Lines exception raise e return json_dict def warning_message(message_lines): """ Prints warning message for non-fatal issues. The first line is prepended with 'jello: Warning - ' and subsequent lines are indented. Wraps text as needed based on the terminal width. Parameters: message: (list) list of string lines Returns: None - just prints output to STDERR """ columns = shutil.get_terminal_size().columns first_wrapper = TextWrapper(width=columns, subsequent_indent=' ' * 12) next_wrapper = TextWrapper(width=columns, initial_indent=' ' * 8, subsequent_indent=' ' * 12) first_line = message_lines.pop(0) first_str = f'jello: Warning - {first_line}' first_str = first_wrapper.fill(first_str) print(first_str, file=sys.stderr) for line in message_lines: if line == '': continue message = next_wrapper.fill(line) print(message, file=sys.stderr) def read_file(file_path): with open(file_path, 'r') as f: return f.read() def pyquery(data, query, add_to_scope=None): """Sets options and runs the user's query.""" output = None # read data into '_' variable # if data is a list of dictionaries, then need to iterate through and convert all dictionaries to DotMap if isinstance(data, list): _ = [DotMap(i, _dynamic=False, _prevent_method_masking=True) if isinstance(i, dict) else i for i in data] elif isinstance(data, dict): _ = DotMap(data, _dynamic=False, _prevent_method_masking=True) else: _ = data # read initialization file to set colors, options, and user-defined functions jelloconf = '' conf_file = '' jcnf_dict = {} if opts.initialize: pyquery._ = _ # allows the data to be available to the initialization file if sys.platform.startswith('win32'): conf_file_dir = os.environ['APPDATA'] else: conf_file_dir = os.environ["HOME"] try: conf_file = os.path.join(conf_file_dir, '.jelloconf.py') jelloconf = read_file(conf_file) # inject the data into the initialization module conf_prepend = 'from jello.lib import pyquery as __q__\n' conf_prepend += '_ = __q__._\n' jelloconf = conf_prepend + jelloconf # create and import the modified .jelloconf file as a normal module jcnf = types.ModuleType('jcnf') exec(jelloconf, jcnf.__dict__) jcnf_dict = {f: getattr(jcnf, f) for f in dir(jcnf) if not f.startswith('__')} except FileNotFoundError: raise FileNotFoundError(f'-i used and initialization file not found: {conf_file}') warn_options = False warn_colors = False for option in [opts.compact, opts.raw, opts.lines, opts.nulls, opts.force_color, opts.mono, opts.schema, opts.types]: if not isinstance(option, bool) and option is not None: opts.compact = opts.raw = opts.lines = opts.nulls = opts.force_color = opts.mono = opts.schema = opts.types = False warn_options = True for color_config in [opts.keyname_color, opts.keyword_color, opts.number_color, opts.string_color]: valid_colors = ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'gray', 'brightblack', 'brightred', 'brightgreen', 'brightyellow', 'brightblue', 'brightmagenta', 'brightcyan', 'white'] if color_config not in valid_colors and color_config is not None: opts.keyname_color = opts.keyword_color = opts.number_color = opts.string_color = None warn_colors = True if warn_options: warning_message([ f'Options must be set to True or False in {conf_file}', 'Unsetting all options.' ]) if warn_colors: valid_colors_string = ', '.join(valid_colors) warning_message([ f'Colors must be set to one of: {valid_colors_string} in {conf_file}', 'Unsetting all colors.' ]) # add any functions in initialization file to the scope scope = {'_': _, 'os': os} scope.update(jcnf_dict) if add_to_scope is not None: scope.update(add_to_scope) # run the query block = ast.parse(query, mode='exec') if len(block.body) < 1: raise ValueError('No query found.') last = ast.Expression(block.body.pop().value) # assumes last node is an expression exec(compile(block, '', mode='exec'), scope) output = eval(compile(last, '', mode='eval'), scope) # convert output back to normal dict if isinstance(output, list): output = [i.toDict() if isinstance(i, DotMap) else i for i in output] elif isinstance(output, DotMap): output = output.toDict() # if DotMap returns a bound function then we know it was a reserved attribute name if hasattr(output, '__self__'): raise ValueError('Reserved key name. Use bracket notation to access this key.') return output if __name__ == '__main__': pass jello-1.6.1/man/000077500000000000000000000000001501617276000134045ustar00rootroot00000000000000jello-1.6.1/man/jello.1000066400000000000000000000330331501617276000145750ustar00rootroot00000000000000.TH jello 1 2025-05-29 1.6.1 "Jello JSON Filter" .SH NAME Jello \- Filter JSON and JSON Lines data with Python syntax .SH SYNOPSIS .PP Jello is similar to jq in that it processes JSON and JSON Lines data except jello uses standard python dict and list syntax. .PP JSON or JSON Lines can be piped into jello (JSON Lines are automatically slurped into a list of dictionaries) and are available as the variable `\fB_\fP`. Processed data can be output as JSON, JSON Lines, bash array lines, or a grep-able schema. .PP .SH USAGE .RS cat data.json | jello [OPTIONS] [QUERY | -q ] jello [OPTIONS] [QUERY | -q ] [-f ] .RE .fi .PP QUERY is optional and can be most any valid python code. Alternatively, a query file can be specified with `\fB-q\fP` to load the query from a file. Within the query, `\fB_\fP` is the sanitized JSON from \fBSTDIN\fP or the specified input file(s) (via the `\fB-f\fP` option) presented as a python dict or list of dicts. If QUERY or a query file is omitted then the original JSON input will simply be pretty printed. You can use dot notation or traditional python bracket notation to access key names. .RS .PP Note: Reserved key names that cannot be accessed using dot notation can be accessed via standard python dictionary notation. (e.g. _.foo[\[dq]get\[dq]] instead of _.foo.get) .RE .PP A simple query: .IP .nf $ cat data.json | jello _.foo .fi .PP or .IP .nf $ cat data.json | jello \[aq]_[\[dq]foo\[dq]]\[aq] .fi .PP or .IP .nf $ jello _.foo -f data.json .fi .SS Options .IP \fB-c\fP compact print JSON output instead of pretty printing .IP \fB-C\fP force color output even when using pipes (overrides \fB-m\fP and the \fBNO_COLOR\fP env variable) .IP \fB-e\fP empty data (don't process data from STDIN or file) .IP \fB-f\fP load input data from JSON file or JSON Lines files (must be the final option, if used) .IP \fB-i\fP initialize environment with a custom config file .IP \fB-l\fP lines output (suitable for bash array assignment) .IP \fB-m\fP monochrome output .IP \fB-n\fP print selected null values .IP \fB-q\fP load query from a file .IP \fB-r\fP raw output of selected strings (no quotes) .IP \fB-R\fP raw string input (don't auto convert input to dict/list) .IP \fB-s\fP print the JSON schema in grep-able format .IP \fB-t\fP print type annotations in schema view .IP \fB-h\fP help .IP \fB-v\fP version info .SS Simple Examples .PP Jello simply pretty prints the JSON if there are no options passed: .IP .nf $ echo \[aq]{\[dq]foo\[dq]:\[dq]bar\[dq],\[dq]baz\[dq]:[1,2,3]}\[aq] | jello { \[dq]foo\[dq]: \[dq]bar\[dq], \[dq]baz\[dq]: [ 1, 2, 3 ] } .fi .PP If you prefer compact output, use the \fB-c\fP option: .IP .nf $ echo \[aq]{\[dq]foo\[dq]:\[dq]bar\[dq],\[dq]baz\[dq]:[1,2,3]}\[aq] | jello -c {\[dq]foo\[dq]:\[dq]bar\[dq],\[dq]baz\[dq]:[1,2,3]} .fi .PP Use the \fB-l\fP option to convert lists/arrays into lines: .IP .nf $ echo \[aq]{\[dq]foo\[dq]:\[dq]bar\[dq],\[dq]baz\[dq]:[1,2,3]}\[aq] | jello -l _.baz 1 2 3 .fi .PP The \fB-l\fP option also allows you to create JSON Lines: .IP .nf $ echo \[aq][{\[dq]foo\[dq]:\[dq]bar\[dq],\[dq]baz\[dq]:[1,2,3]},{\[dq]fiz\[dq]:\[dq]boo\[dq],\[dq]buz\[dq]:[4,5,6]}]\[aq] | jello -l {\[dq]foo\[dq]:\[dq]bar\[dq],\[dq]baz\[dq]:[1,2,3]} {\[dq]fiz\[dq]:\[dq]boo\[dq],\[dq]buz\[dq]:[4,5,6]} .fi .PP You can print a grep-able schema by using the \fB-s\fP option: .IP .nf $ echo \[aq]{\[dq]foo\[dq]:\[dq]bar\[dq],\[dq]baz\[dq]:[1,2,3]}\[aq] | jello -s \&_ = {}; \&_.foo = \[dq]bar\[dq]; \&_.baz = []; \&_.baz[0] = 1; \&_.baz[1] = 2; \&_.baz[2] = 3; .fi .SS Assigning Results to a Bash Array .PP Use the \fB-l\fP option to print JSON array output in a manner suitable to be assigned to a bash array. The \fB-r\fP option can be used to remove quotation marks around strings. If you want null values to be printed as null, use the \fB-n\fP option, otherwise they are printed as blank lines. .PP Bash variable: .IP .nf variable=($(cat data.json | jello -rl _.foo)) .fi .PP Bash array variable: .IP .nf variable=() while read -r value; do variable+=(\[dq]$value\[dq]) done < <(cat data.json | jello -rl _.foo) .fi .PP .SS Examples: .SS Printing the Grep-able Schema .IP .nf $ jc -a | jello -s \&_ = {}; \&_.name = "jc"; \&_.version = "1.17.2"; \&_.description = "JSON CLI output utility"; \&_.author = "Kelly Brazil"; \&_.author_email = "kellyjonbrazil@gmail.com"; \&_.website = "https://github.com/kellyjonbrazil/jc"; \&_.copyright = "(C) 2019-2021 Kelly Brazil"; \&_.license = "MIT License"; \&_.parser_count = 80; \&_.parsers = []; \&... .fi .SS Printing the Grep-able Schema with Type Annotations .IP .nf $ jc -a | jello -st \&_ = {}; // (object) \&_.name = "jc"; // (string) \&_.version = "1.17.2"; // (string) \&_.description = "JSON CLI output utility"; // (string) \&_.author = "Kelly Brazil"; // (string) \&_.author_email = "kellyjonbrazil@gmail.com"; // (string) \&_.website = "https://github.com/kellyjonbrazil/jc"; // (string) \&_.copyright = "(C) 2019-2021 Kelly Brazil"; // (string) \&_.license = "MIT License"; // (string) \&_.parser_count = 80; // (number) \&_.parsers = []; // (array) \&... .fi .SS Printing the JSON Structure .IP .nf $ jc dig example.com | jello -st | grep '(object)\e|(array)' \&_ = []; // (array) \&_[0] = {}; // (object) \&_[0].flags = []; // (array) \&_[0].opt_pseudosection = {}; // (object) \&_[0].opt_pseudosection.edns = {}; // (object) \&_[0].opt_pseudosection.edns.flags = []; // (array) \&_[0].question = {}; // (object) \&_[0].answer = []; // (array) \&_[0].answer[0] = {}; // (object) \&... .fi .SS Lambda Functions and Math .IP .nf $ echo \[aq]{\[dq]t1\[dq]:-30, \[dq]t2\[dq]:-20, \[dq]t3\[dq]:-10, \[dq]t4\[dq]:0}\[aq] | jello \[aq]\[rs] keys = _.keys() vals = _.values() cel = list(map(lambda x: (float(5)/9)*(x-32), vals)) dict(zip(keys, cel))\[aq] { \[dq]t1\[dq]: -34.44444444444444, \[dq]t2\[dq]: -28.88888888888889, \[dq]t3\[dq]: -23.333333333333336, \[dq]t4\[dq]: -17.77777777777778 } .fi .IP .nf $ jc -a | jello \[aq]len([entry for entry in _.parsers if \[dq]darwin\[dq] in entry.compatible])\[aq] 45 .fi .SS For Loops .PP Output as JSON array .IP .nf $ jc -a | jello \[aq]\[rs] result = [] for entry in _.parsers: if \[dq]darwin\[dq] in entry.compatible: result.append(entry.name) result\[aq] [ \[dq]airport\[dq], \[dq]airport_s\[dq], \[dq]arp\[dq], \[dq]crontab\[dq], \[dq]crontab_u\[dq], ... ] .fi .PP Output as bash array .IP .nf $ jc -a | jello -rl \[aq]\[rs] result = [] for entry in _.parsers: if \[dq]darwin\[dq] in entry.compatible: result.append(entry.name) result\[aq] airport airport_s arp crontab crontab_u \&... .fi .SS List and Dictionary Comprehension .PP Output as JSON array .IP .nf $ jc -a | jello \[aq][entry.name for entry in _.parsers if \[dq]darwin\[dq] in entry.compatible]\[aq] [ \[dq]airport\[dq], \[dq]airport_s\[dq], \[dq]arp\[dq], \[dq]crontab\[dq], \[dq]crontab_u\[dq], ... ] .fi .PP Output as bash array .IP .nf $ jc -a | jello -rl \[aq][entry.name for entry in _.parsers if \[dq]darwin\[dq] in entry.compatible]\[aq] airport airport_s arp crontab crontab_u \&... .fi .SS Environment Variables .IP .nf $ echo \[aq]{\[dq]login_name\[dq]: \[dq]joeuser\[dq]}\[aq] | jello \[aq]\[rs] True if os.getenv(\[dq]LOGNAME\[dq]) == _.login_name else False\[aq] true .fi .SS Using 3rd Party Modules .PP You can import and use your favorite modules to manipulate the data. For example, using \fBglom\fP: .IP .nf $ jc -a | jello \[aq]\[rs] from glom import * glom(_, (\[dq]parsers\[dq], [\[dq]name\[dq]]))\[aq] [ \[dq]airport\[dq], \[dq]airport_s\[dq], \[dq]arp\[dq], \[dq]blkid\[dq], \[dq]crontab\[dq], \[dq]crontab_u\[dq], \[dq]csv\[dq], ... ] .fi .SS Non-JSON Data Input (YAML, CSV, etc.) .PP You can work with other types of data with the \fB-R\fP (raw string input) option. For example, if you would like to read in YAML data you can load the data as a raw string, import the \fByaml\fP library, and load the string data into \fB_\fP with the \fByaml\fP library: .IP .nf $ cat values.yaml var1: value1 var2: value2 var3: value3 $ jello -Rr \[aq] import yaml _ = yaml.safe_load(_) _[\[dq]var2\[dq]] \[aq] -f values.yaml value2 .PP Note: Dot notation is not supported with the \fB-R\fP option unless the library used to convert the raw string supports this. (e.g. \fBpython-benedict\fP) .IP .fi .SH ADVANCED USAGE .SS Custom Configuration File .PP You can use the \fB-i\fP option to initialize the jello environment with your own configuration file. The configuration file accepts valid python code where you can enable/disable \f[C]jello\f[R] options, customize your colors, add \fBimport\fP statements for your favorite modules, and define your own functions. .PP The file must be named \fB.jelloconf.py\fP and must be located in the proper directory based on the OS platform: .IP Linux, unix, macOS: \fB\[ti]/\fP .IP Windows: \fB%appdata%/\fP .SS Setting Options .PP To set jello options in the \fB.jelloconf.py\fP file, import the \fBjello.lib.opts\fP class, add any of the following and set to \fBTrue\fP or \fBFalse\fP: .IP .nf from jello.lib import opts opts.mono = True # -m option opts.compact = True # -c option opts.empty = True # -e option opts.lines = True # -l option opts.raw = True # -r option opts.raw_input = True # -R option opts.force_color = True # -C option opts.nulls = True # -n option opts.schema = True # -s option opts.types = True # -t option .fi .SS Setting Colors .PP You can customize the colors by importing the \fBjello.lib.opts\fP class and setting the following variables to one of the following string values: \fBblack\fP, \fBred\fP, \fBgreen\fP, \fByellow\fP, \fBblue\fP, \fBmagenta\fP, \fBcyan\fP, \fBgray\fP, \fBbrightblack\fP, \fBbrightred\fP, \fBbrightgreen\fP, \fBbrightyellow\fP, \fBbrightblue\fP, \fBbrightmagenta\fP, \fBbrightcyan\fP, or \fBwhite\fP. .IP .nf \f[C] from jello.lib import opts opts.keyname_color = \[aq]blue\[aq] # Key names opts.keyword_color = \[aq]brightblack\[aq] # true, false, null opts.number_color = \[aq]magenta\[aq] # integers, floats opts.string_color = \[aq]green\[aq] # strings \f[R] .fi .RS .PP Note: Any colors set via the \fBJELLO_COLORS\fP environment variable will take precedence over any color values set in the \fB.jelloconf.py\fP configuration file .RE .SS Importing Modules .PP To import a module (e.g. \fBglom\fP) during initialization, just add the \fBimport\fP statement to your \fB.jelloconf.py\fP file: .IP .nf \f[C] from glom import * \f[R] .fi .PP Then you can use \fBglom\fP in your jello filters without importing: .IP .nf \f[C] $ jc -a | jello -i \[aq]glom(_, \[dq]parsers.25.name\[dq])\[aq] \[dq]lsblk\[dq] \f[R] .fi .SS Adding Functions .PP You can also add functions to your initialization file. For example, you could simplify \fBglom\fP use by adding the following function to \fB.jelloconf.py\fP: .IP .nf \f[C] def g(query): import glom return glom.glom(_, query) .fi .PP Then you can use the following syntax to filter the JSON data: .IP .nf \f[C] $ jc -a | jello -i \[aq]g(\[dq]parsers.6.compatible\[dq])\[aq] [ \[dq]linux\[dq], \[dq]darwin\[dq], \[dq]cygwin\[dq], \[dq]win32\[dq], \[dq]aix\[dq], \[dq]freebsd\[dq] ] .fi .PP Or create names for commonly used queries: .IP .nf def darwin_compatible(): result = [] for entry in _.parsers: if "darwin" in entry.compatible: result.append(entry.name) return result \f[R] .fi .PP Then use the predefined query like so: .IP .nf $ jc -a | jello -i \[aq]darwin_compatible()\[aq] [ \[dq]airport\[dq], \[dq]airport-s\[dq], \[dq]arp\[dq] ] \f[R] .fi .SS Setting Custom Colors via Environment Variable .PP In addition to setting custom colors in the \fB.jelloconf.py\fP initialization file, you can also set them via the \fBJELLO_COLORS\fP environment variable. Any colors set in the environment variable will take precedence over any colors set in the initialization file. .PP The \fBJELLO_COLORS\fP environment variable takes four comma separated string values in the following format: .IP .nf \f[C] JELLO_COLORS=,,, \f[R] .fi .PP Where colors are: \fBblack\fP, \fBred\fP, \fBgreen\fP, \fByellow\fP, \fBblue\fP, \fBmagenta\fP, \fBcyan\fP, \fBgray\fP, \fBbrightblack\fP, \fBbrightred\fP, \fBbrightgreen\fP, \fBbrightyellow\fP, \fBbrightblue\fP, \fBbrightmagenta\fP, \fBbrightcyan\fP, \fBwhite\fP, or \fBdefault\fP .PP For example, to set to the default colors: .IP .nf \f[C] JELLO_COLORS=blue,brightblack,magenta,green \f[R] .fi .PP or .IP .nf \f[C] JELLO_COLORS=default,default,default,default \f[R] .fi .SS Disable Colors via Environment Variable .PP You can set the \fBNO_COLOR\fP environment variable to any value to disable color output in \fBjello\fP. Note that using the \fB-C\fP option to force color output will override both the \fBNO_COLOR\fP environment variable and the \fB-m\fP option. .SH AUTHOR Kelly Brazil (kellyjonbrazil@gmail.com) https://github.com/kellyjonbrazil/jello .SH COPYRIGHT Copyright (c) 2020-2025 Kelly Brazil License: MIT License jello-1.6.1/pypi-upload.sh000077500000000000000000000000371501617276000154330ustar00rootroot00000000000000#!/bin/bash twine upload dist/*jello-1.6.1/requirements.txt000066400000000000000000000000171501617276000161130ustar00rootroot00000000000000Pygments>=2.4.2jello-1.6.1/runtests.sh000077500000000000000000000000441501617276000150550ustar00rootroot00000000000000#!/bin/bash python3 -m unittest -v jello-1.6.1/setup.cfg000066400000000000000000000000431501617276000144470ustar00rootroot00000000000000[metadata] license_files = LICENSE jello-1.6.1/setup.py000077500000000000000000000016711501617276000143530ustar00rootroot00000000000000import setuptools with open('README.md', 'r') as f: long_description = f.read() setuptools.setup( name='jello', version='1.6.1', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Filter JSON and JSON Lines data with Python syntax.', install_requires=[ 'Pygments>=2.4.2' ], license='MIT', long_description=long_description, long_description_content_type='text/markdown', python_requires='>=3.6', url='https://github.com/kellyjonbrazil/jello', packages=setuptools.find_packages(exclude=['*.tests', '*.tests.*', 'tests.*', 'tests']), include_package_data=True, entry_points={ 'console_scripts': [ 'jello=jello.cli:main' ] }, classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Topic :: Utilities' ] ) jello-1.6.1/tests/000077500000000000000000000000001501617276000137735ustar00rootroot00000000000000jello-1.6.1/tests/__init__.py000066400000000000000000000000001501617276000160720ustar00rootroot00000000000000jello-1.6.1/tests/fixtures/000077500000000000000000000000001501617276000156445ustar00rootroot00000000000000jello-1.6.1/tests/fixtures/twitter-table-output.jlines000066400000000000000000000334271501617276000232100ustar00rootroot00000000000000{"user_id":2381151,"user_name":"contromir","user_followers":381,"tweet_ids":"619172314710609920"} {"user_id":2884771,"user_name":"Newsweek","user_followers":2857589,"tweet_ids":"501064205089665024"} {"user_id":7243782,"user_name":"carminemac","user_followers":362,"tweet_ids":"501064198513000450"} {"user_id":14331818,"user_name":"edsu","user_followers":4220,"tweet_ids":"615973042443956225;618602288781860864"} {"user_id":15968617,"user_name":"bebird","user_followers":6091,"tweet_ids":"501064202380115971"} {"user_id":16192197,"user_name":"UANI","user_followers":7604,"tweet_ids":"619172157197819905"} {"user_id":16787108,"user_name":"heidicullinan","user_followers":4398,"tweet_ids":"501064210840035329"} {"user_id":17719592,"user_name":"kavn","user_followers":4453,"tweet_ids":"501064203135102977"} {"user_id":18270633,"user_name":"ahhthatswhy","user_followers":559,"tweet_ids":"501064204661850113"} {"user_id":18292632,"user_name":"bratkitty84","user_followers":2084,"tweet_ids":"501064232700350464"} {"user_id":20892936,"user_name":"ThebubbleMAMI","user_followers":1313,"tweet_ids":"501064225096499201"} {"user_id":21685295,"user_name":"webertom1","user_followers":12650,"tweet_ids":"619172173568053248"} {"user_id":21811025,"user_name":"mmaureen7","user_followers":1705,"tweet_ids":"501064197632167936"} {"user_id":22668719,"user_name":"nodehyena","user_followers":294,"tweet_ids":"501064222772445187"} {"user_id":23598003,"user_name":"victoriasview","user_followers":1163,"tweet_ids":"501064228288364546"} {"user_id":27202261,"user_name":"Dushan41","user_followers":1201,"tweet_ids":"619172281751711748;619172321564098560"} {"user_id":31480794,"user_name":"GhostRiderRadio","user_followers":26367,"tweet_ids":"619172302878408704"} {"user_id":32537879,"user_name":"WonderWomanMind","user_followers":199,"tweet_ids":"501064215990648832"} {"user_id":33005799,"user_name":"LETrainingAsst","user_followers":274,"tweet_ids":"501064225926561794"} {"user_id":33150423,"user_name":"pabsgimme","user_followers":182,"tweet_ids":"501064235456401410"} {"user_id":36913679,"user_name":"san3tm","user_followers":6823,"tweet_ids":"619172208452182016"} {"user_id":38770856,"user_name":"Mario9414","user_followers":923,"tweet_ids":"619172257278111744"} {"user_id":42226593,"user_name":"shirleycolleen","user_followers":2114,"tweet_ids":"619172281294655488;619172179960328192"} {"user_id":43053129,"user_name":"slytwain","user_followers":1400,"tweet_ids":"501064216241897472"} {"user_id":45640882,"user_name":"jadybates","user_followers":435,"tweet_ids":"501064219677044738"} {"user_id":47073035,"user_name":"msoltanm","user_followers":63,"tweet_ids":"619172275741298688"} {"user_id":53158947,"user_name":"MzDivah67","user_followers":5661,"tweet_ids":"501064171707170816"} {"user_id":61408763,"user_name":"KiaraVillegass","user_followers":280,"tweet_ids":"501064205400039424"} {"user_id":62625898,"user_name":"DeinAyurvedaNet","user_followers":1720,"tweet_ids":"619172338177843200"} {"user_id":69188829,"user_name":"TeresaBeegazo","user_followers":1021,"tweet_ids":"619172341944332288"} {"user_id":74640730,"user_name":"ahulse","user_followers":1263,"tweet_ids":"619172235488718848"} {"user_id":75797367,"user_name":"dandrezner","user_followers":42765,"tweet_ids":"619172313846693890"} {"user_id":76223193,"user_name":"MsTamarShawnice","user_followers":2386,"tweet_ids":"501064207274868736"} {"user_id":79286766,"user_name":"7vacasvoladoras","user_followers":479,"tweet_ids":"619172293936291840"} {"user_id":81674839,"user_name":"Blackberryccr","user_followers":41,"tweet_ids":"501064202295848960"} {"user_id":82658160,"user_name":"rvan73","user_followers":472,"tweet_ids":"501064214211870720"} {"user_id":100951936,"user_name":"elbshari_abdo","user_followers":114,"tweet_ids":"619172278086070272"} {"user_id":100986964,"user_name":"PulpNews","user_followers":4029,"tweet_ids":"501064209648848896"} {"user_id":106948003,"user_name":"MrKneeGrow","user_followers":172,"tweet_ids":"501064228627705857"} {"user_id":109035228,"user_name":"lgriverob","user_followers":810,"tweet_ids":"501064231304065026"} {"user_id":109472069,"user_name":"JoseRamiroabreu","user_followers":2229,"tweet_ids":"501064218343661568"} {"user_id":113457313,"user_name":"jersonotagle","user_followers":1120,"tweet_ids":"501064213843169280"} {"user_id":115221745,"user_name":"jessicastiffler","user_followers":1800,"tweet_ids":"501064233774510081"} {"user_id":117155917,"user_name":"rebekahwsm","user_followers":5069,"tweet_ids":"501064233186893824"} {"user_id":122387181,"user_name":"Mark_Rehm","user_followers":375,"tweet_ids":"501064208789045248"} {"user_id":122450450,"user_name":"MsKita4","user_followers":95,"tweet_ids":"501064222923440130"} {"user_id":142916938,"user_name":"julioalbarracin","user_followers":4993,"tweet_ids":"619172319047647232"} {"user_id":144939767,"user_name":"Laurenleah_","user_followers":1814,"tweet_ids":"501064204989001728"} {"user_id":161904722,"user_name":"profbrady","user_followers":553,"tweet_ids":"501064204288540672"} {"user_id":191573388,"user_name":"cactusjuicekb","user_followers":88,"tweet_ids":"501064225314185216"} {"user_id":197018623,"user_name":"Ssragona","user_followers":466,"tweet_ids":"501064200186118145"} {"user_id":200471093,"user_name":"bdoulaoblongata","user_followers":17058,"tweet_ids":"501064232449114112"} {"user_id":206608014,"user_name":"ArminTenn","user_followers":3212,"tweet_ids":"619172320880533504"} {"user_id":223630412,"user_name":"wangadir","user_followers":295,"tweet_ids":"501064213951823873"} {"user_id":226176050,"user_name":"KommercialKings","user_followers":8381,"tweet_ids":"501064212547137536"} {"user_id":245476444,"user_name":"BeetaBenjy","user_followers":463,"tweet_ids":"619172257789706240"} {"user_id":246672896,"user_name":"MistyPrest","user_followers":225,"tweet_ids":"501064219467341824"} {"user_id":254282406,"user_name":"khan_ahsen","user_followers":795,"tweet_ids":"619172208355749888"} {"user_id":274013085,"user_name":"claudiperez","user_followers":12566,"tweet_ids":"619172236134588416"} {"user_id":277073535,"user_name":"koalaexpresss","user_followers":708,"tweet_ids":"501064233438568450"} {"user_id":278298244,"user_name":"bookishshelly","user_followers":186,"tweet_ids":"501064196931330049"} {"user_id":283857061,"user_name":"502kissababy","user_followers":1579,"tweet_ids":"501064220415229953"} {"user_id":284216925,"user_name":"Israel_English","user_followers":2083,"tweet_ids":"619172304191401984"} {"user_id":294396285,"user_name":"aqasatana","user_followers":977,"tweet_ids":"501064232188665856"} {"user_id":297137496,"user_name":"MazenAlkhamis","user_followers":3345,"tweet_ids":"501064216522932227"} {"user_id":298329334,"user_name":"xMurderCWrote","user_followers":2069,"tweet_ids":"501064227344646144"} {"user_id":300686726,"user_name":"missuhappybird","user_followers":2354,"tweet_ids":"619172328249757696"} {"user_id":316702265,"user_name":"Ju_JustGetsIt","user_followers":2751,"tweet_ids":"501064235107897344"} {"user_id":339224221,"user_name":"CarlosPPartidas","user_followers":192,"tweet_ids":"619172170233679872"} {"user_id":339903277,"user_name":"KimCheeMichael","user_followers":632,"tweet_ids":"501064222340423681"} {"user_id":344938512,"user_name":"upuouo","user_followers":1258,"tweet_ids":"619172298310840325"} {"user_id":349699173,"user_name":"junelegal","user_followers":197,"tweet_ids":"501064206666702848"} {"user_id":356854246,"user_name":"DrJLMooreIII","user_followers":4888,"tweet_ids":"501064202904403970;501064231387947008"} {"user_id":361708743,"user_name":"dutchmn007","user_followers":3023,"tweet_ids":"619172306338709504"} {"user_id":363942545,"user_name":"Purple_Smear","user_followers":283,"tweet_ids":"501064231941570561"} {"user_id":364194053,"user_name":"ArrogantDemon","user_followers":2153,"tweet_ids":"501064203508412416"} {"user_id":374346913,"user_name":"I_Mpower","user_followers":3390,"tweet_ids":"501064188211765249"} {"user_id":377869140,"user_name":"BobbyClashBeat","user_followers":138,"tweet_ids":"501064207824351232"} {"user_id":387416764,"user_name":"independentgrly","user_followers":436,"tweet_ids":"501064235175399425"} {"user_id":389073720,"user_name":"telormac","user_followers":1222,"tweet_ids":"501064201041743872"} {"user_id":410566588,"user_name":"WaltherKrickl","user_followers":574,"tweet_ids":"501064208562135042"} {"user_id":481606532,"user_name":"REEMTHEDREAM215","user_followers":1235,"tweet_ids":"501064210693230592"} {"user_id":529555835,"user_name":"ljcambria","user_followers":11605,"tweet_ids":"619172295966392320"} {"user_id":558774130,"user_name":"Katyria90","user_followers":202,"tweet_ids":"501064201256071168"} {"user_id":559857235,"user_name":"LawryONeill","user_followers":1230,"tweet_ids":"501064216930160640"} {"user_id":588092239,"user_name":"rahulkn9899","user_followers":109,"tweet_ids":"619172323447324672"} {"user_id":619587350,"user_name":"BrookLyn1825","user_followers":1208,"tweet_ids":"501064180468682752"} {"user_id":716950758,"user_name":"Amber_42","user_followers":236,"tweet_ids":"501064210395037696"} {"user_id":851336634,"user_name":"20mUsa","user_followers":15643,"tweet_ids":"501064141332029440"} {"user_id":946497368,"user_name":"Free2Pursue","user_followers":11,"tweet_ids":"501064199142117378"} {"user_id":1016818370,"user_name":"JukoDaNewShow","user_followers":524,"tweet_ids":"501064232570724352"} {"user_id":1112443196,"user_name":"deegerwiilen","user_followers":1356,"tweet_ids":"501064197396914176"} {"user_id":1112479376,"user_name":"Schweizer_Kotau","user_followers":595,"tweet_ids":"501064200316125184"} {"user_id":1214192959,"user_name":"Molly1Jo","user_followers":2112,"tweet_ids":"501064227302674433"} {"user_id":1249284978,"user_name":"SumitSidhu7","user_followers":196,"tweet_ids":"619172282183725056"} {"user_id":1252417778,"user_name":"Onionlizard","user_followers":449,"tweet_ids":"501064229915729921"} {"user_id":1305908575,"user_name":"bleedingheartmx","user_followers":2925,"tweet_ids":"501064227688558592"} {"user_id":1330235048,"user_name":"yourborwhore","user_followers":1725,"tweet_ids":"619172326886674432"} {"user_id":1594163078,"user_name":"Travestyleblog","user_followers":418,"tweet_ids":"619172312122814464"} {"user_id":1597610311,"user_name":"MollyLibSlayer","user_followers":1049,"tweet_ids":"501064226816143361"} {"user_id":1653718716,"user_name":"OAnnie8","user_followers":315,"tweet_ids":"501064215160172545"} {"user_id":1944063499,"user_name":"joe_abi12","user_followers":549,"tweet_ids":"501064209551994881"} {"user_id":2188452301,"user_name":"mickysowavy","user_followers":3803,"tweet_ids":"501064201251880961"} {"user_id":2195036713,"user_name":"_ylberr","user_followers":369,"tweet_ids":"619172300689031168"} {"user_id":2272978051,"user_name":"Vorarlberg1","user_followers":490,"tweet_ids":"501064194309906436"} {"user_id":2308922960,"user_name":"syrianewsfeed","user_followers":140,"tweet_ids":"619172175820357632"} {"user_id":2324941302,"user_name":"yubinaaroma","user_followers":2391,"tweet_ids":"619172253075378176"} {"user_id":2335960920,"user_name":"ggnewsus","user_followers":471,"tweet_ids":"501064208277319680"} {"user_id":2369225023,"user_name":"SkogCarla","user_followers":10816,"tweet_ids":"501064217667960832"} {"user_id":2432870707,"user_name":"KringlaHeimsins","user_followers":503,"tweet_ids":"619172227813126144"} {"user_id":2441030754,"user_name":"KendallSupreme_","user_followers":433,"tweet_ids":"501064198059597824"} {"user_id":2446710032,"user_name":"AhmedAbdolsala","user_followers":68,"tweet_ids":"619172221349662720"} {"user_id":2457488137,"user_name":"Shakur_Hakim","user_followers":1014,"tweet_ids":"501064224936714240"} {"user_id":2459920208,"user_name":"feedsynbot","user_followers":1568,"tweet_ids":"501064207387742210"} {"user_id":2477475030,"user_name":"bennharr","user_followers":151,"tweet_ids":"501064201503113216"} {"user_id":2481812382,"user_name":"SadieODoyle","user_followers":42,"tweet_ids":"501064200035516416"} {"user_id":2493824904,"user_name":"AmaniRasol","user_followers":121,"tweet_ids":"619172293680345089"} {"user_id":2494747518,"user_name":"PrincessLib_TYT","user_followers":1386,"tweet_ids":"501064229764751360"} {"user_id":2500422674,"user_name":"pecanEgba74318","user_followers":17,"tweet_ids":"619172331592773632"} {"user_id":2552698171,"user_name":"xhertx","user_followers":4110,"tweet_ids":"619172214475108352"} {"user_id":2569107372,"user_name":"SlavinOleg","user_followers":35,"tweet_ids":"501064198973960192;501064202794971136;501064214467731457;501064215759568897;501064220121632768"} {"user_id":2579883909,"user_name":"boskomlomo","user_followers":104,"tweet_ids":"501064225142624256"} {"user_id":2600797508,"user_name":"YogiBearSarah","user_followers":147,"tweet_ids":"501064231488200704"} {"user_id":2696111005,"user_name":"EGEVER142","user_followers":1433,"tweet_ids":"619172303654518784"} {"user_id":2745507335,"user_name":"LaelMoon3","user_followers":137,"tweet_ids":"619172193730199552"} {"user_id":2759742364,"user_name":"erikathomas_me2","user_followers":115,"tweet_ids":"619172331584376832"} {"user_id":2795245697,"user_name":"Patriot715","user_followers":2156,"tweet_ids":"619172320360333312"} {"user_id":2821663239,"user_name":"CalefDeanna","user_followers":1224,"tweet_ids":"619172216349917184"} {"user_id":2830090062,"user_name":"stahl_soraya","user_followers":37,"tweet_ids":"619172328149118976"} {"user_id":2858607784,"user_name":"Data_Institute","user_followers":1402,"tweet_ids":"619172232120692736"} {"user_id":2889098734,"user_name":"crimebot_404","user_followers":436,"tweet_ids":"619172347275116548"} {"user_id":2897136909,"user_name":"USTweetsDistill","user_followers":369,"tweet_ids":"619172209857327104"} {"user_id":2932056121,"user_name":"neetanagarkar","user_followers":22,"tweet_ids":"619172331399725057"} {"user_id":2944164937,"user_name":"mirogeorgiev97","user_followers":946,"tweet_ids":"619172162608463873"} {"user_id":2973928629,"user_name":"FelipeCimadoro","user_followers":13537,"tweet_ids":"619172332100284416"} {"user_id":3231982123,"user_name":"JarBomb","user_followers":375,"tweet_ids":"619172163912908801"} jello-1.6.1/tests/fixtures/twitter-table-output.schema000066400000000000000000000457211501617276000231640ustar00rootroot00000000000000_ = []; _[0] = {}; _[0].user_id = 2381151; _[0].user_name = "contromir"; _[0].user_followers = 381; _[0].tweet_ids = "619172314710609920"; _[1] = {}; _[1].user_id = 2884771; _[1].user_name = "Newsweek"; _[1].user_followers = 2857589; _[1].tweet_ids = "501064205089665024"; _[2] = {}; _[2].user_id = 7243782; _[2].user_name = "carminemac"; _[2].user_followers = 362; _[2].tweet_ids = "501064198513000450"; _[3] = {}; _[3].user_id = 14331818; _[3].user_name = "edsu"; _[3].user_followers = 4220; _[3].tweet_ids = "615973042443956225;618602288781860864"; _[4] = {}; _[4].user_id = 15968617; _[4].user_name = "bebird"; _[4].user_followers = 6091; _[4].tweet_ids = "501064202380115971"; _[5] = {}; _[5].user_id = 16192197; _[5].user_name = "UANI"; _[5].user_followers = 7604; _[5].tweet_ids = "619172157197819905"; _[6] = {}; _[6].user_id = 16787108; _[6].user_name = "heidicullinan"; _[6].user_followers = 4398; _[6].tweet_ids = "501064210840035329"; _[7] = {}; _[7].user_id = 17719592; _[7].user_name = "kavn"; _[7].user_followers = 4453; _[7].tweet_ids = "501064203135102977"; _[8] = {}; _[8].user_id = 18270633; _[8].user_name = "ahhthatswhy"; _[8].user_followers = 559; _[8].tweet_ids = "501064204661850113"; _[9] = {}; _[9].user_id = 18292632; _[9].user_name = "bratkitty84"; _[9].user_followers = 2084; _[9].tweet_ids = "501064232700350464"; _[10] = {}; _[10].user_id = 20892936; _[10].user_name = "ThebubbleMAMI"; _[10].user_followers = 1313; _[10].tweet_ids = "501064225096499201"; _[11] = {}; _[11].user_id = 21685295; _[11].user_name = "webertom1"; _[11].user_followers = 12650; _[11].tweet_ids = "619172173568053248"; _[12] = {}; _[12].user_id = 21811025; _[12].user_name = "mmaureen7"; _[12].user_followers = 1705; _[12].tweet_ids = "501064197632167936"; _[13] = {}; _[13].user_id = 22668719; _[13].user_name = "nodehyena"; _[13].user_followers = 294; _[13].tweet_ids = "501064222772445187"; _[14] = {}; _[14].user_id = 23598003; _[14].user_name = "victoriasview"; _[14].user_followers = 1163; _[14].tweet_ids = "501064228288364546"; _[15] = {}; _[15].user_id = 27202261; _[15].user_name = "Dushan41"; _[15].user_followers = 1201; _[15].tweet_ids = "619172281751711748;619172321564098560"; _[16] = {}; _[16].user_id = 31480794; _[16].user_name = "GhostRiderRadio"; _[16].user_followers = 26367; _[16].tweet_ids = "619172302878408704"; _[17] = {}; _[17].user_id = 32537879; _[17].user_name = "WonderWomanMind"; _[17].user_followers = 199; _[17].tweet_ids = "501064215990648832"; _[18] = {}; _[18].user_id = 33005799; _[18].user_name = "LETrainingAsst"; _[18].user_followers = 274; _[18].tweet_ids = "501064225926561794"; _[19] = {}; _[19].user_id = 33150423; _[19].user_name = "pabsgimme"; _[19].user_followers = 182; _[19].tweet_ids = "501064235456401410"; _[20] = {}; _[20].user_id = 36913679; _[20].user_name = "san3tm"; _[20].user_followers = 6823; _[20].tweet_ids = "619172208452182016"; _[21] = {}; _[21].user_id = 38770856; _[21].user_name = "Mario9414"; _[21].user_followers = 923; _[21].tweet_ids = "619172257278111744"; _[22] = {}; _[22].user_id = 42226593; _[22].user_name = "shirleycolleen"; _[22].user_followers = 2114; _[22].tweet_ids = "619172281294655488;619172179960328192"; _[23] = {}; _[23].user_id = 43053129; _[23].user_name = "slytwain"; _[23].user_followers = 1400; _[23].tweet_ids = "501064216241897472"; _[24] = {}; _[24].user_id = 45640882; _[24].user_name = "jadybates"; _[24].user_followers = 435; _[24].tweet_ids = "501064219677044738"; _[25] = {}; _[25].user_id = 47073035; _[25].user_name = "msoltanm"; _[25].user_followers = 63; _[25].tweet_ids = "619172275741298688"; _[26] = {}; _[26].user_id = 53158947; _[26].user_name = "MzDivah67"; _[26].user_followers = 5661; _[26].tweet_ids = "501064171707170816"; _[27] = {}; _[27].user_id = 61408763; _[27].user_name = "KiaraVillegass"; _[27].user_followers = 280; _[27].tweet_ids = "501064205400039424"; _[28] = {}; _[28].user_id = 62625898; _[28].user_name = "DeinAyurvedaNet"; _[28].user_followers = 1720; _[28].tweet_ids = "619172338177843200"; _[29] = {}; _[29].user_id = 69188829; _[29].user_name = "TeresaBeegazo"; _[29].user_followers = 1021; _[29].tweet_ids = "619172341944332288"; _[30] = {}; _[30].user_id = 74640730; _[30].user_name = "ahulse"; _[30].user_followers = 1263; _[30].tweet_ids = "619172235488718848"; _[31] = {}; _[31].user_id = 75797367; _[31].user_name = "dandrezner"; _[31].user_followers = 42765; _[31].tweet_ids = "619172313846693890"; _[32] = {}; _[32].user_id = 76223193; _[32].user_name = "MsTamarShawnice"; _[32].user_followers = 2386; _[32].tweet_ids = "501064207274868736"; _[33] = {}; _[33].user_id = 79286766; _[33].user_name = "7vacasvoladoras"; _[33].user_followers = 479; _[33].tweet_ids = "619172293936291840"; _[34] = {}; _[34].user_id = 81674839; _[34].user_name = "Blackberryccr"; _[34].user_followers = 41; _[34].tweet_ids = "501064202295848960"; _[35] = {}; _[35].user_id = 82658160; _[35].user_name = "rvan73"; _[35].user_followers = 472; _[35].tweet_ids = "501064214211870720"; _[36] = {}; _[36].user_id = 100951936; _[36].user_name = "elbshari_abdo"; _[36].user_followers = 114; _[36].tweet_ids = "619172278086070272"; _[37] = {}; _[37].user_id = 100986964; _[37].user_name = "PulpNews"; _[37].user_followers = 4029; _[37].tweet_ids = "501064209648848896"; _[38] = {}; _[38].user_id = 106948003; _[38].user_name = "MrKneeGrow"; _[38].user_followers = 172; _[38].tweet_ids = "501064228627705857"; _[39] = {}; _[39].user_id = 109035228; _[39].user_name = "lgriverob"; _[39].user_followers = 810; _[39].tweet_ids = "501064231304065026"; _[40] = {}; _[40].user_id = 109472069; _[40].user_name = "JoseRamiroabreu"; _[40].user_followers = 2229; _[40].tweet_ids = "501064218343661568"; _[41] = {}; _[41].user_id = 113457313; _[41].user_name = "jersonotagle"; _[41].user_followers = 1120; _[41].tweet_ids = "501064213843169280"; _[42] = {}; _[42].user_id = 115221745; _[42].user_name = "jessicastiffler"; _[42].user_followers = 1800; _[42].tweet_ids = "501064233774510081"; _[43] = {}; _[43].user_id = 117155917; _[43].user_name = "rebekahwsm"; _[43].user_followers = 5069; _[43].tweet_ids = "501064233186893824"; _[44] = {}; _[44].user_id = 122387181; _[44].user_name = "Mark_Rehm"; _[44].user_followers = 375; _[44].tweet_ids = "501064208789045248"; _[45] = {}; _[45].user_id = 122450450; _[45].user_name = "MsKita4"; _[45].user_followers = 95; _[45].tweet_ids = "501064222923440130"; _[46] = {}; _[46].user_id = 142916938; _[46].user_name = "julioalbarracin"; _[46].user_followers = 4993; _[46].tweet_ids = "619172319047647232"; _[47] = {}; _[47].user_id = 144939767; _[47].user_name = "Laurenleah_"; _[47].user_followers = 1814; _[47].tweet_ids = "501064204989001728"; _[48] = {}; _[48].user_id = 161904722; _[48].user_name = "profbrady"; _[48].user_followers = 553; _[48].tweet_ids = "501064204288540672"; _[49] = {}; _[49].user_id = 191573388; _[49].user_name = "cactusjuicekb"; _[49].user_followers = 88; _[49].tweet_ids = "501064225314185216"; _[50] = {}; _[50].user_id = 197018623; _[50].user_name = "Ssragona"; _[50].user_followers = 466; _[50].tweet_ids = "501064200186118145"; _[51] = {}; _[51].user_id = 200471093; _[51].user_name = "bdoulaoblongata"; _[51].user_followers = 17058; _[51].tweet_ids = "501064232449114112"; _[52] = {}; _[52].user_id = 206608014; _[52].user_name = "ArminTenn"; _[52].user_followers = 3212; _[52].tweet_ids = "619172320880533504"; _[53] = {}; _[53].user_id = 223630412; _[53].user_name = "wangadir"; _[53].user_followers = 295; _[53].tweet_ids = "501064213951823873"; _[54] = {}; _[54].user_id = 226176050; _[54].user_name = "KommercialKings"; _[54].user_followers = 8381; _[54].tweet_ids = "501064212547137536"; _[55] = {}; _[55].user_id = 245476444; _[55].user_name = "BeetaBenjy"; _[55].user_followers = 463; _[55].tweet_ids = "619172257789706240"; _[56] = {}; _[56].user_id = 246672896; _[56].user_name = "MistyPrest"; _[56].user_followers = 225; _[56].tweet_ids = "501064219467341824"; _[57] = {}; _[57].user_id = 254282406; _[57].user_name = "khan_ahsen"; _[57].user_followers = 795; _[57].tweet_ids = "619172208355749888"; _[58] = {}; _[58].user_id = 274013085; _[58].user_name = "claudiperez"; _[58].user_followers = 12566; _[58].tweet_ids = "619172236134588416"; _[59] = {}; _[59].user_id = 277073535; _[59].user_name = "koalaexpresss"; _[59].user_followers = 708; _[59].tweet_ids = "501064233438568450"; _[60] = {}; _[60].user_id = 278298244; _[60].user_name = "bookishshelly"; _[60].user_followers = 186; _[60].tweet_ids = "501064196931330049"; _[61] = {}; _[61].user_id = 283857061; _[61].user_name = "502kissababy"; _[61].user_followers = 1579; _[61].tweet_ids = "501064220415229953"; _[62] = {}; _[62].user_id = 284216925; _[62].user_name = "Israel_English"; _[62].user_followers = 2083; _[62].tweet_ids = "619172304191401984"; _[63] = {}; _[63].user_id = 294396285; _[63].user_name = "aqasatana"; _[63].user_followers = 977; _[63].tweet_ids = "501064232188665856"; _[64] = {}; _[64].user_id = 297137496; _[64].user_name = "MazenAlkhamis"; _[64].user_followers = 3345; _[64].tweet_ids = "501064216522932227"; _[65] = {}; _[65].user_id = 298329334; _[65].user_name = "xMurderCWrote"; _[65].user_followers = 2069; _[65].tweet_ids = "501064227344646144"; _[66] = {}; _[66].user_id = 300686726; _[66].user_name = "missuhappybird"; _[66].user_followers = 2354; _[66].tweet_ids = "619172328249757696"; _[67] = {}; _[67].user_id = 316702265; _[67].user_name = "Ju_JustGetsIt"; _[67].user_followers = 2751; _[67].tweet_ids = "501064235107897344"; _[68] = {}; _[68].user_id = 339224221; _[68].user_name = "CarlosPPartidas"; _[68].user_followers = 192; _[68].tweet_ids = "619172170233679872"; _[69] = {}; _[69].user_id = 339903277; _[69].user_name = "KimCheeMichael"; _[69].user_followers = 632; _[69].tweet_ids = "501064222340423681"; _[70] = {}; _[70].user_id = 344938512; _[70].user_name = "upuouo"; _[70].user_followers = 1258; _[70].tweet_ids = "619172298310840325"; _[71] = {}; _[71].user_id = 349699173; _[71].user_name = "junelegal"; _[71].user_followers = 197; _[71].tweet_ids = "501064206666702848"; _[72] = {}; _[72].user_id = 356854246; _[72].user_name = "DrJLMooreIII"; _[72].user_followers = 4888; _[72].tweet_ids = "501064202904403970;501064231387947008"; _[73] = {}; _[73].user_id = 361708743; _[73].user_name = "dutchmn007"; _[73].user_followers = 3023; _[73].tweet_ids = "619172306338709504"; _[74] = {}; _[74].user_id = 363942545; _[74].user_name = "Purple_Smear"; _[74].user_followers = 283; _[74].tweet_ids = "501064231941570561"; _[75] = {}; _[75].user_id = 364194053; _[75].user_name = "ArrogantDemon"; _[75].user_followers = 2153; _[75].tweet_ids = "501064203508412416"; _[76] = {}; _[76].user_id = 374346913; _[76].user_name = "I_Mpower"; _[76].user_followers = 3390; _[76].tweet_ids = "501064188211765249"; _[77] = {}; _[77].user_id = 377869140; _[77].user_name = "BobbyClashBeat"; _[77].user_followers = 138; _[77].tweet_ids = "501064207824351232"; _[78] = {}; _[78].user_id = 387416764; _[78].user_name = "independentgrly"; _[78].user_followers = 436; _[78].tweet_ids = "501064235175399425"; _[79] = {}; _[79].user_id = 389073720; _[79].user_name = "telormac"; _[79].user_followers = 1222; _[79].tweet_ids = "501064201041743872"; _[80] = {}; _[80].user_id = 410566588; _[80].user_name = "WaltherKrickl"; _[80].user_followers = 574; _[80].tweet_ids = "501064208562135042"; _[81] = {}; _[81].user_id = 481606532; _[81].user_name = "REEMTHEDREAM215"; _[81].user_followers = 1235; _[81].tweet_ids = "501064210693230592"; _[82] = {}; _[82].user_id = 529555835; _[82].user_name = "ljcambria"; _[82].user_followers = 11605; _[82].tweet_ids = "619172295966392320"; _[83] = {}; _[83].user_id = 558774130; _[83].user_name = "Katyria90"; _[83].user_followers = 202; _[83].tweet_ids = "501064201256071168"; _[84] = {}; _[84].user_id = 559857235; _[84].user_name = "LawryONeill"; _[84].user_followers = 1230; _[84].tweet_ids = "501064216930160640"; _[85] = {}; _[85].user_id = 588092239; _[85].user_name = "rahulkn9899"; _[85].user_followers = 109; _[85].tweet_ids = "619172323447324672"; _[86] = {}; _[86].user_id = 619587350; _[86].user_name = "BrookLyn1825"; _[86].user_followers = 1208; _[86].tweet_ids = "501064180468682752"; _[87] = {}; _[87].user_id = 716950758; _[87].user_name = "Amber_42"; _[87].user_followers = 236; _[87].tweet_ids = "501064210395037696"; _[88] = {}; _[88].user_id = 851336634; _[88].user_name = "20mUsa"; _[88].user_followers = 15643; _[88].tweet_ids = "501064141332029440"; _[89] = {}; _[89].user_id = 946497368; _[89].user_name = "Free2Pursue"; _[89].user_followers = 11; _[89].tweet_ids = "501064199142117378"; _[90] = {}; _[90].user_id = 1016818370; _[90].user_name = "JukoDaNewShow"; _[90].user_followers = 524; _[90].tweet_ids = "501064232570724352"; _[91] = {}; _[91].user_id = 1112443196; _[91].user_name = "deegerwiilen"; _[91].user_followers = 1356; _[91].tweet_ids = "501064197396914176"; _[92] = {}; _[92].user_id = 1112479376; _[92].user_name = "Schweizer_Kotau"; _[92].user_followers = 595; _[92].tweet_ids = "501064200316125184"; _[93] = {}; _[93].user_id = 1214192959; _[93].user_name = "Molly1Jo"; _[93].user_followers = 2112; _[93].tweet_ids = "501064227302674433"; _[94] = {}; _[94].user_id = 1249284978; _[94].user_name = "SumitSidhu7"; _[94].user_followers = 196; _[94].tweet_ids = "619172282183725056"; _[95] = {}; _[95].user_id = 1252417778; _[95].user_name = "Onionlizard"; _[95].user_followers = 449; _[95].tweet_ids = "501064229915729921"; _[96] = {}; _[96].user_id = 1305908575; _[96].user_name = "bleedingheartmx"; _[96].user_followers = 2925; _[96].tweet_ids = "501064227688558592"; _[97] = {}; _[97].user_id = 1330235048; _[97].user_name = "yourborwhore"; _[97].user_followers = 1725; _[97].tweet_ids = "619172326886674432"; _[98] = {}; _[98].user_id = 1594163078; _[98].user_name = "Travestyleblog"; _[98].user_followers = 418; _[98].tweet_ids = "619172312122814464"; _[99] = {}; _[99].user_id = 1597610311; _[99].user_name = "MollyLibSlayer"; _[99].user_followers = 1049; _[99].tweet_ids = "501064226816143361"; _[100] = {}; _[100].user_id = 1653718716; _[100].user_name = "OAnnie8"; _[100].user_followers = 315; _[100].tweet_ids = "501064215160172545"; _[101] = {}; _[101].user_id = 1944063499; _[101].user_name = "joe_abi12"; _[101].user_followers = 549; _[101].tweet_ids = "501064209551994881"; _[102] = {}; _[102].user_id = 2188452301; _[102].user_name = "mickysowavy"; _[102].user_followers = 3803; _[102].tweet_ids = "501064201251880961"; _[103] = {}; _[103].user_id = 2195036713; _[103].user_name = "_ylberr"; _[103].user_followers = 369; _[103].tweet_ids = "619172300689031168"; _[104] = {}; _[104].user_id = 2272978051; _[104].user_name = "Vorarlberg1"; _[104].user_followers = 490; _[104].tweet_ids = "501064194309906436"; _[105] = {}; _[105].user_id = 2308922960; _[105].user_name = "syrianewsfeed"; _[105].user_followers = 140; _[105].tweet_ids = "619172175820357632"; _[106] = {}; _[106].user_id = 2324941302; _[106].user_name = "yubinaaroma"; _[106].user_followers = 2391; _[106].tweet_ids = "619172253075378176"; _[107] = {}; _[107].user_id = 2335960920; _[107].user_name = "ggnewsus"; _[107].user_followers = 471; _[107].tweet_ids = "501064208277319680"; _[108] = {}; _[108].user_id = 2369225023; _[108].user_name = "SkogCarla"; _[108].user_followers = 10816; _[108].tweet_ids = "501064217667960832"; _[109] = {}; _[109].user_id = 2432870707; _[109].user_name = "KringlaHeimsins"; _[109].user_followers = 503; _[109].tweet_ids = "619172227813126144"; _[110] = {}; _[110].user_id = 2441030754; _[110].user_name = "KendallSupreme_"; _[110].user_followers = 433; _[110].tweet_ids = "501064198059597824"; _[111] = {}; _[111].user_id = 2446710032; _[111].user_name = "AhmedAbdolsala"; _[111].user_followers = 68; _[111].tweet_ids = "619172221349662720"; _[112] = {}; _[112].user_id = 2457488137; _[112].user_name = "Shakur_Hakim"; _[112].user_followers = 1014; _[112].tweet_ids = "501064224936714240"; _[113] = {}; _[113].user_id = 2459920208; _[113].user_name = "feedsynbot"; _[113].user_followers = 1568; _[113].tweet_ids = "501064207387742210"; _[114] = {}; _[114].user_id = 2477475030; _[114].user_name = "bennharr"; _[114].user_followers = 151; _[114].tweet_ids = "501064201503113216"; _[115] = {}; _[115].user_id = 2481812382; _[115].user_name = "SadieODoyle"; _[115].user_followers = 42; _[115].tweet_ids = "501064200035516416"; _[116] = {}; _[116].user_id = 2493824904; _[116].user_name = "AmaniRasol"; _[116].user_followers = 121; _[116].tweet_ids = "619172293680345089"; _[117] = {}; _[117].user_id = 2494747518; _[117].user_name = "PrincessLib_TYT"; _[117].user_followers = 1386; _[117].tweet_ids = "501064229764751360"; _[118] = {}; _[118].user_id = 2500422674; _[118].user_name = "pecanEgba74318"; _[118].user_followers = 17; _[118].tweet_ids = "619172331592773632"; _[119] = {}; _[119].user_id = 2552698171; _[119].user_name = "xhertx"; _[119].user_followers = 4110; _[119].tweet_ids = "619172214475108352"; _[120] = {}; _[120].user_id = 2569107372; _[120].user_name = "SlavinOleg"; _[120].user_followers = 35; _[120].tweet_ids = "501064198973960192;501064202794971136;501064214467731457;501064215759568897;501064220121632768"; _[121] = {}; _[121].user_id = 2579883909; _[121].user_name = "boskomlomo"; _[121].user_followers = 104; _[121].tweet_ids = "501064225142624256"; _[122] = {}; _[122].user_id = 2600797508; _[122].user_name = "YogiBearSarah"; _[122].user_followers = 147; _[122].tweet_ids = "501064231488200704"; _[123] = {}; _[123].user_id = 2696111005; _[123].user_name = "EGEVER142"; _[123].user_followers = 1433; _[123].tweet_ids = "619172303654518784"; _[124] = {}; _[124].user_id = 2745507335; _[124].user_name = "LaelMoon3"; _[124].user_followers = 137; _[124].tweet_ids = "619172193730199552"; _[125] = {}; _[125].user_id = 2759742364; _[125].user_name = "erikathomas_me2"; _[125].user_followers = 115; _[125].tweet_ids = "619172331584376832"; _[126] = {}; _[126].user_id = 2795245697; _[126].user_name = "Patriot715"; _[126].user_followers = 2156; _[126].tweet_ids = "619172320360333312"; _[127] = {}; _[127].user_id = 2821663239; _[127].user_name = "CalefDeanna"; _[127].user_followers = 1224; _[127].tweet_ids = "619172216349917184"; _[128] = {}; _[128].user_id = 2830090062; _[128].user_name = "stahl_soraya"; _[128].user_followers = 37; _[128].tweet_ids = "619172328149118976"; _[129] = {}; _[129].user_id = 2858607784; _[129].user_name = "Data_Institute"; _[129].user_followers = 1402; _[129].tweet_ids = "619172232120692736"; _[130] = {}; _[130].user_id = 2889098734; _[130].user_name = "crimebot_404"; _[130].user_followers = 436; _[130].tweet_ids = "619172347275116548"; _[131] = {}; _[131].user_id = 2897136909; _[131].user_name = "USTweetsDistill"; _[131].user_followers = 369; _[131].tweet_ids = "619172209857327104"; _[132] = {}; _[132].user_id = 2932056121; _[132].user_name = "neetanagarkar"; _[132].user_followers = 22; _[132].tweet_ids = "619172331399725057"; _[133] = {}; _[133].user_id = 2944164937; _[133].user_name = "mirogeorgiev97"; _[133].user_followers = 946; _[133].tweet_ids = "619172162608463873"; _[134] = {}; _[134].user_id = 2973928629; _[134].user_name = "FelipeCimadoro"; _[134].user_followers = 13537; _[134].tweet_ids = "619172332100284416"; _[135] = {}; _[135].user_id = 3231982123; _[135].user_name = "JarBomb"; _[135].user_followers = 375; _[135].tweet_ids = "619172163912908801"; jello-1.6.1/tests/fixtures/twitterdata.jlines000066400000000000000000026415601501617276000214240ustar00rootroot00000000000000{"contributors": null, "truncated": false, "text": "Gobernador dice que el toque de queda en #Ferguson por disturbios raciales podr\u00eda durar d\u00edas http://t.co/doAajeQkom", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064141332029440, "favorite_count": 0, "source": "Hootsuite", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [41, 50], "text": "Ferguson"}], "urls": [{"url": "http://t.co/doAajeQkom", "indices": [93, 115], "expanded_url": "http://ow.ly/ApIBD", "display_url": "ow.ly/ApIBD"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 3, "id_str": "501064141332029440", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 851336634, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/834791998/376566559c7f84a79248efd7a1b4b686.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000043443067/c3ab5f8bb3f917134b0d6f8c5cabaabb_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/fvHMZhwmP4", "indices": [0, 22], "expanded_url": "http://www.20minutos.com", "display_url": "20minutos.com"}]}, "description": {"urls": [{"url": "http://t.co/rPn1suMKxI", "indices": [137, 159], "expanded_url": "http://on.fb.me/14K1oux", "display_url": "on.fb.me/14K1oux"}]}}, "followers_count": 15643, "profile_sidebar_border_color": "FFFFFF", "id_str": "851336634", "profile_background_color": "C0DEED", "listed_count": 185, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 26857, "description": "Somos la edici\u00f3n de @20m en Estados Unidos y queremos darte informaci\u00f3n sobre la comunidad latina. Nos interesa mucho tu opini\u00f3n. En FB: http://t.co/rPn1suMKxI", "friends_count": 12636, "location": "Estados Unidos", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000043443067/c3ab5f8bb3f917134b0d6f8c5cabaabb_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/851336634/1365183919", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/834791998/376566559c7f84a79248efd7a1b4b686.jpeg", "screen_name": "20mUsa", "lang": "es", "profile_background_tile": true, "favourites_count": 34, "name": "20minutos USA", "notifications": false, "url": "http://t.co/fvHMZhwmP4", "created_at": "Fri Sep 28 16:21:14 +0000 2012", "contributors_enabled": false, "time_zone": "Athens", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:52:55 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @NerdyNegress: Mike Brown\u2019s Family Asked To See Robbery Footage Before Police Released It To Media, But Were Ignored http://t.co/WJmBx4B\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064171707170816, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 295988417, "indices": [3, 16], "id_str": "295988417", "screen_name": "NerdyNegress", "name": "Nerdy Negress"}], "hashtags": [{"indices": [139, 140], "text": "Ferguson"}], "urls": [{"url": "http://t.co/WJmBx4BtQg", "indices": [120, 140], "expanded_url": "http://pulse.me/s/2gkEZ1", "display_url": "pulse.me/s/2gkEZ1"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "501064171707170816", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Mike Brown\u2019s Family Asked To See Robbery Footage Before Police Released It To Media, But Were Ignored http://t.co/WJmBx4BtQg #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064110696857600, "favorite_count": 5, "source": "Pulse News", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [125, 134], "text": "Ferguson"}], "urls": [{"url": "http://t.co/WJmBx4BtQg", "indices": [102, 124], "expanded_url": "http://pulse.me/s/2gkEZ1", "display_url": "pulse.me/s/2gkEZ1"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "501064110696857600", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 295988417, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/692516370/13b17673a172776c6473f26a2563249b.jpeg", "verified": false, "profile_text_color": "5A657D", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714991721956904960/namFT73y_normal.jpg", "profile_sidebar_fill_color": "82C487", "entities": {"description": {"urls": []}}, "followers_count": 6604, "profile_sidebar_border_color": "000000", "id_str": "295988417", "profile_background_color": "BBCACD", "listed_count": 158, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 24165, "description": "60ish Pragamatic Progressive | Architect | Fiber Artist | Professor | Yale graduate| I follow back | Obama3 | Vote Blue No Matter Who | Hillary OR Bernie!", "friends_count": 6907, "location": "", "profile_link_color": "4D9993", "profile_image_url": "http://pbs.twimg.com/profile_images/714991721956904960/namFT73y_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/295988417/1459302395", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/692516370/13b17673a172776c6473f26a2563249b.jpeg", "screen_name": "NerdyNegress", "lang": "en", "profile_background_tile": false, "favourites_count": 1008, "name": "Nerdy Negress", "notifications": false, "url": null, "created_at": "Tue May 10 00:45:03 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:47 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 53158947, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623356951812911104/_mep97pQ.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/728626015413612544/xj616t-e_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"description": {"urls": []}}, "followers_count": 5661, "profile_sidebar_border_color": "FFFFFF", "id_str": "53158947", "profile_background_color": "EDECE9", "listed_count": 186, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 256653, "description": "Blocked by #Liz_Cheney #mehganMcCain #ggreenwald #seanhannnity #chucktodd #joeNBC Mom of 2 soldiers #49ers #UGA #RetiredMilitary Criminal Justice; Legal Studies", "friends_count": 5462, "location": "None of your business", "profile_link_color": "981CEB", "profile_image_url": "http://pbs.twimg.com/profile_images/728626015413612544/xj616t-e_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/53158947/1462926425", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623356951812911104/_mep97pQ.jpg", "screen_name": "MzDivah67", "lang": "en", "profile_background_tile": true, "favourites_count": 58053, "name": "Nicole", "notifications": false, "url": null, "created_at": "Thu Jul 02 19:18:52 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:02 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @NerdyNegress: Mike Brown\u2019s Family Asked To See Robbery Footage Before Police Released It To Media, But Were Ignored http://t.co/WJmBx4B\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064180468682752, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 295988417, "indices": [3, 16], "id_str": "295988417", "screen_name": "NerdyNegress", "name": "Nerdy Negress"}], "hashtags": [{"indices": [139, 140], "text": "Ferguson"}], "urls": [{"url": "http://t.co/WJmBx4BtQg", "indices": [120, 140], "expanded_url": "http://pulse.me/s/2gkEZ1", "display_url": "pulse.me/s/2gkEZ1"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "501064180468682752", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Mike Brown\u2019s Family Asked To See Robbery Footage Before Police Released It To Media, But Were Ignored http://t.co/WJmBx4BtQg #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064110696857600, "favorite_count": 5, "source": "Pulse News", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [125, 134], "text": "Ferguson"}], "urls": [{"url": "http://t.co/WJmBx4BtQg", "indices": [102, 124], "expanded_url": "http://pulse.me/s/2gkEZ1", "display_url": "pulse.me/s/2gkEZ1"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "501064110696857600", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 295988417, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/692516370/13b17673a172776c6473f26a2563249b.jpeg", "verified": false, "profile_text_color": "5A657D", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714991721956904960/namFT73y_normal.jpg", "profile_sidebar_fill_color": "82C487", "entities": {"description": {"urls": []}}, "followers_count": 6604, "profile_sidebar_border_color": "000000", "id_str": "295988417", "profile_background_color": "BBCACD", "listed_count": 158, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 24165, "description": "60ish Pragamatic Progressive | Architect | Fiber Artist | Professor | Yale graduate| I follow back | Obama3 | Vote Blue No Matter Who | Hillary OR Bernie!", "friends_count": 6907, "location": "", "profile_link_color": "4D9993", "profile_image_url": "http://pbs.twimg.com/profile_images/714991721956904960/namFT73y_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/295988417/1459302395", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/692516370/13b17673a172776c6473f26a2563249b.jpeg", "screen_name": "NerdyNegress", "lang": "en", "profile_background_tile": false, "favourites_count": 1008, "name": "Nerdy Negress", "notifications": false, "url": null, "created_at": "Tue May 10 00:45:03 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:47 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 619587350, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/723267938741063680/DnLmpoOA_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 1208, "profile_sidebar_border_color": "000000", "id_str": "619587350", "profile_background_color": "000000", "listed_count": 112, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 31788, "description": "Writer, Goddess in the making, Blerd, Gun Owner, From BK to Oakland and back then back again... #BlackLivesMatter #BlackGirlMagic", "friends_count": 1317, "location": "", "profile_link_color": "981CEB", "profile_image_url": "http://pbs.twimg.com/profile_images/723267938741063680/DnLmpoOA_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/619587350/1386527808", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "screen_name": "BrookLyn1825", "lang": "en", "profile_background_tile": false, "favourites_count": 14262, "name": "BrookLyn", "notifications": false, "url": null, "created_at": "Wed Jun 27 02:02:38 +0000 2012", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:04 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Ferguson Becomes Newest War Zone http://t.co/dEewjjh6pF", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064188211765249, "favorite_count": 0, "source": "Pinterest", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/dEewjjh6pF", "indices": [33, 55], "expanded_url": "http://pinterest.com/pin/120893571222393085/", "display_url": "pinterest.com/pin/1208935712\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064188211765249", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 374346913, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/331046922/xa4f8a7e22c3d483e591a5947d6fb106.png", "verified": false, "profile_text_color": "1E1E60", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2936411601/9968a110d6934a75fcee031a27a9eb81_normal.jpeg", "profile_sidebar_fill_color": "D56E8D", "entities": {"url": {"urls": [{"url": "http://t.co/WKRxaQXIoz", "indices": [0, 22], "expanded_url": "http://about.me/ChereseJackson", "display_url": "about.me/ChereseJackson"}]}, "description": {"urls": []}}, "followers_count": 3390, "profile_sidebar_border_color": "BA1144", "id_str": "374346913", "profile_background_color": "B28592", "listed_count": 69, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 19105, "description": "Life & Business Coach, Speaker, Author, Blogger, Writer and Chief Operating Officer of New Direction Coaching Associates. Married to @Mr_Empowerment", "friends_count": 1192, "location": "Virginia Beach", "profile_link_color": "2E131B", "profile_image_url": "http://pbs.twimg.com/profile_images/2936411601/9968a110d6934a75fcee031a27a9eb81_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/374346913/1401630772", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/331046922/xa4f8a7e22c3d483e591a5947d6fb106.png", "screen_name": "I_Mpower", "lang": "en", "profile_background_tile": true, "favourites_count": 32, "name": "Cherese Jackson", "notifications": false, "url": "http://t.co/WKRxaQXIoz", "created_at": "Fri Sep 16 04:53:44 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:06 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "US #USNews Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far http://t.co/GHidaUfTz2", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064194309906436, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [3, 10], "text": "USNews"}], "urls": [{"url": "http://t.co/GHidaUfTz2", "indices": [83, 105], "expanded_url": "http://dlvr.it/6dqmwD", "display_url": "dlvr.it/6dqmwD"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064194309906436", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2272978051, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/419265943382925312/EV9B9Gro_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/D6uQJzF3rs", "indices": [0, 22], "expanded_url": "http://www.epochtimes.de", "display_url": "epochtimes.de"}]}, "description": {"urls": []}}, "followers_count": 490, "profile_sidebar_border_color": "C0DEED", "id_str": "2272978051", "profile_background_color": "C0DEED", "listed_count": 237, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 369176, "description": "Interessantes und Wichtiges aus China und sonst aus der Welt", "friends_count": 975, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/419265943382925312/EV9B9Gro_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2272978051/1388795892", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Vorarlberg1", "lang": "de", "profile_background_tile": false, "favourites_count": 0, "name": "China", "notifications": false, "url": "http://t.co/D6uQJzF3rs", "created_at": "Thu Jan 02 12:54:36 +0000 2014", "contributors_enabled": false, "time_zone": "Vienna", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:07 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @BgRs: Want to help the people of #Ferguson? Want to contribute to #MikeBrown's family?\nHere is a list of things you can do: http://t.co\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064196931330049, "favorite_count": 0, "source": "Twitterrific", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 18989941, "indices": [3, 8], "id_str": "18989941", "screen_name": "BgRs", "name": "Bridgette"}], "hashtags": [{"indices": [37, 46], "text": "Ferguson"}, {"indices": [70, 80], "text": "MikeBrown"}], "urls": [{"url": "http://t.co/NYhm5s8SMo", "indices": [139, 140], "expanded_url": "http://breed7910.wordpress.com/2014/08/16/campaigns-for-mikebrown-ferguson/", "display_url": "breed7910.wordpress.com/2014/08/16/cam\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 225, "id_str": "501064196931330049", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Want to help the people of #Ferguson? Want to contribute to #MikeBrown's family?\nHere is a list of things you can do: http://t.co/NYhm5s8SMo", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501017032486178818, "favorite_count": 87, "source": "TweetCaster for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [27, 36], "text": "Ferguson"}, {"indices": [60, 70], "text": "MikeBrown"}], "urls": [{"url": "http://t.co/NYhm5s8SMo", "indices": [118, 140], "expanded_url": "http://breed7910.wordpress.com/2014/08/16/campaigns-for-mikebrown-ferguson/", "display_url": "breed7910.wordpress.com/2014/08/16/cam\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 225, "id_str": "501017032486178818", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 18989941, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451372452455518208/abocY_e1.jpeg", "verified": false, "profile_text_color": "E6C561", "profile_image_url_https": "https://pbs.twimg.com/profile_images/733151263911612416/a2sA9oxJ_normal.jpg", "profile_sidebar_fill_color": "1A4963", "entities": {"url": {"urls": [{"url": "https://t.co/eQUgnA3dYB", "indices": [0, 23], "expanded_url": "http://epbroadcast.podbean.com", "display_url": "epbroadcast.podbean.com"}]}, "description": {"urls": []}}, "followers_count": 1045, "profile_sidebar_border_color": "000000", "id_str": "18989941", "profile_background_color": "1A1717", "listed_count": 54, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 190743, "description": "Memphis born and bred. 1/4th of the #EPBPodcast (@elvispreslyblvd). There's only mountains and the sea. There's nothing greater, you and me.", "friends_count": 1019, "location": "The Bluff City", "profile_link_color": "0F0354", "profile_image_url": "http://pbs.twimg.com/profile_images/733151263911612416/a2sA9oxJ_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18989941/1461317182", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451372452455518208/abocY_e1.jpeg", "screen_name": "BgRs", "lang": "en", "profile_background_tile": false, "favourites_count": 654, "name": "Bridgette", "notifications": false, "url": "https://t.co/eQUgnA3dYB", "created_at": "Wed Jan 14 19:04:57 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Sun Aug 17 14:45:43 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 278298244, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000143781828/KFbf2YeS.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/723262747652161536/q1ekuIjo_normal.jpg", "profile_sidebar_fill_color": "F6FFD1", "entities": {"url": {"urls": [{"url": "https://t.co/KKthDBUDJB", "indices": [0, 23], "expanded_url": "http://bookishshelly.wordpress.com", "display_url": "bookishshelly.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 186, "profile_sidebar_border_color": "FFFFFF", "id_str": "278298244", "profile_background_color": "F7F3EF", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 2279, "description": "SAHM. Book blogger. ISFJ. Hufflepuff.", "friends_count": 689, "location": "California", "profile_link_color": "FA743E", "profile_image_url": "http://pbs.twimg.com/profile_images/723262747652161536/q1ekuIjo_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/278298244/1461268852", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000143781828/KFbf2YeS.jpeg", "screen_name": "bookishshelly", "lang": "en", "profile_background_tile": false, "favourites_count": 1975, "name": "Shelly Huang", "notifications": false, "url": "https://t.co/KKthDBUDJB", "created_at": "Thu Apr 07 00:45:43 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "US Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far: FERGUSON, Mo.\u2014After an unarmed black... http://t.co/jPZd2aqt2C", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064197396914176, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/jPZd2aqt2C", "indices": [116, 138], "expanded_url": "http://dlvr.it/6dqmxX", "display_url": "dlvr.it/6dqmxX"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064197396914176", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1112443196, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3393688326/53425c37516b5e6c3da625306838580d_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/pScnN3sNl9", "indices": [0, 22], "expanded_url": "http://www.epochtimes.de/", "display_url": "epochtimes.de"}]}, "description": {"urls": []}}, "followers_count": 1356, "profile_sidebar_border_color": "C0DEED", "id_str": "1112443196", "profile_background_color": "C0DEED", "listed_count": 170, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 377014, "description": "", "friends_count": 805, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3393688326/53425c37516b5e6c3da625306838580d_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1112443196/1363555893", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "deegerwiilen", "lang": "de", "profile_background_tile": false, "favourites_count": 0, "name": "Erich Bachmann", "notifications": false, "url": "http://t.co/pScnN3sNl9", "created_at": "Tue Jan 22 19:37:05 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @MiamiLib: When do these \"patriots\" get tear gassed? #Ferguson #tcot #uniteblue #teaparty #gop http://t.co/nUYeZhx8km", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064197632167936, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [56, 65], "text": "Ferguson"}, {"indices": [66, 71], "text": "tcot"}, {"indices": [72, 82], "text": "uniteblue"}, {"indices": [83, 92], "text": "teaparty"}, {"indices": [93, 97], "text": "gop"}], "urls": [], "media": [{"source_user_id": 898533348, "source_status_id_str": "501062167303450626", "expanded_url": "http://twitter.com/MiamiLib/status/501062167303450626/photo/1", "display_url": "pic.twitter.com/nUYeZhx8km", "url": "http://t.co/nUYeZhx8km", "media_url_https": "https://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg", "source_user_id_str": "898533348", "source_status_id": 501062167303450626, "id_str": "501062167051767811", "sizes": {"small": {"h": 342, "resize": "fit", "w": 340}, "large": {"h": 1000, "resize": "fit", "w": 994}, "medium": {"h": 604, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [98, 120], "type": "photo", "id": 501062167051767811, "media_url": "http://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 134, "id_str": "501064197632167936", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "When do these \"patriots\" get tear gassed? #Ferguson #tcot #uniteblue #teaparty #gop http://t.co/nUYeZhx8km", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062167303450626, "favorite_count": 64, "source": "iOS", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [42, 51], "text": "Ferguson"}, {"indices": [52, 57], "text": "tcot"}, {"indices": [58, 68], "text": "uniteblue"}, {"indices": [69, 78], "text": "teaparty"}, {"indices": [79, 83], "text": "gop"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/MiamiLib/status/501062167303450626/photo/1", "display_url": "pic.twitter.com/nUYeZhx8km", "url": "http://t.co/nUYeZhx8km", "media_url_https": "https://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg", "id_str": "501062167051767811", "sizes": {"small": {"h": 342, "resize": "fit", "w": 340}, "large": {"h": 1000, "resize": "fit", "w": 994}, "medium": {"h": 604, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [84, 106], "type": "photo", "id": 501062167051767811, "media_url": "http://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 134, "id_str": "501062167303450626", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 898533348, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/531985095595266049/NU2hfGf9_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/ei2DEb71jh", "indices": [0, 23], "expanded_url": "http://www.facebook.com/LiberalsInAmerica", "display_url": "facebook.com/LiberalsInAmer\u2026"}]}, "description": {"urls": []}}, "followers_count": 32881, "profile_sidebar_border_color": "C0DEED", "id_str": "898533348", "profile_background_color": "C0DEED", "listed_count": 437, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 53435, "description": "", "friends_count": 31030, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/531985095595266049/NU2hfGf9_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/898533348/1450669548", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "LibsInAmerica", "lang": "en", "profile_background_tile": false, "favourites_count": 1610, "name": "LiA", "notifications": false, "url": "https://t.co/ei2DEb71jh", "created_at": "Mon Oct 22 22:13:25 +0000 2012", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:45:04 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/MiamiLib/status/501062167303450626/photo/1", "display_url": "pic.twitter.com/nUYeZhx8km", "url": "http://t.co/nUYeZhx8km", "media_url_https": "https://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg", "id_str": "501062167051767811", "sizes": {"small": {"h": 342, "resize": "fit", "w": 340}, "large": {"h": 1000, "resize": "fit", "w": 994}, "medium": {"h": 604, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [84, 106], "type": "photo", "id": 501062167051767811, "media_url": "http://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 21811025, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/29594920/AlborzPerseid2009_tafreshi.jpg", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2836379157/570287ecfa2908af0a9aee714a358d6d_normal.jpeg", "profile_sidebar_fill_color": "7AC3EE", "entities": {"description": {"urls": []}}, "followers_count": 1705, "profile_sidebar_border_color": "65B0DA", "id_str": "21811025", "profile_background_color": "642D8B", "listed_count": 51, "is_translation_enabled": false, "utc_offset": -9000, "statuses_count": 33408, "description": "Peace cannot be kept by force. It can only be achieved through understanding. - A Einstein Wife, Mother & Grandma. Love my pups! #progressive #uniteblue", "friends_count": 1573, "location": "", "profile_link_color": "428548", "profile_image_url": "http://pbs.twimg.com/profile_images/2836379157/570287ecfa2908af0a9aee714a358d6d_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21811025/1366597602", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/29594920/AlborzPerseid2009_tafreshi.jpg", "screen_name": "mmaureen7", "lang": "en", "profile_background_tile": false, "favourites_count": 1352, "name": "Maureen", "notifications": false, "url": null, "created_at": "Tue Feb 24 23:17:29 +0000 2009", "contributors_enabled": false, "time_zone": "Newfoundland", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 898533348, "source_status_id_str": "501062167303450626", "expanded_url": "http://twitter.com/MiamiLib/status/501062167303450626/photo/1", "display_url": "pic.twitter.com/nUYeZhx8km", "url": "http://t.co/nUYeZhx8km", "media_url_https": "https://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg", "source_user_id_str": "898533348", "source_status_id": 501062167303450626, "id_str": "501062167051767811", "sizes": {"small": {"h": 342, "resize": "fit", "w": 340}, "large": {"h": 1000, "resize": "fit", "w": 994}, "medium": {"h": 604, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [98, 120], "type": "photo", "id": 501062167051767811, "media_url": "http://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg"}]}} {"contributors": null, "truncated": false, "text": "\u201c@ImNotTwitFamous: Tumblr makes some good point about #Ferguson http://t.co/ch7N9d53Fz\u201d", "is_quote_status": false, "in_reply_to_status_id": 499992352505610240, "id": 501064198059597824, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 3385611074, "indices": [1, 17], "id_str": "3385611074", "screen_name": "ImNotTwitFamous", "name": "Josh"}], "hashtags": [{"indices": [54, 63], "text": "Ferguson"}], "urls": [{"url": "http://t.co/ch7N9d53Fz", "indices": [64, 86], "expanded_url": "http://twitter.com/ImNotTwitFamous/status/499992352505610240/photo/1", "display_url": "pic.twitter.com/ch7N9d53Fz"}]}, "in_reply_to_screen_name": "resolve", "in_reply_to_user_id": 471487008, "retweet_count": 0, "id_str": "501064198059597824", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 2441030754, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/724345575081017344/v__k3JOl_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 433, "profile_sidebar_border_color": "C0DEED", "id_str": "2441030754", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 7374, "description": "Rip Granny\u2764. Hooping.", "friends_count": 322, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/724345575081017344/v__k3JOl_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2441030754/1463807158", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "KendallSupreme_", "lang": "en", "profile_background_tile": false, "favourites_count": 4454, "name": "Silky", "notifications": false, "url": null, "created_at": "Sun Apr 13 04:41:34 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "471487008", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": "499992352505610240", "place": null} {"contributors": null, "truncated": false, "text": "RT @trymainelee: I had a great talk w/ Brooke Gladstone about Ferguson and the need for diversity in America's newsrooms. http://t.co/uEOYk\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064198513000450, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 93963456, "indices": [3, 15], "id_str": "93963456", "screen_name": "trymainelee", "name": "Trymaine Lee"}, {"id": 573764891, "indices": [139, 140], "id_str": "573764891", "screen_name": "OTMBrooke", "name": "Brooke Gladstone"}], "hashtags": [], "urls": [{"url": "http://t.co/uEOYkRAyBp", "indices": [122, 140], "expanded_url": "http://bit.ly/1nZe7hs", "display_url": "bit.ly/1nZe7hs"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501064198513000450", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "I had a great talk w/ Brooke Gladstone about Ferguson and the need for diversity in America's newsrooms. http://t.co/uEOYkRAyBp @OTMBrooke", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501027623863345152, "favorite_count": 10, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 573764891, "indices": [128, 138], "id_str": "573764891", "screen_name": "OTMBrooke", "name": "Brooke Gladstone"}], "hashtags": [], "urls": [{"url": "http://t.co/uEOYkRAyBp", "indices": [105, 127], "expanded_url": "http://bit.ly/1nZe7hs", "display_url": "bit.ly/1nZe7hs"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501027623863345152", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 93963456, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650044276550815744/yPvVZW4n_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 32798, "profile_sidebar_border_color": "C0DEED", "id_str": "93963456", "profile_background_color": "C0DEED", "listed_count": 1260, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 6373, "description": "Journalist. Storyteller. Pulitzer Prize Winner. National Reporter @msnbc * 2016 New America Fellow * Proud Milton Hershey School alum trymaine.lee@nbcuni.com", "friends_count": 2019, "location": "New York, NY", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/650044276550815744/yPvVZW4n_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/93963456/1453542376", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "trymainelee", "lang": "en", "profile_background_tile": false, "favourites_count": 554, "name": "Trymaine Lee", "notifications": false, "url": null, "created_at": "Tue Dec 01 22:53:35 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 15:27:48 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 7243782, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/713919340668649472/20O8Z9Rl_normal.jpg", "profile_sidebar_fill_color": "E0FF92", "entities": {"description": {"urls": []}}, "followers_count": 362, "profile_sidebar_border_color": "87BC44", "id_str": "7243782", "profile_background_color": "9AE4E8", "listed_count": 87, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 80075, "description": "I fit relevant descriptions of people I never heard of. / My clothing, suspicious; my movements, furtive.", "friends_count": 130, "location": "New York", "profile_link_color": "0000FF", "profile_image_url": "http://pbs.twimg.com/profile_images/713919340668649472/20O8Z9Rl_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7243782/1459790748", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "carminemac", "lang": "en", "profile_background_tile": false, "favourites_count": 5722, "name": "Carmine", "notifications": false, "url": null, "created_at": "Wed Jul 04 05:49:59 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Police Deploy Tear Gas to Impose Ferguson\u00a0Curfew http://t.co/du7lIdWvf2", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064198973960192, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/du7lIdWvf2", "indices": [49, 71], "expanded_url": "http://wp.me/p4Rl2x-4NB", "display_url": "wp.me/p4Rl2x-4NB"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064198973960192", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "\u041e\u043b\u0435\u0433 \u0421\u043b\u0430\u0432\u0438\u043d", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Think about this from @ShaunKing -\"Resisting ASSAULT and resisting arrest are NOT the same thing.\" #Ferguson #PoliceBrutality", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064199142117378, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 755113, "indices": [22, 32], "id_str": "755113", "screen_name": "ShaunKing", "name": "Shaun King"}], "hashtags": [{"indices": [100, 109], "text": "Ferguson"}, {"indices": [110, 126], "text": "PoliceBrutality"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064199142117378", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": true, "id": 946497368, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 11, "profile_sidebar_border_color": "C0DEED", "id_str": "946497368", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 928, "description": "Indigenous. Human. Curious. Me.", "friends_count": 175, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Free2Pursue", "lang": "en", "profile_background_tile": false, "favourites_count": 265, "name": "AmericanWoman", "notifications": false, "url": null, "created_at": "Tue Nov 13 20:52:05 +0000 2012", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @chrisalexander_: I see Sharpton letting his inner rat bastard shine bright like a diamond. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064200035516416, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 20864257, "indices": [3, 19], "id_str": "20864257", "screen_name": "chrisalexander_", "name": "Alexander Hardy"}], "hashtags": [{"indices": [95, 104], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 17, "id_str": "501064200035516416", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "I see Sharpton letting his inner rat bastard shine bright like a diamond. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062362120876032, "favorite_count": 11, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [74, 83], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 17, "id_str": "501062362120876032", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 20864257, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/543712556/pana.jpg", "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/711408901464395776/6hol57AC_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": {"url": {"urls": [{"url": "https://t.co/4eSuQVoJk8", "indices": [0, 23], "expanded_url": "http://www.thecoloredboy.com", "display_url": "thecoloredboy.com"}]}, "description": {"urls": []}}, "followers_count": 5300, "profile_sidebar_border_color": "181A1E", "id_str": "20864257", "profile_background_color": "1A1B1F", "listed_count": 142, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 96578, "description": "The Colored Boy. @abernathy @ebonymag @verysmartbros @Gawker @CNN @huffpogay @saintheron etc. i can fulfill your literary desires: alex@thecoloredboy.com", "friends_count": 1619, "location": "NYC", "profile_link_color": "1D60B3", "profile_image_url": "http://pbs.twimg.com/profile_images/711408901464395776/6hol57AC_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20864257/1427309539", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/543712556/pana.jpg", "screen_name": "chrisalexander_", "lang": "en", "profile_background_tile": false, "favourites_count": 9152, "name": "Alexander Hardy", "notifications": false, "url": "https://t.co/4eSuQVoJk8", "created_at": "Sat Feb 14 18:59:44 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:45:51 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2481812382, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/502101956240752640/qauzRZ6p_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 42, "profile_sidebar_border_color": "C0DEED", "id_str": "2481812382", "profile_background_color": "C0DEED", "listed_count": 1, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 2088, "description": "Disposible work pajamas. Recently informed that my biracial children will cause white genocide. #vajayjaypowersactivate\u2764\ufe0f#garbagegang garbage tweets abound", "friends_count": 183, "location": "summer polar vortex", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/502101956240752640/qauzRZ6p_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2481812382/1405584896", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SadieODoyle", "lang": "en", "profile_background_tile": false, "favourites_count": 1672, "name": "P\u00f3g mo th\u00f3in", "notifications": false, "url": null, "created_at": "Wed May 07 10:16:01 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Please don't blame POTUS for Ferguson. He is not just a Black President, he is THE President and will address the problem as he sees fit.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064200186118145, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064200186118145", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 197018623, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/563117849036587008/C1fC0e7A_normal.jpeg", "profile_sidebar_fill_color": "F6F6F6", "entities": {"description": {"urls": []}}, "followers_count": 466, "profile_sidebar_border_color": "EEEEEE", "id_str": "197018623", "profile_background_color": "ACDED6", "listed_count": 14, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 8411, "description": "Retired. My right to swing my arm stops where your nose begins", "friends_count": 962, "location": "Liberal progessive in Austin, ", "profile_link_color": "038543", "profile_image_url": "http://pbs.twimg.com/profile_images/563117849036587008/C1fC0e7A_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/197018623/1353172300", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "screen_name": "Ssragona", "lang": "en", "profile_background_tile": false, "favourites_count": 265, "name": "Saundra Ragona", "notifications": false, "url": null, "created_at": "Thu Sep 30 13:23:11 +0000 2010", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "US Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far: FERGUSON, Mo.\u2014After an unarmed black... http://t.co/oY9mpYGJD9", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064200316125184, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/oY9mpYGJD9", "indices": [116, 138], "expanded_url": "http://dlvr.it/6dqmyt", "display_url": "dlvr.it/6dqmyt"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064200316125184", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1112479376, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3150033623/19a52eec6b3741236b61f78475ead526_normal.jpeg", "profile_sidebar_fill_color": "F6FFD1", "entities": {"url": {"urls": [{"url": "http://t.co/g6mxH71DCq", "indices": [0, 22], "expanded_url": "http://www.epochtimes.de/", "display_url": "epochtimes.de"}]}, "description": {"urls": []}}, "followers_count": 595, "profile_sidebar_border_color": "FFF8AD", "id_str": "1112479376", "profile_background_color": "FFF04D", "listed_count": 123, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 346209, "description": "Menschlichkeit opfern f\u00fcr das Freihandelsabkommen - was f\u00fcr ein Vorbild!", "friends_count": 923, "location": "", "profile_link_color": "0099CC", "profile_image_url": "http://pbs.twimg.com/profile_images/3150033623/19a52eec6b3741236b61f78475ead526_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1112479376/1400089405", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "screen_name": "Schweizer_Kotau", "lang": "de", "profile_background_tile": false, "favourites_count": 99, "name": "Freihandelsabkommen", "notifications": false, "url": "http://t.co/g6mxH71DCq", "created_at": "Tue Jan 22 19:53:02 +0000 2013", "contributors_enabled": false, "time_zone": "Amsterdam", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @zellieimani: The STL PD has been releasing a constant stream of lies and misinformation. And it's not on accident. It's very deliberat\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064201041743872, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 325076723, "indices": [3, 15], "id_str": "325076723", "screen_name": "zellieimani", "name": "zellie"}], "hashtags": [{"indices": [139, 140], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 174, "id_str": "501064201041743872", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The STL PD has been releasing a constant stream of lies and misinformation. And it's not on accident. It's very deliberate. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501061201141309440, "favorite_count": 93, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [125, 134], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 174, "id_str": "501061201141309440", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 325076723, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000179362439/90f034432122f61df63e471932fdfc62_normal.jpeg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "http://t.co/eC6kAS7KzW", "indices": [0, 22], "expanded_url": "http://www.black-culture.com", "display_url": "black-culture.com"}]}, "description": {"urls": []}}, "followers_count": 69197, "profile_sidebar_border_color": "EEEEEE", "id_str": "325076723", "profile_background_color": "131516", "listed_count": 1066, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 131222, "description": "All Black Everything. Teacher. Blogger. Activist. Brother. Son. Contact: zellie.imani@gmail.com", "friends_count": 2831, "location": "NJ", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000179362439/90f034432122f61df63e471932fdfc62_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/325076723/1387896720", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "zellieimani", "lang": "en", "profile_background_tile": true, "favourites_count": 5862, "name": "zellie", "notifications": false, "url": "http://t.co/eC6kAS7KzW", "created_at": "Mon Jun 27 18:06:47 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:41:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 389073720, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/699905597/27410dfcf5eeb98fb89ced70c2b83a5a.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731898769390768128/4waCITt6_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/XdcCElyPLj", "indices": [0, 23], "expanded_url": "http://mindingmine.com", "display_url": "mindingmine.com"}]}, "description": {"urls": []}}, "followers_count": 1222, "profile_sidebar_border_color": "FFFFFF", "id_str": "389073720", "profile_background_color": "131516", "listed_count": 11, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 62779, "description": "yeah it's pronounced like regular Taylor", "friends_count": 875, "location": "detroit ", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/731898769390768128/4waCITt6_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/389073720/1462211909", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/699905597/27410dfcf5eeb98fb89ced70c2b83a5a.jpeg", "screen_name": "telormac", "lang": "en", "profile_background_tile": true, "favourites_count": 22645, "name": "t\u00e8 mama", "notifications": false, "url": "https://t.co/XdcCElyPLj", "created_at": "Tue Oct 11 20:22:36 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @locoernesto: I have yet to hear anything about #Ferguson from Miley or Bieber. Katy? Iggy? Everyone wants to be black until it's time t\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064201251880961, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 217663500, "indices": [3, 15], "id_str": "217663500", "screen_name": "locoernesto", "name": "Black Bill Gates"}], "hashtags": [{"indices": [51, 60], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5630, "id_str": "501064201251880961", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "I have yet to hear anything about #Ferguson from Miley or Bieber. Katy? Iggy? Everyone wants to be black until it's time to be black.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 499823642881302528, "favorite_count": 4859, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [34, 43], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5630, "id_str": "499823642881302528", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 217663500, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/666745622/44962d638b662e5a9d32419411c33721.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734270566983696384/UkvLLFyX_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"description": {"urls": []}}, "followers_count": 878, "profile_sidebar_border_color": "FFFFFF", "id_str": "217663500", "profile_background_color": "131516", "listed_count": 3, "is_translation_enabled": false, "utc_offset": -36000, "statuses_count": 8684, "description": "have you stayed in your lane today?", "friends_count": 529, "location": "Instagram | @locoernesto", "profile_link_color": "161717", "profile_image_url": "http://pbs.twimg.com/profile_images/734270566983696384/UkvLLFyX_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/217663500/1463898751", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/666745622/44962d638b662e5a9d32419411c33721.jpeg", "screen_name": "locoernesto", "lang": "en", "profile_background_tile": true, "favourites_count": 12735, "name": "Black Bill Gates", "notifications": false, "url": null, "created_at": "Sat Nov 20 04:24:50 +0000 2010", "contributors_enabled": false, "time_zone": "Hawaii", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Aug 14 07:43:37 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 2188452301, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/535439809599131648/i2lacaDB.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/716708626530832386/W2dYJvl7_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 3803, "profile_sidebar_border_color": "000000", "id_str": "2188452301", "profile_background_color": "1A1B1F", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 69376, "description": "Snapchat: ayoo_micky", "friends_count": 1952, "location": "765", "profile_link_color": "1A1B1F", "profile_image_url": "http://pbs.twimg.com/profile_images/716708626530832386/W2dYJvl7_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2188452301/1463290682", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/535439809599131648/i2lacaDB.jpeg", "screen_name": "mickysowavy", "lang": "en", "profile_background_tile": false, "favourites_count": 23712, "name": "\u2764", "notifications": false, "url": null, "created_at": "Mon Nov 11 14:10:42 +0000 2013", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @YourAnonNews: #Ferguson pigs are out of control, using curfew as an excuse to pull people from parked vehicles and brutalize them http:\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064201256071168, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 279390084, "indices": [3, 16], "id_str": "279390084", "screen_name": "YourAnonNews", "name": "Anonymous"}], "hashtags": [{"indices": [18, 27], "text": "Ferguson"}], "urls": [{"url": "http://t.co/vNKRseUwuS", "indices": [139, 140], "expanded_url": "http://bit.ly/1pCu6Hy", "display_url": "bit.ly/1pCu6Hy"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 322, "id_str": "501064201256071168", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "#Ferguson pigs are out of control, using curfew as an excuse to pull people from parked vehicles and brutalize them http://t.co/vNKRseUwuS", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501051790696398853, "favorite_count": 178, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [0, 9], "text": "Ferguson"}], "urls": [{"url": "http://t.co/vNKRseUwuS", "indices": [116, 138], "expanded_url": "http://bit.ly/1pCu6Hy", "display_url": "bit.ly/1pCu6Hy"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 322, "id_str": "501051790696398853", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 279390084, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468932380565057536/fs_8C5q-.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/715985177395261441/ad0f_tAp_normal.jpg", "profile_sidebar_fill_color": "FFFFFF", "entities": {"description": {"urls": []}}, "followers_count": 1618169, "profile_sidebar_border_color": "FFFFFF", "id_str": "279390084", "profile_background_color": "000000", "listed_count": 16528, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 145114, "description": "Signal boost for Anonymous operations, resistance movements, & journalism. #Teridax2032", "friends_count": 1105, "location": "Right behind you.", "profile_link_color": "000000", "profile_image_url": "http://pbs.twimg.com/profile_images/715985177395261441/ad0f_tAp_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/279390084/1459539143", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468932380565057536/fs_8C5q-.jpeg", "screen_name": "YourAnonNews", "lang": "en", "profile_background_tile": false, "favourites_count": 4036, "name": "Anonymous", "notifications": false, "url": null, "created_at": "Sat Apr 09 05:10:37 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:03:50 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 558774130, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/581887640/iouc02jy4zmdx75jkm1j.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522516695026388992/stTTaSBa_normal.jpeg", "profile_sidebar_fill_color": "C0DFEC", "entities": {"description": {"urls": []}}, "followers_count": 202, "profile_sidebar_border_color": "A8C7F7", "id_str": "558774130", "profile_background_color": "0827F5", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 4053, "description": "A Foreign Breed,\nWith A Celibate Attitude : Artist/Singer/Songwriter \nStay Tuned... #TrillOnly", "friends_count": 296, "location": "Enigmatic Cloud 9", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/522516695026388992/stTTaSBa_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/558774130/1368153559", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/581887640/iouc02jy4zmdx75jkm1j.jpeg", "screen_name": "Katyria90", "lang": "en", "profile_background_tile": false, "favourites_count": 590, "name": "Katyria", "notifications": false, "url": null, "created_at": "Fri Apr 20 16:37:24 +0000 2012", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @Clarknt67: #MikeBrown law @wethepeople petition asking police to carry cameras surpassed 100K signatures yesterday #Ferguson https://t.\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064201503113216, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 97273575, "indices": [3, 13], "id_str": "97273575", "screen_name": "Clarknt67", "name": "Scott Wooledge"}, {"id": 369507958, "indices": [30, 42], "id_str": "369507958", "screen_name": "wethepeople", "name": "We the People"}], "hashtags": [{"indices": [15, 25], "text": "MikeBrown"}, {"indices": [119, 128], "text": "Ferguson"}], "urls": [{"url": "https://t.co/jY5T7JXA8W", "indices": [139, 140], "expanded_url": "https://petitions.whitehouse.gov/petition/mike-brown-law-requires-all-state-county-and-local-police-wear-camera/8tlS5czf", "display_url": "petitions.whitehouse.gov/petition/mike-\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 18, "id_str": "501064201503113216", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "#MikeBrown law @wethepeople petition asking police to carry cameras surpassed 100K signatures yesterday #Ferguson https://t.co/jY5T7JXA8W", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501043603180113920, "favorite_count": 7, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 369507958, "indices": [15, 27], "id_str": "369507958", "screen_name": "wethepeople", "name": "We the People"}], "hashtags": [{"indices": [0, 10], "text": "MikeBrown"}, {"indices": [104, 113], "text": "Ferguson"}], "urls": [{"url": "https://t.co/jY5T7JXA8W", "indices": [114, 137], "expanded_url": "https://petitions.whitehouse.gov/petition/mike-brown-law-requires-all-state-county-and-local-police-wear-camera/8tlS5czf", "display_url": "petitions.whitehouse.gov/petition/mike-\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 18, "id_str": "501043603180113920", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 97273575, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/443957429588348928/Yl1L35Ma.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731976346784677888/7MrAXxUL_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/N2qVyM9dpt", "indices": [0, 23], "expanded_url": "http://memeographs.com", "display_url": "memeographs.com"}]}, "description": {"urls": []}}, "followers_count": 8898, "profile_sidebar_border_color": "FFFFFF", "id_str": "97273575", "profile_background_color": "709397", "listed_count": 444, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 135089, "description": "The mind behind @memeographs. Topics: politics, TV, LGBT & human rights, liberal. I'm @CorvieTheBully's human assistant. Blocked by @joenbc & @RyanTAnd!", "friends_count": 4137, "location": "Brooklyn, Baby!", "profile_link_color": "FF3300", "profile_image_url": "http://pbs.twimg.com/profile_images/731976346784677888/7MrAXxUL_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/97273575/1446418293", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/443957429588348928/Yl1L35Ma.jpeg", "screen_name": "Clarknt67", "lang": "en", "profile_background_tile": false, "favourites_count": 66085, "name": "Scott Wooledge", "notifications": false, "url": "https://t.co/N2qVyM9dpt", "created_at": "Wed Dec 16 19:34:22 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 16:31:18 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2477475030, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/730567181109473280/iXMEEhEd_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/L74gbiskXB", "indices": [0, 22], "expanded_url": "http://www.citizenmodern.org", "display_url": "citizenmodern.org"}]}, "description": {"urls": []}}, "followers_count": 151, "profile_sidebar_border_color": "C0DEED", "id_str": "2477475030", "profile_background_color": "C0DEED", "listed_count": 7, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 2460, "description": "Entrepreneur, herbalist, futurist, anarcho-communist, vegan, activist.", "friends_count": 675, "location": "Little Rock, AR", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/730567181109473280/iXMEEhEd_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2477475030/1399429082", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "bennharr", "lang": "en", "profile_background_tile": false, "favourites_count": 1898, "name": "Ben Harrison", "notifications": false, "url": "http://t.co/L74gbiskXB", "created_at": "Sun May 04 22:31:56 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @MCHammer: Father the people are weary, I ask that you send healing,comfort and a renewing of the Spirit and allow them to rest tonight.\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064202295848960, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 6273552, "indices": [3, 12], "id_str": "6273552", "screen_name": "MCHammer", "name": "MC HAMMER"}], "hashtags": [{"indices": [139, 140], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 114, "id_str": "501064202295848960", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Father the people are weary, I ask that you send healing,comfort and a renewing of the Spirit and allow them to rest tonight.\ud83d\ude4f #Ferguson", "is_quote_status": false, "in_reply_to_status_id": 500869440347467776, "id": 500871035416109056, "favorite_count": 127, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [127, 136], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": "MCHammer", "in_reply_to_user_id": 6273552, "retweet_count": 114, "id_str": "500871035416109056", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 6273552, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/733398284442566657/bO2715cR_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/5wB2jdo6MX", "indices": [0, 23], "expanded_url": "http://www.alchemistmgmt.com", "display_url": "alchemistmgmt.com"}]}, "description": {"urls": []}}, "followers_count": 3624239, "profile_sidebar_border_color": "EEEEEE", "id_str": "6273552", "profile_background_color": "131516", "listed_count": 14733, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 60412, "description": "OAKLANDFIGHTCLUB IIIXX OPUS #WeGottaDoBetter #DontGo #BlackRose #StillWater #LoveIsLove #DubNation #RaiderNation #A's #MakeitWhip #BeMe #StreetsIsReady #Kurious", "friends_count": 68966, "location": "Bay Area #GoldenState ", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/733398284442566657/bO2715cR_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6273552/1456376063", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "MCHammer", "lang": "en", "profile_background_tile": true, "favourites_count": 28816, "name": "MC HAMMER", "notifications": false, "url": "https://t.co/5wB2jdo6MX", "created_at": "Wed May 23 22:50:33 +0000 2007", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "6273552", "lang": "en", "created_at": "Sun Aug 17 05:05:35 +0000 2014", "in_reply_to_status_id_str": "500869440347467776", "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 81674839, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/513826592020115456/Tml8bWAh_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 41, "profile_sidebar_border_color": "C0DEED", "id_str": "81674839", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 1284, "description": "", "friends_count": 284, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/513826592020115456/Tml8bWAh_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Blackberryccr", "lang": "en", "profile_background_tile": false, "favourites_count": 1221, "name": "Mrs. Big Dogg", "notifications": false, "url": null, "created_at": "Sun Oct 11 20:11:48 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @YourAnonGlobal: Darren Wilson is somewhere enjoying his liberty, while the community is under curfew and Mike Brown vilified. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064202380115971, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1381926373, "indices": [3, 18], "id_str": "1381926373", "screen_name": "YourAnonGlobal", "name": "Anonymous"}], "hashtags": [{"indices": [130, 139], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 190, "id_str": "501064202380115971", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Darren Wilson is somewhere enjoying his liberty, while the community is under curfew and Mike Brown vilified. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501036443028819969, "favorite_count": 97, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [110, 119], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 190, "id_str": "501036443028819969", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1381926373, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/523889799711563777/7ksdSuLA.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675024492301787143/Arw7TdJE_normal.png", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/n5iRP3jDxE", "indices": [0, 23], "expanded_url": "http://anonymousglobal-news.blogspot.com", "display_url": "anonymousglobal-news.blogspot.com"}]}, "description": {"urls": []}}, "followers_count": 123756, "profile_sidebar_border_color": "FFFFFF", "id_str": "1381926373", "profile_background_color": "131516", "listed_count": 929, "is_translation_enabled": false, "utc_offset": 32400, "statuses_count": 46596, "description": "Reporting on Anonymous & worldwide operations, news, IT, occupy movements, and freedom of speech from around the world. Back-up: @YourAnonGlobal2. SLY Team.", "friends_count": 1160, "location": "The Internet", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/675024492301787143/Arw7TdJE_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1381926373/1461260773", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/523889799711563777/7ksdSuLA.jpeg", "screen_name": "YourAnonGlobal", "lang": "ko", "profile_background_tile": true, "favourites_count": 4298, "name": "Anonymous", "notifications": false, "url": "https://t.co/n5iRP3jDxE", "created_at": "Fri Apr 26 13:27:49 +0000 2013", "contributors_enabled": false, "time_zone": "Seoul", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 16:02:51 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 15968617, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459773689115181057/yrnbu-n3_normal.jpeg", "profile_sidebar_fill_color": "F6F6F6", "entities": {"description": {"urls": []}}, "followers_count": 6091, "profile_sidebar_border_color": "EEEEEE", "id_str": "15968617", "profile_background_color": "ACDED6", "listed_count": 329, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 230775, "description": "planetary activist Twitter Freedom Fighter one heart, one mind, one world. Human rights global. in memory of Mo Nabbous, Mandiba, & Grandfather Commanda", "friends_count": 5301, "location": "", "profile_link_color": "041585", "profile_image_url": "http://pbs.twimg.com/profile_images/459773689115181057/yrnbu-n3_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15968617/1398453656", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "screen_name": "bebird", "lang": "en", "profile_background_tile": false, "favourites_count": 44618, "name": "bebird", "notifications": false, "url": null, "created_at": "Sun Aug 24 13:12:49 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Ferguson Erupts Again as Protests Turn to\u00a0Violence http://t.co/HyayJJTZK8", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064202794971136, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/HyayJJTZK8", "indices": [51, 73], "expanded_url": "http://wp.me/p4Rl2x-4NE", "display_url": "wp.me/p4Rl2x-4NE"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064202794971136", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "\u041e\u043b\u0435\u0433 \u0421\u043b\u0430\u0432\u0438\u043d", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @thehill: Rep. John Lewis: Ferguson 'looked like it was in Baghdad' http://t.co/YFYA1N8spU by @PeterSullivan4", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064202904403970, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1917731, "indices": [3, 11], "id_str": "1917731", "screen_name": "thehill", "name": "The Hill"}, {"id": 369534928, "indices": [97, 112], "id_str": "369534928", "screen_name": "PeterSullivan4", "name": "Peter Sullivan"}], "hashtags": [], "urls": [{"url": "http://t.co/YFYA1N8spU", "indices": [71, 93], "expanded_url": "http://ow.ly/ApAEH", "display_url": "ow.ly/ApAEH"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 46, "id_str": "501064202904403970", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Rep. John Lewis: Ferguson 'looked like it was in Baghdad' http://t.co/YFYA1N8spU by @PeterSullivan4", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501038267715051521, "favorite_count": 9, "source": "Hootsuite", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 369534928, "indices": [84, 99], "id_str": "369534928", "screen_name": "PeterSullivan4", "name": "Peter Sullivan"}], "hashtags": [], "urls": [{"url": "http://t.co/YFYA1N8spU", "indices": [58, 80], "expanded_url": "http://ow.ly/ApAEH", "display_url": "ow.ly/ApAEH"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 46, "id_str": "501038267715051521", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1917731, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "profile_sidebar_fill_color": "EBEBEB", "entities": {"url": {"urls": [{"url": "http://t.co/t414UtTRv4", "indices": [0, 22], "expanded_url": "http://www.thehill.com", "display_url": "thehill.com"}]}, "description": {"urls": []}}, "followers_count": 747989, "profile_sidebar_border_color": "ADADAA", "id_str": "1917731", "profile_background_color": "9AE4E8", "listed_count": 16660, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 190708, "description": "The Hill is the premier source for policy and political news. Follow for tweets on what's happening in Washington, breaking news and retweets of our reporters.", "friends_count": 489, "location": "Washington, DC", "profile_link_color": "FF0021", "profile_image_url": "http://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1917731/1434034905", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "screen_name": "thehill", "lang": "en", "profile_background_tile": true, "favourites_count": 26, "name": "The Hill", "notifications": false, "url": "http://t.co/t414UtTRv4", "created_at": "Thu Mar 22 18:15:18 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 16:10:06 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 356854246, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/326168892/Untitled-1.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1508349029/twitter_drmoore_normal.jpg", "profile_sidebar_fill_color": "FFFFFF", "entities": {"url": {"urls": [{"url": "https://t.co/wEFhj9v0rp", "indices": [0, 23], "expanded_url": "https://u.osu.edu/moore.1408/", "display_url": "u.osu.edu/moore.1408/"}]}, "description": {"urls": []}}, "followers_count": 4888, "profile_sidebar_border_color": "FFFFFF", "id_str": "356854246", "profile_background_color": "A8A8A8", "listed_count": 278, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 60562, "description": "EHE Distinguished Professor and Executive Director, Todd Anthony Bell National Resource Center on the African American Male, The Ohio State University", "friends_count": 2314, "location": "Columbus, Ohio", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/1508349029/twitter_drmoore_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/356854246/1398356470", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/326168892/Untitled-1.jpg", "screen_name": "DrJLMooreIII", "lang": "en", "profile_background_tile": false, "favourites_count": 32385, "name": "James L. Moore III", "notifications": false, "url": "https://t.co/wEFhj9v0rp", "created_at": "Wed Aug 17 13:38:08 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "@queerdorable THANK YOU !!!! \n#Ferguson\n #StandWithFerguson\n #HandsUpDontShoot\n #JusticeForMikeBrown", "is_quote_status": false, "in_reply_to_status_id": 501063920187346945, "id": 501064203135102977, "favorite_count": 1, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 2984310527, "indices": [0, 13], "id_str": "2984310527", "screen_name": "queerdorable", "name": "saved"}], "hashtags": [{"indices": [30, 39], "text": "Ferguson"}, {"indices": [41, 59], "text": "StandWithFerguson"}, {"indices": [61, 78], "text": "HandsUpDontShoot"}, {"indices": [80, 100], "text": "JusticeForMikeBrown"}], "urls": []}, "in_reply_to_screen_name": "aestheticsless", "in_reply_to_user_id": 198641855, "retweet_count": 0, "id_str": "501064203135102977", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 17719592, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/758191631/184bc7d83fac0b1a92cd266fd87c1520.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/723387140281749509/jNLzq5hm_normal.jpg", "profile_sidebar_fill_color": "FFFFFF", "entities": {"url": {"urls": [{"url": "http://t.co/tDKkfDnW2o", "indices": [0, 22], "expanded_url": "http://favstar.fm/users/kavn", "display_url": "favstar.fm/users/kavn"}]}, "description": {"urls": []}}, "followers_count": 4453, "profile_sidebar_border_color": "FFFFFF", "id_str": "17719592", "profile_background_color": "131516", "listed_count": 447, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 168011, "description": "Just me.", "friends_count": 4174, "location": "", "profile_link_color": "F0163A", "profile_image_url": "http://pbs.twimg.com/profile_images/723387140281749509/jNLzq5hm_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17719592/1458290036", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/758191631/184bc7d83fac0b1a92cd266fd87c1520.jpeg", "screen_name": "kavn", "lang": "en", "profile_background_tile": false, "favourites_count": 29417, "name": "kavn", "notifications": false, "url": "http://t.co/tDKkfDnW2o", "created_at": "Fri Nov 28 21:05:34 +0000 2008", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "198641855", "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": "501063920187346945", "place": null} {"contributors": null, "truncated": false, "text": "RT @3ChicsPolitico: I don't apologize for my blackness... Y'all got that? #FergusonShooting #Ferguson. http://t.co/FzVA1M9GRN", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064203508412416, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 237606548, "indices": [3, 18], "id_str": "237606548", "screen_name": "3ChicsPolitico", "name": "3ChicsPolitico"}], "hashtags": [{"indices": [74, 91], "text": "FergusonShooting"}, {"indices": [92, 101], "text": "Ferguson"}], "urls": [], "media": [{"source_user_id": 237606548, "source_status_id_str": "500295570393542657", "expanded_url": "http://twitter.com/3ChicsPolitico/status/500295570393542657/photo/1", "display_url": "pic.twitter.com/FzVA1M9GRN", "url": "http://t.co/FzVA1M9GRN", "media_url_https": "https://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg", "source_user_id_str": "237606548", "source_status_id": 500295570393542657, "id_str": "500295567960838145", "sizes": {"large": {"h": 500, "resize": "fit", "w": 500}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 500, "resize": "fit", "w": 500}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [103, 125], "type": "photo", "id": 500295567960838145, "media_url": "http://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 617, "id_str": "501064203508412416", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "I don't apologize for my blackness... Y'all got that? #FergusonShooting #Ferguson. http://t.co/FzVA1M9GRN", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500295570393542657, "favorite_count": 443, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [54, 71], "text": "FergusonShooting"}, {"indices": [72, 81], "text": "Ferguson"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/3ChicsPolitico/status/500295570393542657/photo/1", "display_url": "pic.twitter.com/FzVA1M9GRN", "url": "http://t.co/FzVA1M9GRN", "media_url_https": "https://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg", "id_str": "500295567960838145", "sizes": {"large": {"h": 500, "resize": "fit", "w": 500}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 500, "resize": "fit", "w": 500}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [83, 105], "type": "photo", "id": 500295567960838145, "media_url": "http://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 617, "id_str": "500295570393542657", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 237606548, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000176927017/5UWWDyTH.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731710638355976193/zdcQQemN_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/MhJwa9lnC1", "indices": [0, 22], "expanded_url": "http://www.3chicspolitico.com", "display_url": "3chicspolitico.com"}]}, "description": {"urls": [{"url": "http://t.co/SL7BhuMyvB", "indices": [51, 73], "expanded_url": "http://3ChicsPolitico.com", "display_url": "3ChicsPolitico.com"}]}}, "followers_count": 5782, "profile_sidebar_border_color": "FFFFFF", "id_str": "237606548", "profile_background_color": "C0DEED", "listed_count": 265, "is_translation_enabled": false, "utc_offset": -36000, "statuses_count": 193931, "description": "Ametia, Rikyrah & SouthernGirl2 invite you to join http://t.co/SL7BhuMyvB on grand adventures in the world of politics, culture, humor, music, & the spiritual", "friends_count": 1089, "location": "Best Place In America!", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/731710638355976193/zdcQQemN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/237606548/1401422776", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000176927017/5UWWDyTH.jpeg", "screen_name": "3ChicsPolitico", "lang": "en", "profile_background_tile": true, "favourites_count": 42068, "name": "3ChicsPolitico", "notifications": false, "url": "http://t.co/MhJwa9lnC1", "created_at": "Thu Jan 13 06:08:14 +0000 2011", "contributors_enabled": false, "time_zone": "Hawaii", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Fri Aug 15 14:58:53 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/3ChicsPolitico/status/500295570393542657/photo/1", "display_url": "pic.twitter.com/FzVA1M9GRN", "url": "http://t.co/FzVA1M9GRN", "media_url_https": "https://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg", "id_str": "500295567960838145", "sizes": {"large": {"h": 500, "resize": "fit", "w": 500}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 500, "resize": "fit", "w": 500}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [83, 105], "type": "photo", "id": 500295567960838145, "media_url": "http://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 364194053, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/655350941915287552/NWu9jfkh.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/708656133100146688/0bDf9bPX_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 2153, "profile_sidebar_border_color": "FFFFFF", "id_str": "364194053", "profile_background_color": "3B94D9", "listed_count": 116, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 213800, "description": "Conquer, Immortal, Kendra Saunders's personal street harasser, villain supreme, slayer of fake Egyptians, most evil beard in the DCTV Universe", "friends_count": 901, "location": "In all history, past & present", "profile_link_color": "020F14", "profile_image_url": "http://pbs.twimg.com/profile_images/708656133100146688/0bDf9bPX_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/364194053/1457799528", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/655350941915287552/NWu9jfkh.jpg", "screen_name": "ArrogantDemon", "lang": "en", "profile_background_tile": true, "favourites_count": 3212, "name": "Dr. Curtis Knox", "notifications": false, "url": null, "created_at": "Mon Aug 29 11:00:51 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 237606548, "source_status_id_str": "500295570393542657", "expanded_url": "http://twitter.com/3ChicsPolitico/status/500295570393542657/photo/1", "display_url": "pic.twitter.com/FzVA1M9GRN", "url": "http://t.co/FzVA1M9GRN", "media_url_https": "https://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg", "source_user_id_str": "237606548", "source_status_id": 500295570393542657, "id_str": "500295567960838145", "sizes": {"large": {"h": 500, "resize": "fit", "w": 500}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 500, "resize": "fit", "w": 500}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [103, 125], "type": "photo", "id": 500295567960838145, "media_url": "http://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @elonjames: With just donations from YOU we got to #Ferguson and provided better coverage than major news spaces. Real #BLACKMEDIA is he\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064204288540672, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1716581, "indices": [3, 13], "id_str": "1716581", "screen_name": "elonjames", "name": "Elon James White"}], "hashtags": [{"indices": [54, 63], "text": "Ferguson"}, {"indices": [122, 133], "text": "BLACKMEDIA"}, {"indices": [139, 140], "text": "TWIBnation"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 43, "id_str": "501064204288540672", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "With just donations from YOU we got to #Ferguson and provided better coverage than major news spaces. Real #BLACKMEDIA is here. #TWIBnation", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501053587422580736, "favorite_count": 32, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [39, 48], "text": "Ferguson"}, {"indices": [107, 118], "text": "BLACKMEDIA"}, {"indices": [128, 139], "text": "TWIBnation"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 43, "id_str": "501053587422580736", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 1716581, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/728891037108862976/zBW3Q2rq_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/GCl3FkrIQR", "indices": [0, 23], "expanded_url": "http://elonjameswhite.com", "display_url": "elonjameswhite.com"}]}, "description": {"urls": [{"url": "https://t.co/N0eThiOpQN", "indices": [29, 52], "expanded_url": "http://www.ThisWeekInBlackness.com", "display_url": "ThisWeekInBlackness.com"}]}}, "followers_count": 61770, "profile_sidebar_border_color": "EEEEEE", "id_str": "1716581", "profile_background_color": "131516", "listed_count": 2546, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 108633, "description": "CEO, @TWIBNation. Publisher, https://t.co/N0eThiOpQN, Media Dir. @netroots_nation. Writer. Professionally funny. Press+Bookings: ejw.biz@twib.me", "friends_count": 670, "location": "Oakland, CA", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/728891037108862976/zBW3Q2rq_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1716581/1420076174", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "elonjames", "lang": "en", "profile_background_tile": true, "favourites_count": 8828, "name": "Elon James White", "notifications": false, "url": "https://t.co/GCl3FkrIQR", "created_at": "Wed Mar 21 05:53:23 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:10:59 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 161904722, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/546547179947831296/l0KEjrUY_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/G18zOYo157", "indices": [0, 22], "expanded_url": "http://www.bdsinsight.com", "display_url": "bdsinsight.com"}]}, "description": {"urls": [{"url": "http://t.co/wqSOWWZkY5", "indices": [131, 153], "expanded_url": "http://youtu.be/IrFio4krAdE", "display_url": "youtu.be/IrFio4krAdE"}]}}, "followers_count": 553, "profile_sidebar_border_color": "C0DEED", "id_str": "161904722", "profile_background_color": "C0DEED", "listed_count": 25, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 5202, "description": "Work @saintanselm @bdsinsight Columnist @nhbr McNair/Fulbright alum Ed transforms; faith & family fortify Tweets mine not theirs http://t.co/wqSOWWZkY5", "friends_count": 1290, "location": "MHT & NYC", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/546547179947831296/l0KEjrUY_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/161904722/1354417201", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "profbrady", "lang": "en", "profile_background_tile": false, "favourites_count": 3670, "name": "Loretta L. C. Brady", "notifications": false, "url": "http://t.co/G18zOYo157", "created_at": "Fri Jul 02 02:48:25 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @BloombergNews: America's poor population is growing twice as fast in suburbs than in cities: http://t.co/c68E0RzdJh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064204661850113, "favorite_count": 0, "source": "RoundTeam", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/c68E0RzdJh", "indices": [97, 119], "expanded_url": "http://bloom.bg/1nXRRoo", "display_url": "bloom.bg/1nXRRoo"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 109, "id_str": "501064204661850113", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "America's poor population is growing twice as fast in suburbs than in cities: http://t.co/c68E0RzdJh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063904341266432, "favorite_count": 33, "source": "Hootsuite", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/c68E0RzdJh", "indices": [78, 100], "expanded_url": "http://bloom.bg/1nXRRoo", "display_url": "bloom.bg/1nXRRoo"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 109, "id_str": "501063904341266432", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 34713362, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/544322097833467904/1fjpNCr9.jpeg", "verified": true, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714946924105883648/4fgNVF4H_normal.jpg", "profile_sidebar_fill_color": "EEEEEE", "entities": {"url": {"urls": [{"url": "http://t.co/YFISwy1upH", "indices": [0, 22], "expanded_url": "http://www.bloomberg.com", "display_url": "bloomberg.com"}]}, "description": {"urls": []}}, "followers_count": 3167475, "profile_sidebar_border_color": "DADADA", "id_str": "34713362", "profile_background_color": "101112", "listed_count": 39168, "is_translation_enabled": true, "utc_offset": -14400, "statuses_count": 150030, "description": "The first word in business news.", "friends_count": 754, "location": "New York and the World", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/714946924105883648/4fgNVF4H_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/34713362/1418609243", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/544322097833467904/1fjpNCr9.jpeg", "screen_name": "business", "lang": "en", "profile_background_tile": true, "favourites_count": 292, "name": "Bloomberg", "notifications": false, "url": "http://t.co/YFISwy1upH", "created_at": "Thu Apr 23 20:05:17 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:51:58 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": true, "id": 18270633, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_sidebar_fill_color": "FFFFFF", "entities": {"description": {"urls": []}}, "followers_count": 559, "profile_sidebar_border_color": "EEEEEE", "id_str": "18270633", "profile_background_color": "B2DFDA", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 347666, "description": "", "friends_count": 289, "location": "", "profile_link_color": "93A644", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "screen_name": "ahhthatswhy", "lang": "en", "profile_background_tile": false, "favourites_count": 32, "name": "interestingnews", "notifications": false, "url": null, "created_at": "Sat Dec 20 18:56:46 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @Thatindianbruh: 2 Eye Witnesses. 1 Story. Fuck everything that the media telling you bout the #Ferguson case. This is the facts. http:/\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064204989001728, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 90296594, "indices": [3, 18], "id_str": "90296594", "screen_name": "Thatindianbruh", "name": "Mr. Patel"}], "hashtags": [{"indices": [98, 107], "text": "Ferguson"}], "urls": [], "media": [{"source_user_id": 90296594, "source_status_id_str": "501051914218668032", "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "source_user_id_str": "90296594", "source_status_id": 501051914218668032, "id_str": "501051913505624066", "sizes": {"small": {"h": 492, "resize": "fit", "w": 340}, "large": {"h": 869, "resize": "fit", "w": 600}, "medium": {"h": 869, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10371, "id_str": "501064204989001728", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "2 Eye Witnesses. 1 Story. Fuck everything that the media telling you bout the #Ferguson case. This is the facts. http://t.co/NjN9AF7AFP", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501051914218668032, "favorite_count": 4867, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [78, 87], "text": "Ferguson"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "id_str": "501051913505624066", "sizes": {"small": {"h": 492, "resize": "fit", "w": 340}, "large": {"h": 869, "resize": "fit", "w": 600}, "medium": {"h": 869, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [113, 135], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10371, "id_str": "501051914218668032", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 90296594, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676981908/5039c47ca9aaf1f1f1ace58c9c465d16.jpeg", "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666174215796715520/r531di_H_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": {"description": {"urls": []}}, "followers_count": 8733, "profile_sidebar_border_color": "000000", "id_str": "90296594", "profile_background_color": "1D1D1B", "listed_count": 142, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 56174, "description": "You know who I am.", "friends_count": 1137, "location": "ATL", "profile_link_color": "2BC1C4", "profile_image_url": "http://pbs.twimg.com/profile_images/666174215796715520/r531di_H_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/90296594/1459289391", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676981908/5039c47ca9aaf1f1f1ace58c9c465d16.jpeg", "screen_name": "Thatindianbruh", "lang": "en", "profile_background_tile": false, "favourites_count": 7163, "name": "Mr. Patel", "notifications": false, "url": null, "created_at": "Mon Nov 16 01:45:23 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:04:20 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "id_str": "501051913505624066", "sizes": {"small": {"h": 492, "resize": "fit", "w": 340}, "large": {"h": 869, "resize": "fit", "w": 600}, "medium": {"h": 869, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [113, 135], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 144939767, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/751618102/97d5f6724863e9fa0c190504be74180d.jpeg", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722152450149466113/uQlbwX4P_normal.jpg", "profile_sidebar_fill_color": "7AC3EE", "entities": {"description": {"urls": []}}, "followers_count": 1814, "profile_sidebar_border_color": "FFFFFF", "id_str": "144939767", "profile_background_color": "F8F5FA", "listed_count": 13, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 59911, "description": "18. ldn.", "friends_count": 1163, "location": "", "profile_link_color": "FF0088", "profile_image_url": "http://pbs.twimg.com/profile_images/722152450149466113/uQlbwX4P_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/144939767/1462310718", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/751618102/97d5f6724863e9fa0c190504be74180d.jpeg", "screen_name": "Laurenleah_", "lang": "en", "profile_background_tile": true, "favourites_count": 595, "name": "rich caramel", "notifications": false, "url": null, "created_at": "Mon May 17 18:21:48 +0000 2010", "contributors_enabled": false, "time_zone": "Amsterdam", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 90296594, "source_status_id_str": "501051914218668032", "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "source_user_id_str": "90296594", "source_status_id": 501051914218668032, "id_str": "501051913505624066", "sizes": {"small": {"h": 492, "resize": "fit", "w": 340}, "large": {"h": 869, "resize": "fit", "w": 600}, "medium": {"h": 869, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg"}]}} {"contributors": null, "truncated": false, "text": "Missouri Gov. distraught with Michael Brown video release. Says it made emotions raw, unfair to his family. http://t.co/CKccFakFe5 #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064205089665024, "favorite_count": 14, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [131, 140], "text": "Ferguson"}], "urls": [{"url": "http://t.co/CKccFakFe5", "indices": [108, 130], "expanded_url": "http://trib.al/8Qzi8RB", "display_url": "trib.al/8Qzi8RB"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 35, "id_str": "501064205089665024", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 2884771, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/251616259/20110510_twitter.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/565191389495844864/levM32NJ_normal.png", "profile_sidebar_fill_color": "F2F2F2", "entities": {"url": {"urls": [{"url": "https://t.co/92gD7evE72", "indices": [0, 23], "expanded_url": "http://www.newsweek.com", "display_url": "newsweek.com"}]}, "description": {"urls": []}}, "followers_count": 2857589, "profile_sidebar_border_color": "FFFFFF", "id_str": "2884771", "profile_background_color": "EE2A26", "listed_count": 35820, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 74133, "description": "Newsweek brings you the top news and analysis on politics, science, technology, and culture.", "friends_count": 65, "location": "New York, NY", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/565191389495844864/levM32NJ_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/251616259/20110510_twitter.gif", "screen_name": "Newsweek", "lang": "en", "profile_background_tile": true, "favourites_count": 2194, "name": "Newsweek", "notifications": false, "url": "https://t.co/92gD7evE72", "created_at": "Thu Mar 29 19:51:11 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @bryancrumpler: This is America... THIS! #Ferguson Tired of all the BS stats on intrinsic criminality among blk ppl. #CrimeButNoTime htt\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064205400039424, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 935015863, "indices": [3, 17], "id_str": "935015863", "screen_name": "bryancrumpler", "name": "Bryan A. Crumpler"}], "hashtags": [{"indices": [44, 53], "text": "Ferguson"}, {"indices": [120, 135], "text": "CrimeButNoTime"}], "urls": [], "media": [{"source_user_id": 935015863, "source_status_id_str": "501011628448841728", "expanded_url": "http://twitter.com/bryancrumpler/status/501011628448841728/photo/1", "display_url": "pic.twitter.com/mXfDCk3363", "url": "http://t.co/mXfDCk3363", "media_url_https": "https://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg", "source_user_id_str": "935015863", "source_status_id": 501011628448841728, "id_str": "501011618734833664", "sizes": {"large": {"h": 720, "resize": "fit", "w": 720}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501011618734833664, "media_url": "http://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5419, "id_str": "501064205400039424", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "This is America... THIS! #Ferguson Tired of all the BS stats on intrinsic criminality among blk ppl. #CrimeButNoTime http://t.co/mXfDCk3363", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501011628448841728, "favorite_count": 2701, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [25, 34], "text": "Ferguson"}, {"indices": [101, 116], "text": "CrimeButNoTime"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/bryancrumpler/status/501011628448841728/photo/1", "display_url": "pic.twitter.com/mXfDCk3363", "url": "http://t.co/mXfDCk3363", "media_url_https": "https://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg", "id_str": "501011618734833664", "sizes": {"large": {"h": 720, "resize": "fit", "w": 720}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [117, 139], "type": "photo", "id": 501011618734833664, "media_url": "http://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5419, "id_str": "501011628448841728", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 935015863, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/706010261/7cea91606be43866289d80e36ee3959d.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2823671163/7f2afa1d7caa4614ac86819fffe76bb0_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/G42zMU8I", "indices": [0, 20], "expanded_url": "http://www.whosthatguy.com", "display_url": "whosthatguy.com"}]}, "description": {"urls": [{"url": "http://t.co/I05Bx3kNk7", "indices": [63, 85], "expanded_url": "http://crumpler.bandcamp.com", "display_url": "crumpler.bandcamp.com"}, {"url": "http://t.co/cbxcE8mSDP", "indices": [86, 108], "expanded_url": "http://soundcloud.com/crumpler", "display_url": "soundcloud.com/crumpler"}]}}, "followers_count": 379, "profile_sidebar_border_color": "000000", "id_str": "935015863", "profile_background_color": "291B07", "listed_count": 12, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 1528, "description": "Clarinetist, Chamber Musician, Composer, Educator, Translator http://t.co/I05Bx3kNk7\nhttp://t.co/cbxcE8mSDP", "friends_count": 684, "location": "", "profile_link_color": "569CED", "profile_image_url": "http://pbs.twimg.com/profile_images/2823671163/7f2afa1d7caa4614ac86819fffe76bb0_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/935015863/1352396893", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/706010261/7cea91606be43866289d80e36ee3959d.jpeg", "screen_name": "bryancrumpler", "lang": "en", "profile_background_tile": false, "favourites_count": 947, "name": "Bryan A. Crumpler", "notifications": false, "url": "http://t.co/G42zMU8I", "created_at": "Thu Nov 08 17:29:06 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 14:24:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/bryancrumpler/status/501011628448841728/photo/1", "display_url": "pic.twitter.com/mXfDCk3363", "url": "http://t.co/mXfDCk3363", "media_url_https": "https://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg", "id_str": "501011618734833664", "sizes": {"large": {"h": 720, "resize": "fit", "w": 720}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [117, 139], "type": "photo", "id": 501011618734833664, "media_url": "http://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 61408763, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/641039269/iz6yxgfz5ewbq6avb4mk.jpeg", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684414048163725312/BgBCZwUt_normal.jpg", "profile_sidebar_fill_color": "7AC3EE", "entities": {"description": {"urls": []}}, "followers_count": 280, "profile_sidebar_border_color": "65B0DA", "id_str": "61408763", "profile_background_color": "05191C", "listed_count": 14, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 10334, "description": "Colombian, 19", "friends_count": 182, "location": "", "profile_link_color": "9A25E8", "profile_image_url": "http://pbs.twimg.com/profile_images/684414048163725312/BgBCZwUt_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/61408763/1355450454", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/641039269/iz6yxgfz5ewbq6avb4mk.jpeg", "screen_name": "KiaraVillegass", "lang": "en", "profile_background_tile": true, "favourites_count": 440, "name": "Kiara Villegas", "notifications": false, "url": null, "created_at": "Thu Jul 30 06:09:44 +0000 2009", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 935015863, "source_status_id_str": "501011628448841728", "expanded_url": "http://twitter.com/bryancrumpler/status/501011628448841728/photo/1", "display_url": "pic.twitter.com/mXfDCk3363", "url": "http://t.co/mXfDCk3363", "media_url_https": "https://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg", "source_user_id_str": "935015863", "source_status_id": 501011628448841728, "id_str": "501011618734833664", "sizes": {"large": {"h": 720, "resize": "fit", "w": 720}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501011618734833664, "media_url": "http://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @NatJackEsq: I believe Ferguson's citizens when they say Police Chief Jackson's Police Department has a history of civil rights violatio\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064206666702848, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "501064206666702848", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "I believe Ferguson's citizens when they say Police Chief Jackson's Police Department has a history of civil rights violations. (1 of 2)", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062223096446976, "favorite_count": 6, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "501062223096446976", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 33747408, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692792034135031808/aPZT5MPm_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": {"description": {"urls": []}}, "followers_count": 9938, "profile_sidebar_border_color": "829D5E", "id_str": "33747408", "profile_background_color": "352726", "listed_count": 157, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 14938, "description": "Author. Re-tweets may be endorsements or disparagements.Don't understand meaning of a tweet? Ask be4 misinterpreting. #BlackLivesMatter", "friends_count": 1123, "location": "Orlando, Florida ", "profile_link_color": "D02B55", "profile_image_url": "http://pbs.twimg.com/profile_images/692792034135031808/aPZT5MPm_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/33747408/1416460228", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "screen_name": "NatJackTweets", "lang": "en", "profile_background_tile": false, "favourites_count": 4520, "name": "Natalie Jackson", "notifications": false, "url": null, "created_at": "Tue Apr 21 01:04:48 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:45:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 349699173, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/846853763/ccd475f2caf55a6c8887f3ebe1b71bd8.png", "verified": false, "profile_text_color": "7A747D", "profile_image_url_https": "https://pbs.twimg.com/profile_images/516657556865818624/9p8wtlsd_normal.jpeg", "profile_sidebar_fill_color": "C8A8C5", "entities": {"description": {"urls": []}}, "followers_count": 197, "profile_sidebar_border_color": "E5CFC8", "id_str": "349699173", "profile_background_color": "3E5E5C", "listed_count": 15, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 3243, "description": "Political analyst, thought leader and foodie. Making sense of the madness and in search of great food!", "friends_count": 327, "location": "Atlanta", "profile_link_color": "8D5085", "profile_image_url": "http://pbs.twimg.com/profile_images/516657556865818624/9p8wtlsd_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/349699173/1412015775", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/846853763/ccd475f2caf55a6c8887f3ebe1b71bd8.png", "screen_name": "junelegal", "lang": "en", "profile_background_tile": true, "favourites_count": 32, "name": "RealityCheck", "notifications": false, "url": null, "created_at": "Sat Aug 06 15:02:37 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @brookandthecity: People demand the presence of celebs opinions on Ferguson. They speak out, and if it's not what you want, you're \"outr\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064207274868736, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 19459404, "indices": [3, 19], "id_str": "19459404", "screen_name": "brookandthecity", "name": "Brook Lynne Carter"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501064207274868736", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "People demand the presence of celebs opinions on Ferguson. They speak out, and if it's not what you want, you're \"outraged\".", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501029750958465025, "favorite_count": 3, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501029750958465025", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 19459404, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/870327148/e0e01950f0d75fa46c1fdedb81783bee.jpeg", "verified": false, "profile_text_color": "E6105F", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668726102593028097/U0CEAAh5_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 27767, "profile_sidebar_border_color": "FFFFFF", "id_str": "19459404", "profile_background_color": "C6E2EE", "listed_count": 572, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 257110, "description": "Fake radio personality. Real bartender. True writer.", "friends_count": 936, "location": "Atlanta by way of the Bay Area", "profile_link_color": "999092", "profile_image_url": "http://pbs.twimg.com/profile_images/668726102593028097/U0CEAAh5_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19459404/1432224853", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/870327148/e0e01950f0d75fa46c1fdedb81783bee.jpeg", "screen_name": "brookandthecity", "lang": "en", "profile_background_tile": true, "favourites_count": 66, "name": "Brook Lynne Carter", "notifications": false, "url": null, "created_at": "Sat Jan 24 19:29:05 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 15:36:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 76223193, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/101897503/Twitpic.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652920849167740929/jJcqIbEI_normal.jpg", "profile_sidebar_fill_color": "F3F3F3", "entities": {"url": {"urls": [{"url": "http://t.co/Z6XLbzy71u", "indices": [0, 22], "expanded_url": "http://thoughtsoftamar.WordPress.com", "display_url": "thoughtsoftamar.WordPress.com"}]}, "description": {"urls": []}}, "followers_count": 2386, "profile_sidebar_border_color": "DFDFDF", "id_str": "76223193", "profile_background_color": "EBEBEB", "listed_count": 50, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 289240, "description": "I'm high off of life, the flight is free! #EAGLES #Uptown #Teamchocolate #Team262 #TeamMastersDegree #TeamHighlyEducated IG/Snapchat::MsTamarShawnice", "friends_count": 885, "location": "Uptown", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/652920849167740929/jJcqIbEI_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/76223193/1414504121", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/101897503/Twitpic.jpg", "screen_name": "MsTamarShawnice", "lang": "en", "profile_background_tile": true, "favourites_count": 384, "name": "\u2764\ufe0f\ufe0fThe Therapist\u2652\ufe0f\u2764\ufe0f", "notifications": false, "url": "http://t.co/Z6XLbzy71u", "created_at": "Tue Sep 22 02:13:39 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Federal autopsy of Michael Brown ordered as unrest in Ferguson rises - Los Angeles Times: ABC NewsFederal auto... http://t.co/E5SfUKngo0", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064207387742210, "favorite_count": 0, "source": "twitterfeed", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E5SfUKngo0", "indices": [114, 136], "expanded_url": "http://bit.ly/1t7X2IC", "display_url": "bit.ly/1t7X2IC"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064207387742210", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2459920208, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/556346456181723136/Xx8jB-aQ.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458999677396848640/8NG7ZYdF_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/lhPKjPsSrk", "indices": [0, 23], "expanded_url": "https://www.facebook.com/feedsynbot", "display_url": "facebook.com/feedsynbot"}]}, "description": {"urls": []}}, "followers_count": 1568, "profile_sidebar_border_color": "FFFFFF", "id_str": "2459920208", "profile_background_color": "C0DEED", "listed_count": 592, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 730610, "description": ":: feed syndication bot ::", "friends_count": 7, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/458999677396848640/8NG7ZYdF_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2459920208/1398284846", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/556346456181723136/Xx8jB-aQ.jpeg", "screen_name": "feedsynbot", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "feedsynbot", "notifications": false, "url": "https://t.co/lhPKjPsSrk", "created_at": "Wed Apr 23 15:52:01 +0000 2014", "contributors_enabled": false, "time_zone": "Athens", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @AnonyCrypt: A beautifully relevant quote let it speak for us all #Ferguson http://t.co/XzmbT0uzSB", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064207824351232, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 394969362, "indices": [3, 14], "id_str": "394969362", "screen_name": "AnonyCrypt", "name": "Anonymous|Operations"}], "hashtags": [{"indices": [69, 78], "text": "Ferguson"}], "urls": [], "media": [{"source_user_id": 394969362, "source_status_id_str": "500950781424848897", "expanded_url": "http://twitter.com/AnonyCrypt/status/500950781424848897/photo/1", "display_url": "pic.twitter.com/XzmbT0uzSB", "url": "http://t.co/XzmbT0uzSB", "media_url_https": "https://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg", "source_user_id_str": "394969362", "source_status_id": 500950781424848897, "id_str": "500950779872948225", "sizes": {"large": {"h": 690, "resize": "fit", "w": 534}, "small": {"h": 439, "resize": "fit", "w": 340}, "medium": {"h": 690, "resize": "fit", "w": 534}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [79, 101], "type": "photo", "id": 500950779872948225, "media_url": "http://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2113, "id_str": "501064207824351232", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "A beautifully relevant quote let it speak for us all #Ferguson http://t.co/XzmbT0uzSB", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500950781424848897, "favorite_count": 1476, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [53, 62], "text": "Ferguson"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/AnonyCrypt/status/500950781424848897/photo/1", "display_url": "pic.twitter.com/XzmbT0uzSB", "url": "http://t.co/XzmbT0uzSB", "media_url_https": "https://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg", "id_str": "500950779872948225", "sizes": {"large": {"h": 690, "resize": "fit", "w": 534}, "small": {"h": 439, "resize": "fit", "w": 340}, "medium": {"h": 690, "resize": "fit", "w": 534}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [63, 85], "type": "photo", "id": 500950779872948225, "media_url": "http://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2113, "id_str": "500950781424848897", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 394969362, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/633192308498821120/h5haJAzf.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683676060458692614/EqczuVme_normal.jpg", "profile_sidebar_fill_color": "F6F6F6", "entities": {"url": {"urls": [{"url": "https://t.co/qYOpdMwVaA", "indices": [0, 23], "expanded_url": "https://anoninsiders.net", "display_url": "anoninsiders.net"}]}, "description": {"urls": []}}, "followers_count": 8656, "profile_sidebar_border_color": "000000", "id_str": "394969362", "profile_background_color": "131516", "listed_count": 196, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 12758, "description": "Official Twitter account for AnonInsiders and international Anonymous Operations.", "friends_count": 236, "location": "International", "profile_link_color": "DF0101", "profile_image_url": "http://pbs.twimg.com/profile_images/683676060458692614/EqczuVme_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/394969362/1420431061", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/633192308498821120/h5haJAzf.png", "screen_name": "AnonyCrypt", "lang": "en", "profile_background_tile": true, "favourites_count": 2004, "name": "Anonymous|Operations", "notifications": false, "url": "https://t.co/qYOpdMwVaA", "created_at": "Thu Oct 20 22:33:34 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 10:22:28 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/AnonyCrypt/status/500950781424848897/photo/1", "display_url": "pic.twitter.com/XzmbT0uzSB", "url": "http://t.co/XzmbT0uzSB", "media_url_https": "https://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg", "id_str": "500950779872948225", "sizes": {"large": {"h": 690, "resize": "fit", "w": 534}, "small": {"h": 439, "resize": "fit", "w": 340}, "medium": {"h": 690, "resize": "fit", "w": 534}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [63, 85], "type": "photo", "id": 500950779872948225, "media_url": "http://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 377869140, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "verified": false, "profile_text_color": "634047", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662651024910508032/ZmmpwHz-_normal.jpg", "profile_sidebar_fill_color": "E3E2DE", "entities": {"url": {"urls": [{"url": "https://t.co/a1arb3DQi1", "indices": [0, 23], "expanded_url": "http://www.riotactmusic.co.uk", "display_url": "riotactmusic.co.uk"}]}, "description": {"urls": []}}, "followers_count": 138, "profile_sidebar_border_color": "D3D2CF", "id_str": "377869140", "profile_background_color": "EDECE9", "listed_count": 5, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 3305, "description": "One day I'll fall in love with someone like my ears did with Hip Hop. Drummer, MC @Riot_Act_uk. Love me some footy. LFC.", "friends_count": 101, "location": "England", "profile_link_color": "088253", "profile_image_url": "http://pbs.twimg.com/profile_images/662651024910508032/ZmmpwHz-_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/377869140/1435484817", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "screen_name": "BobbyClashBeat", "lang": "en", "profile_background_tile": false, "favourites_count": 1100, "name": "Bobby", "notifications": false, "url": "https://t.co/a1arb3DQi1", "created_at": "Thu Sep 22 07:41:37 +0000 2011", "contributors_enabled": false, "time_zone": "London", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 394969362, "source_status_id_str": "500950781424848897", "expanded_url": "http://twitter.com/AnonyCrypt/status/500950781424848897/photo/1", "display_url": "pic.twitter.com/XzmbT0uzSB", "url": "http://t.co/XzmbT0uzSB", "media_url_https": "https://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg", "source_user_id_str": "394969362", "source_status_id": 500950781424848897, "id_str": "500950779872948225", "sizes": {"large": {"h": 690, "resize": "fit", "w": 534}, "small": {"h": 439, "resize": "fit", "w": 340}, "medium": {"h": 690, "resize": "fit", "w": 534}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [79, 101], "type": "photo", "id": 500950779872948225, "media_url": "http://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg"}]}} {"contributors": null, "truncated": false, "text": "Photos: Ferguson officer Darren Wilson earned police honor before fatal shooting http://t.co/fYRW1MPhl9", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064208277319680, "favorite_count": 0, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/fYRW1MPhl9", "indices": [81, 103], "expanded_url": "http://ift.tt/1rEOvdo", "display_url": "ift.tt/1rEOvdo"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064208277319680", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2335960920, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/432706003285450752/IHK6C475_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/86ve2qrUtH", "indices": [0, 22], "expanded_url": "http://news.google.com", "display_url": "news.google.com"}]}, "description": {"urls": []}}, "followers_count": 471, "profile_sidebar_border_color": "C0DEED", "id_str": "2335960920", "profile_background_color": "C0DEED", "listed_count": 64, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 122009, "description": "Breaking news, updates and tips from Google News.", "friends_count": 147, "location": "Mountain View, CA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/432706003285450752/IHK6C475_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "ggnewsus", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Google News US", "notifications": false, "url": "http://t.co/86ve2qrUtH", "created_at": "Mon Feb 10 02:29:55 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "US #US_News Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far: FERGUSON, Mo.\u2014After an... http://t.co/xsO3TwGoms", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064208562135042, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [3, 11], "text": "US_News"}], "urls": [{"url": "http://t.co/xsO3TwGoms", "indices": [111, 133], "expanded_url": "http://dlvr.it/6dqn2r", "display_url": "dlvr.it/6dqn2r"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064208562135042", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 410566588, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1637070938/denim_3_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/OmlpZ603GY", "indices": [0, 22], "expanded_url": "http://www.lisanya.de", "display_url": "lisanya.de"}]}, "description": {"urls": []}}, "followers_count": 574, "profile_sidebar_border_color": "C0DEED", "id_str": "410566588", "profile_background_color": "C0DEED", "listed_count": 153, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 309577, "description": "Qi-Gong Thai-Chi Yoga Kampfsport Meditation Karate China Buddhismus Taoismus", "friends_count": 300, "location": "stuttgart", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1637070938/denim_3_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "WaltherKrickl", "lang": "de", "profile_background_tile": false, "favourites_count": 1, "name": "walther krickl", "notifications": false, "url": "http://t.co/OmlpZ603GY", "created_at": "Sat Nov 12 08:09:16 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @kimodonnel: The week in photos from #Ferguson: extraordinary journalism via @STLtoday\nhttp://t.co/fFnwv6HHVt", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064208789045248, "favorite_count": 0, "source": "Twitter for Android Tablets", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 14140694, "indices": [3, 14], "id_str": "14140694", "screen_name": "kimodonnel", "name": "Kim O'Donnel"}, {"id": 6039302, "indices": [80, 89], "id_str": "6039302", "screen_name": "stltoday", "name": "STLtoday"}], "hashtags": [{"indices": [40, 49], "text": "Ferguson"}], "urls": [{"url": "http://t.co/fFnwv6HHVt", "indices": [90, 112], "expanded_url": "http://bit.ly/1BqADdq", "display_url": "bit.ly/1BqADdq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501064208789045248", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The week in photos from #Ferguson: extraordinary journalism via @STLtoday\nhttp://t.co/fFnwv6HHVt", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501054002964856832, "favorite_count": 3, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 6039302, "indices": [64, 73], "id_str": "6039302", "screen_name": "stltoday", "name": "STLtoday"}], "hashtags": [{"indices": [24, 33], "text": "Ferguson"}], "urls": [{"url": "http://t.co/fFnwv6HHVt", "indices": [74, 96], "expanded_url": "http://bit.ly/1BqADdq", "display_url": "bit.ly/1BqADdq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501054002964856832", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 14140694, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2004680091/miniheadshotz_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/gCEdCI4xO6", "indices": [0, 22], "expanded_url": "http://www.kimodonnel.com", "display_url": "kimodonnel.com"}]}, "description": {"urls": []}}, "followers_count": 5821, "profile_sidebar_border_color": "C0DEED", "id_str": "14140694", "profile_background_color": "C0DEED", "listed_count": 459, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 8392, "description": "Author, PNW VEG (Sasquatch), May 2017. Eco-food enthusiast, curious cook, wordsmith.", "friends_count": 3711, "location": "Seattle, Wash.", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/2004680091/miniheadshotz_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "kimodonnel", "lang": "en", "profile_background_tile": false, "favourites_count": 945, "name": "Kim O'Donnel", "notifications": false, "url": "http://t.co/gCEdCI4xO6", "created_at": "Thu Mar 13 16:52:34 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:12:38 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 122387181, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/757543110/Img18_-_Copy_-_Copy_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/xHom25jHbv", "indices": [0, 22], "expanded_url": "http://evangelismexplosion.org/wp-content/uploads/3219816-English-Tract.pdf", "display_url": "evangelismexplosion.org/wp-content/upl\u2026"}]}, "description": {"urls": []}}, "followers_count": 375, "profile_sidebar_border_color": "C0DEED", "id_str": "122387181", "profile_background_color": "C0DEED", "listed_count": 13, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 8811, "description": "Conservative Christian Constitutionalist::::\nThe purpose of our written Constitution was to act as \u201cchains to bind the mischief of government.\u201d ~T. Jefferson", "friends_count": 1964, "location": "Guntersville Lake, AL", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/757543110/Img18_-_Copy_-_Copy_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/122387181/1369083152", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Mark_Rehm", "lang": "en", "profile_background_tile": false, "favourites_count": 25, "name": "Mark E. Rehm", "notifications": false, "url": "http://t.co/xHom25jHbv", "created_at": "Fri Mar 12 14:42:39 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @dierdrelewis: Mass murderers not injured while surrendering. #Ferguson http://t.co/ocsICFGPAb @Opferguson #justiceformikebrown #RIPMike\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064209551994881, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 51330975, "indices": [3, 16], "id_str": "51330975", "screen_name": "dierdrelewis", "name": "Trayvon Martin"}, {"id": 2721777926, "indices": [98, 109], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson"}], "hashtags": [{"indices": [65, 74], "text": "Ferguson"}, {"indices": [110, 130], "text": "justiceformikebrown"}, {"indices": [131, 140], "text": "RIPMikeBrown"}], "urls": [], "media": [{"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034203795456", "sizes": {"large": {"h": 559, "resize": "fit", "w": 400}, "small": {"h": 475, "resize": "fit", "w": 340}, "medium": {"h": 559, "resize": "fit", "w": 400}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 501056034203795456, "media_url": "http://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 288, "id_str": "501064209551994881", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Mass murderers not injured while surrendering. #Ferguson http://t.co/ocsICFGPAb @Opferguson #justiceformikebrown #RIPMikeBrown", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501061000892645376, "favorite_count": 122, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 2721777926, "indices": [80, 91], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson"}], "hashtags": [{"indices": [47, 56], "text": "Ferguson"}, {"indices": [92, 112], "text": "justiceformikebrown"}, {"indices": [113, 126], "text": "RIPMikeBrown"}], "urls": [], "media": [{"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034203795456", "sizes": {"large": {"h": 559, "resize": "fit", "w": 400}, "small": {"h": 475, "resize": "fit", "w": 340}, "medium": {"h": 559, "resize": "fit", "w": 400}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [57, 79], "type": "photo", "id": 501056034203795456, "media_url": "http://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 288, "id_str": "501061000892645376", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 51330975, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "verified": false, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/526618256375689216/0BMLlFNS_normal.png", "profile_sidebar_fill_color": "95E8EC", "entities": {"url": {"urls": [{"url": "http://t.co/VCb7i3Lh9T", "indices": [0, 22], "expanded_url": "http://trayvonmartinfoundation.org", "display_url": "trayvonmartinfoundation.org"}]}, "description": {"urls": [{"url": "http://t.co/lkAAfk2rH5", "indices": [23, 45], "expanded_url": "http://trayvonmartinfoundation.org", "display_url": "trayvonmartinfoundation.org"}]}}, "followers_count": 6785, "profile_sidebar_border_color": "5ED4DC", "id_str": "51330975", "profile_background_color": "0099B9", "listed_count": 302, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 140349, "description": "The Official Website | http://t.co/lkAAfk2rH5 |\r\nThe Trayvon Martin Foundation c/o The Miami Foundation 200 S Biscayne Boulevard Ste 505 Miami, FL 33131", "friends_count": 4943, "location": "", "profile_link_color": "0099B9", "profile_image_url": "http://pbs.twimg.com/profile_images/526618256375689216/0BMLlFNS_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/51330975/1398785602", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "screen_name": "dierdrelewis", "lang": "en", "profile_background_tile": false, "favourites_count": 2472, "name": "Trayvon Martin", "notifications": false, "url": "http://t.co/VCb7i3Lh9T", "created_at": "Sat Jun 27 03:24:34 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:40:26 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034203795456", "sizes": {"large": {"h": 559, "resize": "fit", "w": 400}, "small": {"h": 475, "resize": "fit", "w": 340}, "medium": {"h": 559, "resize": "fit", "w": 400}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [57, 79], "type": "photo", "id": 501056034203795456, "media_url": "http://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg"}, {"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvFIMAICbkQ.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034170220546", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 270, "resize": "fit", "w": 480}, "medium": {"h": 270, "resize": "fit", "w": 480}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [57, 79], "type": "photo", "id": 501056034170220546, "media_url": "http://pbs.twimg.com/media/BvQbzvFIMAICbkQ.jpg"}, {"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvOIgAAbrFr.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034207989760", "sizes": {"large": {"h": 500, "resize": "fit", "w": 400}, "small": {"h": 425, "resize": "fit", "w": 340}, "medium": {"h": 500, "resize": "fit", "w": 400}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [57, 79], "type": "photo", "id": 501056034207989760, "media_url": "http://pbs.twimg.com/media/BvQbzvOIgAAbrFr.jpg"}, {"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzwpIYAAaaCK.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034589663232", "sizes": {"small": {"h": 400, "resize": "fit", "w": 273}, "large": {"h": 400, "resize": "fit", "w": 273}, "medium": {"h": 400, "resize": "fit", "w": 273}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [57, 79], "type": "photo", "id": 501056034589663232, "media_url": "http://pbs.twimg.com/media/BvQbzwpIYAAaaCK.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 1944063499, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714864590044143616/XykomS15_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 549, "profile_sidebar_border_color": "C0DEED", "id_str": "1944063499", "profile_background_color": "C0DEED", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 8829, "description": "Rest is for billionaires", "friends_count": 426, "location": "Gym ", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/714864590044143616/XykomS15_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1944063499/1463298064", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "joe_abi12", "lang": "en", "profile_background_tile": false, "favourites_count": 15976, "name": "Joe", "notifications": false, "url": null, "created_at": "Mon Oct 07 12:58:25 +0000 2013", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034203795456", "sizes": {"large": {"h": 559, "resize": "fit", "w": 400}, "small": {"h": 475, "resize": "fit", "w": 340}, "medium": {"h": 559, "resize": "fit", "w": 400}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 501056034203795456, "media_url": "http://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg"}, {"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvFIMAICbkQ.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034170220546", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 270, "resize": "fit", "w": 480}, "medium": {"h": 270, "resize": "fit", "w": 480}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 501056034170220546, "media_url": "http://pbs.twimg.com/media/BvQbzvFIMAICbkQ.jpg"}, {"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvOIgAAbrFr.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034207989760", "sizes": {"large": {"h": 500, "resize": "fit", "w": 400}, "small": {"h": 425, "resize": "fit", "w": 340}, "medium": {"h": 500, "resize": "fit", "w": 400}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 501056034207989760, "media_url": "http://pbs.twimg.com/media/BvQbzvOIgAAbrFr.jpg"}, {"source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzwpIYAAaaCK.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034589663232", "sizes": {"small": {"h": 400, "resize": "fit", "w": 273}, "large": {"h": 400, "resize": "fit", "w": 273}, "medium": {"h": 400, "resize": "fit", "w": 273}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 501056034589663232, "media_url": "http://pbs.twimg.com/media/BvQbzwpIYAAaaCK.jpg"}]}} {"contributors": null, "truncated": false, "text": "1 shot, 7 arrested in #Ferguson unrest as #police seek to enforce curfew - Aug 17 @ 1:52 PM ET http://t.co/n9BJDEojG3", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064209648848896, "favorite_count": 0, "source": "Crime News Updates", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [22, 31], "text": "Ferguson"}, {"indices": [42, 49], "text": "police"}], "urls": [{"url": "http://t.co/n9BJDEojG3", "indices": [95, 117], "expanded_url": "http://pulpnews.com/c/i.php?id=1657912410", "display_url": "pulpnews.com/c/i.php?id=165\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064209648848896", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 100986964, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/478687798245859330/xW-zJmuU.jpeg", "verified": false, "profile_text_color": "0066CC", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478705015041712128/BpM9m5yT_normal.jpeg", "profile_sidebar_fill_color": "FFFFFF", "entities": {"url": {"urls": [{"url": "http://t.co/M6Ch3yBNB5", "indices": [0, 22], "expanded_url": "http://pulpnews.com", "display_url": "pulpnews.com"}]}, "description": {"urls": []}}, "followers_count": 4029, "profile_sidebar_border_color": "000000", "id_str": "100986964", "profile_background_color": "000000", "listed_count": 773, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 2289049, "description": "The Fastest Crime News Updates on the Planet! Are you a news-a-holic? We have your fix right here.", "friends_count": 921, "location": "USA", "profile_link_color": "CE0000", "profile_image_url": "http://pbs.twimg.com/profile_images/478705015041712128/BpM9m5yT_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/100986964/1402968635", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/478687798245859330/xW-zJmuU.jpeg", "screen_name": "PulpNews", "lang": "en", "profile_background_tile": true, "favourites_count": 37, "name": "PulpNews Crime", "notifications": false, "url": "http://t.co/M6Ch3yBNB5", "created_at": "Fri Jan 01 14:32:20 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Saddened by a future lost and worried about future losses #Ferguson #MichaelBrown", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064210395037696, "favorite_count": 1, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [58, 67], "text": "Ferguson"}, {"indices": [68, 81], "text": "MichaelBrown"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064210395037696", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 716950758, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/550164620359397377/1duQAuCE.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/643584312424574976/f9QypWaM_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"description": {"urls": []}}, "followers_count": 236, "profile_sidebar_border_color": "000000", "id_str": "716950758", "profile_background_color": "DD2E44", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 1981, "description": "Sun Devil, sports fan, tan.", "friends_count": 346, "location": "AZ", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/643584312424574976/f9QypWaM_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/716950758/1456552160", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/550164620359397377/1duQAuCE.jpeg", "screen_name": "Amber_42", "lang": "en", "profile_background_tile": false, "favourites_count": 2151, "name": "Amber Nicole", "notifications": false, "url": null, "created_at": "Wed Jul 25 23:12:31 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @djenuff: Keke Palmer in Ferguson? - http://t.co/AQku88AjPF @kekepalmer by @toreshitup", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064210693230592, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 16621413, "indices": [3, 11], "id_str": "16621413", "screen_name": "djenuff", "name": "DJ Enuff"}, {"id": 29860364, "indices": [65, 76], "id_str": "29860364", "screen_name": "KekePalmer", "name": "Keke Palmer"}], "hashtags": [], "urls": [{"url": "http://t.co/AQku88AjPF", "indices": [41, 63], "expanded_url": "http://tinyurl.com/kzvxyzz", "display_url": "tinyurl.com/kzvxyzz"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "501064210693230592", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Keke Palmer in Ferguson? - http://t.co/AQku88AjPF @kekepalmer by @toreshitup", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501053964725780480, "favorite_count": 2, "source": "enuff word press", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 29860364, "indices": [52, 63], "id_str": "29860364", "screen_name": "KekePalmer", "name": "Keke Palmer"}], "hashtags": [], "urls": [{"url": "http://t.co/AQku88AjPF", "indices": [28, 50], "expanded_url": "http://tinyurl.com/kzvxyzz", "display_url": "tinyurl.com/kzvxyzz"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "501053964725780480", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 16621413, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/529613730384863232/VYcPcPIJ_normal.png", "profile_sidebar_fill_color": "C0DFEC", "entities": {"url": {"urls": [{"url": "https://t.co/WUamN8F1D4", "indices": [0, 23], "expanded_url": "http://www.thatsenuff.com", "display_url": "thatsenuff.com"}]}, "description": {"urls": []}}, "followers_count": 363783, "profile_sidebar_border_color": "A8C7F7", "id_str": "16621413", "profile_background_color": "022330", "listed_count": 2232, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 133604, "description": "I love music. I dislike music business. #HeavyHitters #Hot97 #NewAt2 #ThatsEnuff #Shade45 #WBLS", "friends_count": 2253, "location": "Brooklyn, NY", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/529613730384863232/VYcPcPIJ_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16621413/1449244162", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "screen_name": "djenuff", "lang": "en", "profile_background_tile": false, "favourites_count": 658, "name": "DJ Enuff", "notifications": false, "url": "https://t.co/WUamN8F1D4", "created_at": "Mon Oct 06 22:21:06 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "et", "created_at": "Sun Aug 17 17:12:28 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 481606532, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000053175859/21557a7c84167d1e182cf65fb9e373fb.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657295486383181824/2a9ksnBP_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/Ih5tPdsP1V", "indices": [0, 23], "expanded_url": "https://m.soundcloud.com/rob-stashiz", "display_url": "m.soundcloud.com/rob-stashiz"}]}, "description": {"urls": []}}, "followers_count": 1235, "profile_sidebar_border_color": "000000", "id_str": "481606532", "profile_background_color": "768085", "listed_count": 46, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 55586, "description": "Forward Is My Progress! Raw Deal Squad Ent., Mobile DJ For Bookings djcozrds@gmail.com", "friends_count": 1903, "location": "PHILLY", "profile_link_color": "B00000", "profile_image_url": "http://pbs.twimg.com/profile_images/657295486383181824/2a9ksnBP_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/481606532/1458237912", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000053175859/21557a7c84167d1e182cf65fb9e373fb.jpeg", "screen_name": "REEMTHEDREAM215", "lang": "en", "profile_background_tile": true, "favourites_count": 9382, "name": "DJ COZ \u264c", "notifications": false, "url": "https://t.co/Ih5tPdsP1V", "created_at": "Thu Feb 02 23:54:25 +0000 2012", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "et", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @jack: I'm not from Ferguson. I was proudly born & raised in St. Louis City. All of St. Louis should come together as one for #Ferguson.\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064210840035329, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 12, "indices": [3, 8], "id_str": "12", "screen_name": "jack", "name": "Jack"}, {"id": 16332522, "indices": [143, 144], "id_str": "16332522", "screen_name": "MayorSlay", "name": "MayorSlay.com"}], "hashtags": [{"indices": [133, 142], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 758, "id_str": "501064210840035329", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "I'm not from Ferguson. I was proudly born & raised in St. Louis City. All of St. Louis should come together as one for #Ferguson. @MayorSlay", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501020862339112960, "favorite_count": 714, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 16332522, "indices": [134, 144], "id_str": "16332522", "screen_name": "MayorSlay", "name": "MayorSlay.com"}], "hashtags": [{"indices": [123, 132], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 758, "id_str": "501020862339112960", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 12, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668328458519384064/FSAIjKRl_normal.jpg", "profile_sidebar_fill_color": "F3F3F3", "entities": {"description": {"urls": []}}, "followers_count": 3586479, "profile_sidebar_border_color": "DFDFDF", "id_str": "12", "profile_background_color": "EBEBEB", "listed_count": 26228, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 19615, "description": "#withMalala!", "friends_count": 1969, "location": "California, USA", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/668328458519384064/FSAIjKRl_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "screen_name": "jack", "lang": "en", "profile_background_tile": false, "favourites_count": 12917, "name": "Jack", "notifications": false, "url": null, "created_at": "Tue Mar 21 20:50:14 +0000 2006", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 15:00:56 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 16787108, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/638457536186748933/s8s8uvqn.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718810242373390336/gkDMUu-y_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/FaUdABlYy9", "indices": [0, 23], "expanded_url": "http://www.heidicullinan.com", "display_url": "heidicullinan.com"}]}, "description": {"urls": []}}, "followers_count": 4398, "profile_sidebar_border_color": "FFFFFF", "id_str": "16787108", "profile_background_color": "F4F6F7", "listed_count": 194, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 57539, "description": "Author of LGBTQ romance, keeper of many allergies, defier of labels, professional amazon. She/her. #TrueBuckaroo", "friends_count": 638, "location": "Iowa", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/718810242373390336/gkDMUu-y_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16787108/1459369586", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/638457536186748933/s8s8uvqn.jpg", "screen_name": "heidicullinan", "lang": "en", "profile_background_tile": false, "favourites_count": 25670, "name": "Heidi Cullinan", "notifications": false, "url": "https://t.co/FaUdABlYy9", "created_at": "Wed Oct 15 16:58:56 +0000 2008", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @mg_lasquadra: This->Hamptons Po Chief Walks Off With $400K Worth Of Unused Sick Days\n\nGuy in #Ferguson gets killed 4 a box of cigs\n\nhtt\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064212547137536, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 278143425, "indices": [3, 16], "id_str": "278143425", "screen_name": "mg_lasquadra", "name": "Patrick-apolis"}], "hashtags": [{"indices": [100, 109], "text": "Ferguson"}], "urls": [{"url": "http://t.co/uM7C8yJ8fK", "indices": [142, 143], "expanded_url": "http://gothamist.com/2014/08/17/hamptons_police_chief_walks_off_wit.php", "display_url": "gothamist.com/2014/08/17/ham\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "501064212547137536", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "This->Hamptons Po Chief Walks Off With $400K Worth Of Unused Sick Days\n\nGuy in #Ferguson gets killed 4 a box of cigs\n\nhttp://t.co/uM7C8yJ8fK", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063871692812288, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [82, 91], "text": "Ferguson"}], "urls": [{"url": "http://t.co/uM7C8yJ8fK", "indices": [121, 143], "expanded_url": "http://gothamist.com/2014/08/17/hamptons_police_chief_walks_off_wit.php", "display_url": "gothamist.com/2014/08/17/ham\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "501063871692812288", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 278143425, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731499132989276164/p8H4sdXP_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 121, "profile_sidebar_border_color": "C0DEED", "id_str": "278143425", "profile_background_color": "C0DEED", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 2923, "description": "The mg Company Limited Super Sport Model - 612, since 1960 \u201cIt\u2019s not the years, honey. It\u2019s the mileage.\u201d", "friends_count": 126, "location": "Bike City USA - Minneapolis", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/731499132989276164/p8H4sdXP_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/278143425/1355000636", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "mg_lasquadra", "lang": "en", "profile_background_tile": false, "favourites_count": 643, "name": "Patrick-apolis", "notifications": false, "url": null, "created_at": "Wed Apr 06 18:00:22 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:51:50 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 226176050, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/553055804/Miami_Beach_night.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671534779096031232/MmoCQAIl_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/iVrKwI1RR8", "indices": [0, 23], "expanded_url": "http://KommercialKings.com", "display_url": "KommercialKings.com"}]}, "description": {"urls": []}}, "followers_count": 8381, "profile_sidebar_border_color": "C0DEED", "id_str": "226176050", "profile_background_color": "C0DEED", "listed_count": 19, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 13966, "description": "Kommercial Kings - The Hottest, Professional Kommercials in the World! For inquiries call 954-931-3745 or email: KommercialKings1@gmail.com", "friends_count": 2090, "location": "Global", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/671534779096031232/MmoCQAIl_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/226176050/1385319309", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/553055804/Miami_Beach_night.jpg", "screen_name": "KommercialKings", "lang": "en", "profile_background_tile": true, "favourites_count": 797, "name": "KommercialKings", "notifications": false, "url": "https://t.co/iVrKwI1RR8", "created_at": "Mon Dec 13 14:27:06 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @conchienchia: .@NelsonBocaranda y que dir\u00e0n los apatridas como t\u00f9 d esta forma d combatir disturbios sociales en #Ferguson? http://t.co\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064213843169280, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 415855797, "indices": [3, 16], "id_str": "415855797", "screen_name": "conchienchia", "name": "Chino' Viamonte"}, {"id": 23719107, "indices": [19, 35], "id_str": "23719107", "screen_name": "nelsonbocaranda", "name": "Nelson Bocaranda S."}], "hashtags": [{"indices": [117, 126], "text": "Ferguson"}], "urls": [], "media": [{"source_user_id": 415855797, "source_status_id_str": "501064028039684096", "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "source_user_id_str": "415855797", "source_status_id": 501064028039684096, "id_str": "501064025825087488", "sizes": {"large": {"h": 319, "resize": "fit", "w": 457}, "small": {"h": 237, "resize": "fit", "w": 340}, "medium": {"h": 319, "resize": "fit", "w": 457}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 33, "id_str": "501064213843169280", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": ".@NelsonBocaranda y que dir\u00e0n los apatridas como t\u00f9 d esta forma d combatir disturbios sociales en #Ferguson? http://t.co/nIBbnLO5Gh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064028039684096, "favorite_count": 3, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 23719107, "indices": [1, 17], "id_str": "23719107", "screen_name": "nelsonbocaranda", "name": "Nelson Bocaranda S."}], "hashtags": [{"indices": [99, 108], "text": "Ferguson"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "id_str": "501064025825087488", "sizes": {"large": {"h": 319, "resize": "fit", "w": 457}, "small": {"h": 237, "resize": "fit", "w": 340}, "medium": {"h": 319, "resize": "fit", "w": 457}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [110, 132], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 33, "id_str": "501064028039684096", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 415855797, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722956968630079488/yf_NfQjM_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 17785, "profile_sidebar_border_color": "C0DEED", "id_str": "415855797", "profile_background_color": "C0DEED", "listed_count": 67, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 29943, "description": "primero, ser humano, despuesAbogado,militante revolucionario,agroproductor, 18 a\u00f1os comprometido con el proyecto SIM\u00d3N BOLIVAR.", "friends_count": 19522, "location": "alg\u00fan lugar de venezuela", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/722956968630079488/yf_NfQjM_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/415855797/1461201322", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "conchienchia", "lang": "es", "profile_background_tile": false, "favourites_count": 65, "name": "Chino' Viamonte", "notifications": false, "url": null, "created_at": "Fri Nov 18 22:24:49 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:52:28 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "id_str": "501064025825087488", "sizes": {"large": {"h": 319, "resize": "fit", "w": 457}, "small": {"h": 237, "resize": "fit", "w": 340}, "medium": {"h": 319, "resize": "fit", "w": 457}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [110, 132], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 113457313, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/252427474/vistaaerea7.JPG", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/706548836337111040/RlfN7IE9_normal.jpg", "profile_sidebar_fill_color": "97AFBD", "entities": {"description": {"urls": [{"url": "https://t.co/Ms1g16bsMz", "indices": [30, 53], "expanded_url": "http://www.acreditate.com.ve", "display_url": "acreditate.com.ve"}]}}, "followers_count": 1120, "profile_sidebar_border_color": "111517", "id_str": "113457313", "profile_background_color": "642D8B", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 10363, "description": "Trabajo,Trabajo y Mas Trabajo https://t.co/Ms1g16bsMz", "friends_count": 1952, "location": "San Cristobal Edo. Tachira", "profile_link_color": "292323", "profile_image_url": "http://pbs.twimg.com/profile_images/706548836337111040/RlfN7IE9_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/113457313/1457402778", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/252427474/vistaaerea7.JPG", "screen_name": "jersonotagle", "lang": "es", "profile_background_tile": true, "favourites_count": 845, "name": "Jerson Rodriguez.", "notifications": false, "url": null, "created_at": "Thu Feb 11 20:41:44 +0000 2010", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 415855797, "source_status_id_str": "501064028039684096", "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "source_user_id_str": "415855797", "source_status_id": 501064028039684096, "id_str": "501064025825087488", "sizes": {"large": {"h": 319, "resize": "fit", "w": 457}, "small": {"h": 237, "resize": "fit", "w": 340}, "medium": {"h": 319, "resize": "fit", "w": 457}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg"}]}} {"contributors": null, "truncated": false, "text": "US Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far: FERGUSON, Mo.\u2014After an unarmed black... http://t.co/KUw5dJfNeN", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064213951823873, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/KUw5dJfNeN", "indices": [116, 138], "expanded_url": "http://dlvr.it/6dqn5l", "display_url": "dlvr.it/6dqn5l"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064213951823873", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 223630412, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1220773654/img_0164-small_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/WbY1Y4yDbN", "indices": [0, 22], "expanded_url": "http://www.epochtimes.de", "display_url": "epochtimes.de"}]}, "description": {"urls": []}}, "followers_count": 295, "profile_sidebar_border_color": "000000", "id_str": "223630412", "profile_background_color": "C0DEED", "listed_count": 120, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 339153, "description": "l\u00e4sst hier China-News einlaufen", "friends_count": 153, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1220773654/img_0164-small_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/223630412/1363539081", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "wangadir", "lang": "de", "profile_background_tile": false, "favourites_count": 6, "name": "Erich Bachmann", "notifications": false, "url": "http://t.co/WbY1Y4yDbN", "created_at": "Mon Dec 06 22:34:19 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @PaulbernalUK: This, from @zeynep, linking net neutrality and a \u2018free\u2019 internet with #Ferguson, is outstanding. https://t.co/vmOa8qyNpy", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064214211870720, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 15082486, "indices": [3, 16], "id_str": "15082486", "screen_name": "PaulbernalUK", "name": "Paul Bernal"}, {"id": 65375759, "indices": [29, 36], "id_str": "65375759", "screen_name": "zeynep", "name": "Zeynep Tufekci"}], "hashtags": [{"indices": [88, 97], "text": "Ferguson"}], "urls": [{"url": "https://t.co/vmOa8qyNpy", "indices": [115, 138], "expanded_url": "https://medium.com/message/ferguson-is-also-a-net-neutrality-issue-6d2f3db51eb0", "display_url": "medium.com/message/fergus\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501064214211870720", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "This, from @zeynep, linking net neutrality and a \u2018free\u2019 internet with #Ferguson, is outstanding. https://t.co/vmOa8qyNpy", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063461989007360, "favorite_count": 13, "source": "OS X", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 65375759, "indices": [11, 18], "id_str": "65375759", "screen_name": "zeynep", "name": "Zeynep Tufekci"}], "hashtags": [{"indices": [70, 79], "text": "Ferguson"}], "urls": [{"url": "https://t.co/vmOa8qyNpy", "indices": [97, 120], "expanded_url": "https://medium.com/message/ferguson-is-also-a-net-neutrality-issue-6d2f3db51eb0", "display_url": "medium.com/message/fergus\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501063461989007360", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 15082486, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000726921533/0b2bebf1b649e8173cb55c1e5bcb7fb2_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/drqmU7uinM", "indices": [0, 23], "expanded_url": "http://paulbernal.wordpress.com/", "display_url": "paulbernal.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 13649, "profile_sidebar_border_color": "C0DEED", "id_str": "15082486", "profile_background_color": "C0DEED", "listed_count": 608, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 213914, "description": "UEA Law Lecturer: privacy & human rights\u2026 author of 'Internet Privacy Rights'... politics, satire, even poetry at times. Normally naive. Generally ignorant.", "friends_count": 10129, "location": "Cambridge and Norwich", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000726921533/0b2bebf1b649e8173cb55c1e5bcb7fb2_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15082486/1398332203", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "PaulbernalUK", "lang": "en", "profile_background_tile": false, "favourites_count": 120, "name": "Paul Bernal", "notifications": false, "url": "https://t.co/drqmU7uinM", "created_at": "Wed Jun 11 06:55:58 +0000 2008", "contributors_enabled": false, "time_zone": "London", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:50:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 82658160, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/889167924/6e05a48d548fcc6a2ebda6658d7ea447.jpeg", "verified": false, "profile_text_color": "2280A9", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649052181862084612/CEocHGH0_normal.png", "profile_sidebar_fill_color": "020812", "entities": {"description": {"urls": []}}, "followers_count": 472, "profile_sidebar_border_color": "2280A9", "id_str": "82658160", "profile_background_color": "020812", "listed_count": 17, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 26316, "description": "A hodge-podge of contradictions all bundled up into one fiesty little package.", "friends_count": 666, "location": "Elk Grove, CA", "profile_link_color": "17406C", "profile_image_url": "http://pbs.twimg.com/profile_images/649052181862084612/CEocHGH0_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/82658160/1428733846", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/889167924/6e05a48d548fcc6a2ebda6658d7ea447.jpeg", "screen_name": "rvan73", "lang": "en", "profile_background_tile": false, "favourites_count": 42791, "name": "TheatreKid", "notifications": false, "url": null, "created_at": "Thu Oct 15 16:46:12 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Missouri Governor Imposes Midnight Curfew in\u00a0Ferguson http://t.co/8iFzMZ7knh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064214467731457, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/8iFzMZ7knh", "indices": [54, 76], "expanded_url": "http://wp.me/p4Rl2x-4NS", "display_url": "wp.me/p4Rl2x-4NS"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064214467731457", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "\u041e\u043b\u0435\u0433 \u0421\u043b\u0430\u0432\u0438\u043d", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @scottbix: Ferguson police officers beat this man \u2013 then charged him for getting blood on their uniforms http://t.co/QqHqAVuxuz http://t\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064215160172545, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 148116121, "indices": [3, 12], "id_str": "148116121", "screen_name": "scottbix", "name": "Scott Bixby"}], "hashtags": [], "urls": [{"url": "http://t.co/QqHqAVuxuz", "indices": [108, 130], "expanded_url": "http://thebea.st/1l8uDRK", "display_url": "thebea.st/1l8uDRK"}], "media": [{"source_user_id": 148116121, "source_status_id_str": "500311689544208385", "expanded_url": "http://twitter.com/scottbix/status/500311689544208385/photo/1", "display_url": "pic.twitter.com/jpwEQOceLQ", "url": "http://t.co/jpwEQOceLQ", "media_url_https": "https://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg", "source_user_id_str": "148116121", "source_status_id": 500311689544208385, "id_str": "500311688764080129", "sizes": {"large": {"h": 500, "resize": "fit", "w": 800}, "small": {"h": 213, "resize": "fit", "w": 340}, "medium": {"h": 375, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 500311688764080129, "media_url": "http://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13559, "id_str": "501064215160172545", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Ferguson police officers beat this man \u2013 then charged him for getting blood on their uniforms http://t.co/QqHqAVuxuz http://t.co/jpwEQOceLQ", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500311689544208385, "favorite_count": 4927, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/QqHqAVuxuz", "indices": [94, 116], "expanded_url": "http://thebea.st/1l8uDRK", "display_url": "thebea.st/1l8uDRK"}], "media": [{"expanded_url": "http://twitter.com/scottbix/status/500311689544208385/photo/1", "display_url": "pic.twitter.com/jpwEQOceLQ", "url": "http://t.co/jpwEQOceLQ", "media_url_https": "https://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg", "id_str": "500311688764080129", "sizes": {"large": {"h": 500, "resize": "fit", "w": 800}, "small": {"h": 213, "resize": "fit", "w": 340}, "medium": {"h": 375, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [117, 139], "type": "photo", "id": 500311688764080129, "media_url": "http://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13559, "id_str": "500311689544208385", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 148116121, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466672362264358912/F4wovF9d.jpeg", "verified": true, "profile_text_color": "17406C", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671504247746260992/8NcwPFLx_normal.jpg", "profile_sidebar_fill_color": "020812", "entities": {"url": {"urls": [{"url": "https://t.co/5XNFqVwoku", "indices": [0, 23], "expanded_url": "https://instagram.com/scottbix", "display_url": "instagram.com/scottbix"}]}, "description": {"urls": []}}, "followers_count": 14850, "profile_sidebar_border_color": "FFFFFF", "id_str": "148116121", "profile_background_color": "000000", "listed_count": 488, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 29020, "description": "National Reporter, the Guardian. Nerd King of Nerd Mountain.", "friends_count": 666, "location": "New York", "profile_link_color": "2FC2EF", "profile_image_url": "http://pbs.twimg.com/profile_images/671504247746260992/8NcwPFLx_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/148116121/1425919103", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466672362264358912/F4wovF9d.jpeg", "screen_name": "scottbix", "lang": "en", "profile_background_tile": false, "favourites_count": 4864, "name": "Scott Bixby", "notifications": false, "url": "https://t.co/5XNFqVwoku", "created_at": "Tue May 25 22:01:27 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Fri Aug 15 16:02:56 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/scottbix/status/500311689544208385/photo/1", "display_url": "pic.twitter.com/jpwEQOceLQ", "url": "http://t.co/jpwEQOceLQ", "media_url_https": "https://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg", "id_str": "500311688764080129", "sizes": {"large": {"h": 500, "resize": "fit", "w": 800}, "small": {"h": 213, "resize": "fit", "w": 340}, "medium": {"h": 375, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [117, 139], "type": "photo", "id": 500311688764080129, "media_url": "http://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 1653718716, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/504285035667525633/kna9jhfJ.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/717770160849993729/0pbVPMlN_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 315, "profile_sidebar_border_color": "FFFFFF", "id_str": "1653718716", "profile_background_color": "FFF04D", "listed_count": 13, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 24185, "description": "SoundsLikeAPersonalProblem \n\nHoly Ghost Champagne//\nLinzemi", "friends_count": 163, "location": "East Ham, London", "profile_link_color": "6DC0DB", "profile_image_url": "http://pbs.twimg.com/profile_images/717770160849993729/0pbVPMlN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1653718716/1459766676", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/504285035667525633/kna9jhfJ.jpeg", "screen_name": "OAnnie8", "lang": "en", "profile_background_tile": true, "favourites_count": 3616, "name": "I know not what 2 do", "notifications": false, "url": null, "created_at": "Wed Aug 07 19:54:39 +0000 2013", "contributors_enabled": false, "time_zone": "London", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 148116121, "source_status_id_str": "500311689544208385", "expanded_url": "http://twitter.com/scottbix/status/500311689544208385/photo/1", "display_url": "pic.twitter.com/jpwEQOceLQ", "url": "http://t.co/jpwEQOceLQ", "media_url_https": "https://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg", "source_user_id_str": "148116121", "source_status_id": 500311689544208385, "id_str": "500311688764080129", "sizes": {"large": {"h": 500, "resize": "fit", "w": 800}, "small": {"h": 213, "resize": "fit", "w": 340}, "medium": {"h": 375, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 500311688764080129, "media_url": "http://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg"}]}} {"contributors": null, "truncated": false, "text": "\u2018Am I Next?': Ferguson\u2019s Protests Through the Eyes of a\u00a0Teenager http://t.co/GwBbBKeJwx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064215759568897, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/GwBbBKeJwx", "indices": [65, 87], "expanded_url": "http://wp.me/p4Rl2x-4NN", "display_url": "wp.me/p4Rl2x-4NN"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064215759568897", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "\u041e\u043b\u0435\u0433 \u0421\u043b\u0430\u0432\u0438\u043d", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @NateParker: \"Freedom is never voluntarily given by the oppressor; it must be demanded by the oppressed.\" #MLK #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064215990648832, "favorite_count": 0, "source": "Twitter for Windows Phone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 111384708, "indices": [3, 14], "id_str": "111384708", "screen_name": "NateParker", "name": "Nate Parker"}], "hashtags": [{"indices": [109, 113], "text": "MLK"}, {"indices": [114, 123], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 34, "id_str": "501064215990648832", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "\"Freedom is never voluntarily given by the oppressor; it must be demanded by the oppressed.\" #MLK #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062629910401024, "favorite_count": 32, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [93, 97], "text": "MLK"}, {"indices": [98, 107], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 34, "id_str": "501062629910401024", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 111384708, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/684053670/ddd839f6c5cd30b9c0030cb838af678a.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2392585238/image_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/vlxiBNNghn", "indices": [0, 22], "expanded_url": "http://www.imdb.com/name/nm1676649/", "display_url": "imdb.com/name/nm1676649/"}]}, "description": {"urls": []}}, "followers_count": 34241, "profile_sidebar_border_color": "000000", "id_str": "111384708", "profile_background_color": "000000", "listed_count": 270, "is_translation_enabled": false, "utc_offset": -36000, "statuses_count": 1860, "description": "Activist, Filmmaker We are the leaders we've been waiting for... let's get to work!", "friends_count": 180, "location": "Los Angeles", "profile_link_color": "000000", "profile_image_url": "http://pbs.twimg.com/profile_images/2392585238/image_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/684053670/ddd839f6c5cd30b9c0030cb838af678a.jpeg", "screen_name": "NateParker", "lang": "en", "profile_background_tile": false, "favourites_count": 23, "name": "Nate Parker", "notifications": false, "url": "http://t.co/vlxiBNNghn", "created_at": "Thu Feb 04 18:53:15 +0000 2010", "contributors_enabled": false, "time_zone": "Hawaii", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:46:54 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 32537879, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/818409244/a7f4e45fc4961373d8b0cae60d869297.jpeg", "verified": false, "profile_text_color": "E82121", "profile_image_url_https": "https://pbs.twimg.com/profile_images/691873476479705088/1f0RKMyc_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": {"description": {"urls": []}}, "followers_count": 199, "profile_sidebar_border_color": "FFFFFF", "id_str": "32537879", "profile_background_color": "344AA1", "listed_count": 7, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 5729, "description": "IN GOD I TRUST! WonderWomanMind means I CAN DO ANYTING. I LIVE TO WRITE. I Love football and I am a Chicago Bears /Los Angeles Lakers Fan.", "friends_count": 835, "location": "Chicago, IL", "profile_link_color": "EB0909", "profile_image_url": "http://pbs.twimg.com/profile_images/691873476479705088/1f0RKMyc_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/32537879/1439188603", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/818409244/a7f4e45fc4961373d8b0cae60d869297.jpeg", "screen_name": "WonderWomanMind", "lang": "en", "profile_background_tile": true, "favourites_count": 3815, "name": "Alexis Hudson", "notifications": false, "url": null, "created_at": "Fri Apr 17 19:39:56 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @dierdrelewis: Curfew in #Ferguson will be in place for second night, volunteers provide lunch: http://t.co/ExTufgiaF9 via @STLtoday @Op\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064216241897472, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 51330975, "indices": [3, 16], "id_str": "51330975", "screen_name": "dierdrelewis", "name": "Trayvon Martin"}, {"id": 6039302, "indices": [126, 135], "id_str": "6039302", "screen_name": "stltoday", "name": "STLtoday"}, {"id": 2721777926, "indices": [136, 140], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson"}], "hashtags": [{"indices": [28, 37], "text": "Ferguson"}], "urls": [{"url": "http://t.co/ExTufgiaF9", "indices": [99, 121], "expanded_url": "http://ln.is/bit.ly/PmN6m", "display_url": "ln.is/bit.ly/PmN6m"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 6, "id_str": "501064216241897472", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Curfew in #Ferguson will be in place for second night, volunteers provide lunch: http://t.co/ExTufgiaF9 via @STLtoday @Opferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062270072672256, "favorite_count": 2, "source": "Linkis.com", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 6039302, "indices": [108, 117], "id_str": "6039302", "screen_name": "stltoday", "name": "STLtoday"}, {"id": 2721777926, "indices": [118, 129], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson"}], "hashtags": [{"indices": [10, 19], "text": "Ferguson"}], "urls": [{"url": "http://t.co/ExTufgiaF9", "indices": [81, 103], "expanded_url": "http://ln.is/bit.ly/PmN6m", "display_url": "ln.is/bit.ly/PmN6m"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 6, "id_str": "501062270072672256", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 51330975, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "verified": false, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/526618256375689216/0BMLlFNS_normal.png", "profile_sidebar_fill_color": "95E8EC", "entities": {"url": {"urls": [{"url": "http://t.co/VCb7i3Lh9T", "indices": [0, 22], "expanded_url": "http://trayvonmartinfoundation.org", "display_url": "trayvonmartinfoundation.org"}]}, "description": {"urls": [{"url": "http://t.co/lkAAfk2rH5", "indices": [23, 45], "expanded_url": "http://trayvonmartinfoundation.org", "display_url": "trayvonmartinfoundation.org"}]}}, "followers_count": 6785, "profile_sidebar_border_color": "5ED4DC", "id_str": "51330975", "profile_background_color": "0099B9", "listed_count": 302, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 140349, "description": "The Official Website | http://t.co/lkAAfk2rH5 |\r\nThe Trayvon Martin Foundation c/o The Miami Foundation 200 S Biscayne Boulevard Ste 505 Miami, FL 33131", "friends_count": 4943, "location": "", "profile_link_color": "0099B9", "profile_image_url": "http://pbs.twimg.com/profile_images/526618256375689216/0BMLlFNS_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/51330975/1398785602", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "screen_name": "dierdrelewis", "lang": "en", "profile_background_tile": false, "favourites_count": 2472, "name": "Trayvon Martin", "notifications": false, "url": "http://t.co/VCb7i3Lh9T", "created_at": "Sat Jun 27 03:24:34 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:45:29 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 43053129, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/521566121875357696/KJZAbmg7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 1400, "profile_sidebar_border_color": "C0DEED", "id_str": "43053129", "profile_background_color": "C0DEED", "listed_count": 128, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 49249, "description": "CA liberal.EQUAL RIGHTS for all.War&factory farming=Bleh! College Degree/Pyschology &Child Dev. Sect'y International Foot Care Alliance Corp.Board of Directors", "friends_count": 3682, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/521566121875357696/KJZAbmg7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43053129/1401256333", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "slytwain", "lang": "en", "profile_background_tile": false, "favourites_count": 11864, "name": "Sylvee Shay", "notifications": false, "url": null, "created_at": "Thu May 28 05:16:27 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Justice Department Orders Second Autopsy of Michael Brown, Missouri Gov. Criticizes Ferguson PD: U.S. Attorney... http://t.co/Yk9fbpbe5F", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064216522932227, "favorite_count": 0, "source": "twitterfeed", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/Yk9fbpbe5F", "indices": [114, 136], "expanded_url": "http://on.mash.to/1pttofi", "display_url": "on.mash.to/1pttofi"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064216522932227", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 297137496, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3672573851/35e5a6b9fe6a7946a62790164cea1797_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/ZbSDKsIPVN", "indices": [0, 22], "expanded_url": "http://motionmini.com", "display_url": "motionmini.com"}]}, "description": {"urls": []}}, "followers_count": 3345, "profile_sidebar_border_color": "C0DEED", "id_str": "297137496", "profile_background_color": "C0DEED", "listed_count": 21, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 6549, "description": "Founder & CEO of Motion Mini, Inc.", "friends_count": 70, "location": "Boston, MA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3672573851/35e5a6b9fe6a7946a62790164cea1797_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/297137496/1384417068", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "MazenAlkhamis", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Mazen Alkhamis", "notifications": false, "url": "http://t.co/ZbSDKsIPVN", "created_at": "Thu May 12 00:36:33 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @kilmacolm1: Council has arranged for Port Glasgow Town Hall to be available tomorrow for the Ferguson workforce to meet if they can't m\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064216930160640, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501064216930160640", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Council has arranged for Port Glasgow Town Hall to be available tomorrow for the Ferguson workforce to meet if they can't meet in the yard.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062344311853056, "favorite_count": 3, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501062344311853056", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 289038576, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/612331623477059584/2wm98Lfl_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/AuFvPp0f3U", "indices": [0, 22], "expanded_url": "http://councillorstephenmccabe.blogspot.com/", "display_url": "councillorstephenmccabe.blogspot.com"}]}, "description": {"urls": []}}, "followers_count": 2457, "profile_sidebar_border_color": "C0DEED", "id_str": "289038576", "profile_background_color": "C0DEED", "listed_count": 73, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 88381, "description": "Labour Councillor representing Port Glasgow, Kilmacolm and Quarrier's Village. Leader of Inverclyde Council Labour Group. Proud to be Scottish and British.", "friends_count": 1595, "location": "Kilmacolm", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/612331623477059584/2wm98Lfl_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "CllrSMcCabe", "lang": "en", "profile_background_tile": false, "favourites_count": 41963, "name": "Stephen McCabe", "notifications": false, "url": "http://t.co/AuFvPp0f3U", "created_at": "Wed Apr 27 22:26:41 +0000 2011", "contributors_enabled": false, "time_zone": "London", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:45:46 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 559857235, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/702658276207566848/FqBa3QiE_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 1230, "profile_sidebar_border_color": "C0DEED", "id_str": "559857235", "profile_background_color": "C0DEED", "listed_count": 27, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 13316, "description": "Labour Councillor for Kilpatrick Ward on West Dunbartonshire Council, married & father. Convenor of Planning & Licensing RT's my own views", "friends_count": 1732, "location": "Hardgate, Clydebank", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/702658276207566848/FqBa3QiE_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/559857235/1432075741", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "LawryONeill", "lang": "en", "profile_background_tile": false, "favourites_count": 8055, "name": "Lawrence O'Neill", "notifications": false, "url": null, "created_at": "Sat Apr 21 20:44:58 +0000 2012", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @ABC: Missouri governor \"thunderstruck\" by images of Ferguson police: http://t.co/XZGZjym9R6", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064217667960832, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 28785486, "indices": [3, 7], "id_str": "28785486", "screen_name": "ABC", "name": "ABC News"}], "hashtags": [], "urls": [{"url": "http://t.co/XZGZjym9R6", "indices": [73, 95], "expanded_url": "http://abcn.ws/1rJhBIo", "display_url": "abcn.ws/1rJhBIo"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 60, "id_str": "501064217667960832", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Missouri governor \"thunderstruck\" by images of Ferguson police: http://t.co/XZGZjym9R6", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501056127061078016, "favorite_count": 38, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/XZGZjym9R6", "indices": [64, 86], "expanded_url": "http://abcn.ws/1rJhBIo", "display_url": "abcn.ws/1rJhBIo"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 60, "id_str": "501056127061078016", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 28785486, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441965491024719872/pAv-lzCZ.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658688193651277824/Kv_cNNub_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/v7GWW7ho1l", "indices": [0, 23], "expanded_url": "http://ABCNews.com", "display_url": "ABCNews.com"}]}, "description": {"urls": [{"url": "https://t.co/ewMNZ54axm", "indices": [59, 82], "expanded_url": "https://www.facebook.com/abcnews", "display_url": "facebook.com/abcnews"}]}}, "followers_count": 5984023, "profile_sidebar_border_color": "FFFFFF", "id_str": "28785486", "profile_background_color": "6E8EB5", "listed_count": 42717, "is_translation_enabled": true, "utc_offset": -14400, "statuses_count": 131172, "description": "See the whole picture with @ABC News. Join us on Facebook: https://t.co/ewMNZ54axm", "friends_count": 901, "location": "New York City / Worldwide", "profile_link_color": "336699", "profile_image_url": "http://pbs.twimg.com/profile_images/658688193651277824/Kv_cNNub_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/28785486/1437184265", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441965491024719872/pAv-lzCZ.jpeg", "screen_name": "ABC", "lang": "en", "profile_background_tile": false, "favourites_count": 494, "name": "ABC News", "notifications": false, "url": "https://t.co/v7GWW7ho1l", "created_at": "Sat Apr 04 12:40:32 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:21:04 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2369225023, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/440193666049507328/P1TxbMb8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/l5smiuH8vc", "indices": [0, 23], "expanded_url": "http://facebook.com/carlafaithskog", "display_url": "facebook.com/carlafaithskog"}]}, "description": {"urls": []}}, "followers_count": 10816, "profile_sidebar_border_color": "C0DEED", "id_str": "2369225023", "profile_background_color": "C0DEED", "listed_count": 179, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 12315, "description": "A proud nurse and mother hoping to touch someone's life in a positive way!", "friends_count": 7874, "location": "Alberta, Canada", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/440193666049507328/P1TxbMb8_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2369225023/1422627748", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SkogCarla", "lang": "en", "profile_background_tile": false, "favourites_count": 2029, "name": "Carla Skog", "notifications": false, "url": "https://t.co/l5smiuH8vc", "created_at": "Sun Mar 02 18:12:10 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @rhm1947: En fotos: \"Zona de guerra\" en Ferguson por asesinato de joven afroamericano Mike Brown http://t.co/2ukQOxh8xE", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064218343661568, "favorite_count": 0, "source": "Twitter for BlackBerry\u00ae", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 108505438, "indices": [3, 11], "id_str": "108505438", "screen_name": "rhm1947", "name": "Roberto Hern\u00e1ndez M."}], "hashtags": [], "urls": [{"url": "http://t.co/2ukQOxh8xE", "indices": [100, 122], "expanded_url": "http://www.librered.net/?p=34735", "display_url": "librered.net/?p=34735"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 63, "id_str": "501064218343661568", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "En fotos: \"Zona de guerra\" en Ferguson por asesinato de joven afroamericano Mike Brown http://t.co/2ukQOxh8xE", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500959245529907203, "favorite_count": 3, "source": "Twitter for Websites", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/2ukQOxh8xE", "indices": [87, 109], "expanded_url": "http://www.librered.net/?p=34735", "display_url": "librered.net/?p=34735"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 63, "id_str": "500959245529907203", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 108505438, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1136691851/L1180437_normal.JPG", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 271319, "profile_sidebar_border_color": "C0DEED", "id_str": "108505438", "profile_background_color": "C0DEED", "listed_count": 1199, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 205964, "description": "", "friends_count": 1401, "location": "Venezuela", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1136691851/L1180437_normal.JPG", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "rhm1947", "lang": "es", "profile_background_tile": false, "favourites_count": 13463, "name": "Roberto Hern\u00e1ndez M.", "notifications": false, "url": null, "created_at": "Tue Jan 26 04:16:40 +0000 2010", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 10:56:06 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 109472069, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/825417240/3fb7b7436b9e2c0a545bdfa72484a1de.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3566293427/b75d710aefbc8b77e362dda9aa778ddf_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 2229, "profile_sidebar_border_color": "FFFFFF", "id_str": "109472069", "profile_background_color": "C0DEED", "listed_count": 3, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 16447, "description": "Abogado, Socialista, humanista, ANTIIMPERIALISTA y CHAVISTA!! Asesor\u00edas Jur\u00eddicas BB Pin -- 2292DB92", "friends_count": 2496, "location": "Maracaibo Edo. Zulia", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3566293427/b75d710aefbc8b77e362dda9aa778ddf_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/109472069/1365279322", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/825417240/3fb7b7436b9e2c0a545bdfa72484a1de.jpeg", "screen_name": "JoseRamiroabreu", "lang": "es", "profile_background_tile": true, "favourites_count": 653, "name": "Jose Ramiro Abreu", "notifications": false, "url": null, "created_at": "Fri Jan 29 04:40:22 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @Rajaiabukhalil: #Ferguson should be an awakening point to Americans. A reminder that opression is everywhere in the world & their gover\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064219467341824, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 250580585, "indices": [3, 18], "id_str": "250580585", "screen_name": "Rajaiabukhalil", "name": "Rajai Abukhalil"}], "hashtags": [{"indices": [20, 29], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 68, "id_str": "501064219467341824", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "#Ferguson should be an awakening point to Americans. A reminder that opression is everywhere in the world & their government is part of it.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501058322682761217, "favorite_count": 44, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [0, 9], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 68, "id_str": "501058322682761217", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 250580585, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/556517017/317473_10150341075223249_21259948248_7946232_248184601_n.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/619671046665297920/NwrFzp54_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/t8RYQX9v34", "indices": [0, 22], "expanded_url": "http://www.rajaiabukhalil.wordpress.com/", "display_url": "rajaiabukhalil.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 3766, "profile_sidebar_border_color": "C0DEED", "id_str": "250580585", "profile_background_color": "C0DEED", "listed_count": 171, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 7776, "description": "\u200f\u200f\u200f\u0625\u062d\u0645\u0644 \u0628\u0644\u0627\u062f\u0643 \u0627\u064a\u0646\u0645\u0627 \u0630\u0647\u0628\u062a\u060c \u0648\u0643\u0646 \u0646\u0631\u062c\u0633\u064a\u0627\u064b \u0627\u0630\u0627 \u0644\u0632\u0650\u0645 \u0627\u0644\u0623\u0645\u0631 Palestinian Doctor & Activist. Co-founder of Physicians for Palestine\r\nRajaiabukhalil@gmail.com", "friends_count": 273, "location": "Jerusalem, Falasteen - Berlin ", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/619671046665297920/NwrFzp54_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/250580585/1353179670", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/556517017/317473_10150341075223249_21259948248_7946232_248184601_n.jpg", "screen_name": "Rajaiabukhalil", "lang": "en", "profile_background_tile": true, "favourites_count": 1863, "name": "Rajai Abukhalil", "notifications": false, "url": "http://t.co/t8RYQX9v34", "created_at": "Fri Feb 11 11:24:43 +0000 2011", "contributors_enabled": false, "time_zone": "Jerusalem", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:29:48 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 246672896, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/736547811/b543e6dc2e0014dbb57b455a5a158693.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/643844837926637568/1GVSe-GP_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/57VXAxNDZl", "indices": [0, 22], "expanded_url": "http://www.TheLionessPurrs.com", "display_url": "TheLionessPurrs.com"}]}, "description": {"urls": []}}, "followers_count": 225, "profile_sidebar_border_color": "FFFFFF", "id_str": "246672896", "profile_background_color": "C0DEED", "listed_count": 6, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 21886, "description": "I'm just an innocent little pussy cat after all. Peace, Love, and Orgasms. *purrs*", "friends_count": 215, "location": "Orgasmic State", "profile_link_color": "D07A7B", "profile_image_url": "http://pbs.twimg.com/profile_images/643844837926637568/1GVSe-GP_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/246672896/1355642500", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/736547811/b543e6dc2e0014dbb57b455a5a158693.jpeg", "screen_name": "MistyPrest", "lang": "en", "profile_background_tile": true, "favourites_count": 2701, "name": "Lye N. Ess", "notifications": false, "url": "http://t.co/57VXAxNDZl", "created_at": "Thu Feb 03 07:10:59 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @Maxamegalon2000: .@Twitter Co-Founder Marches With Protesters In #Ferguson http://t.co/fB2D6NkYc0", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064219677044738, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 14165481, "indices": [3, 19], "id_str": "14165481", "screen_name": "Maxamegalon2000", "name": "Maxamegalon2000"}, {"id": 783214, "indices": [22, 30], "id_str": "783214", "screen_name": "twitter", "name": "Twitter"}], "hashtags": [{"indices": [69, 78], "text": "Ferguson"}], "urls": [{"url": "http://t.co/fB2D6NkYc0", "indices": [79, 101], "expanded_url": "http://bit.ly/1pti7M5", "display_url": "bit.ly/1pti7M5"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501064219677044738", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": ".@Twitter Co-Founder Marches With Protesters In #Ferguson http://t.co/fB2D6NkYc0", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063925988077568, "favorite_count": 3, "source": "Buffer", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 783214, "indices": [1, 9], "id_str": "783214", "screen_name": "twitter", "name": "Twitter"}], "hashtags": [{"indices": [48, 57], "text": "Ferguson"}], "urls": [{"url": "http://t.co/fB2D6NkYc0", "indices": [58, 80], "expanded_url": "http://bit.ly/1pti7M5", "display_url": "bit.ly/1pti7M5"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501063925988077568", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 14165481, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478000166654332928/0pKC5DDp_normal.jpeg", "profile_sidebar_fill_color": "FFCC00", "entities": {"url": {"urls": [{"url": "https://t.co/G0qdo2qV0G", "indices": [0, 23], "expanded_url": "http://www.kuchlercotton.com/?service=jeffrey-szczewski", "display_url": "kuchlercotton.com/?service=jeffr\u2026"}]}, "description": {"urls": []}}, "followers_count": 553, "profile_sidebar_border_color": "000000", "id_str": "14165481", "profile_background_color": "003366", "listed_count": 66, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 84270, "description": "I'm a criminal defense attorney at @KuchlerCottonSC, but unless I've told you as much, I'm not your attorney. Retweets are not endorsements; neither are tweets.", "friends_count": 732, "location": "Milwaukee, WI", "profile_link_color": "A18100", "profile_image_url": "http://pbs.twimg.com/profile_images/478000166654332928/0pKC5DDp_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14165481/1385403800", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Maxamegalon2000", "lang": "en", "profile_background_tile": false, "favourites_count": 2, "name": "Maxamegalon2000", "notifications": false, "url": "https://t.co/G0qdo2qV0G", "created_at": "Mon Mar 17 20:05:37 +0000 2008", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:03 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 45640882, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692125644575117313/GZOsCO0n_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": [{"url": "https://t.co/oxoGGkehjJ", "indices": [113, 136], "expanded_url": "http://jadybates.com", "display_url": "jadybates.com"}]}}, "followers_count": 435, "profile_sidebar_border_color": "C0DEED", "id_str": "45640882", "profile_background_color": "C0DEED", "listed_count": 34, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 7037, "description": "M.A. Conflict Resolution - THERE ARE WILD & BEAUTIFUL THINGS IN US. Entreprenuer. Photographer. #RipCity #RCTID {https://t.co/oxoGGkehjJ}", "friends_count": 735, "location": "Portland, OR", "profile_link_color": "71D3F7", "profile_image_url": "http://pbs.twimg.com/profile_images/692125644575117313/GZOsCO0n_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/45640882/1463706470", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "jadybates", "lang": "en", "profile_background_tile": false, "favourites_count": 18576, "name": "Jady Bates", "notifications": false, "url": null, "created_at": "Mon Jun 08 19:03:28 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Ferguson Protestors Mark a Week Since Brown\u00a0Shooting http://t.co/gj4LII7De2", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064220121632768, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/gj4LII7De2", "indices": [53, 75], "expanded_url": "http://wp.me/p4Rl2x-4NX", "display_url": "wp.me/p4Rl2x-4NX"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064220121632768", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "\u041e\u043b\u0435\u0433 \u0421\u043b\u0430\u0432\u0438\u043d", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @JoyAnnReid: Please don't come to my thread to attack the shooting victim in the Ferguson case. You will be blocked on sight. Thanks.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064220415229953, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 49698134, "indices": [3, 14], "id_str": "49698134", "screen_name": "JoyAnnReid", "name": "Joy Reid"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 149, "id_str": "501064220415229953", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Please don't come to my thread to attack the shooting victim in the Ferguson case. You will be blocked on sight. Thanks.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501061124499202049, "favorite_count": 269, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 149, "id_str": "501061124499202049", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 49698134, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/499193057632194561/wZ4JLf9-.jpeg", "verified": true, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/724471800835481600/q_zmM-S7_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": {"url": {"urls": [{"url": "https://t.co/HJGTROqdlr", "indices": [0, 23], "expanded_url": "http://joyannreid.com/", "display_url": "joyannreid.com"}]}, "description": {"urls": []}}, "followers_count": 205114, "profile_sidebar_border_color": "000000", "id_str": "49698134", "profile_background_color": "1A1B1F", "listed_count": 3519, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 79291, "description": "Not for your candidate. Not for your candidate's opponent. Author of 'Fracture: Barack Obama, the Clintons, and the Racial Divide.' Love my #reiders!", "friends_count": 3151, "location": "NYC", "profile_link_color": "0042A6", "profile_image_url": "http://pbs.twimg.com/profile_images/724471800835481600/q_zmM-S7_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/49698134/1451878747", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/499193057632194561/wZ4JLf9-.jpeg", "screen_name": "JoyAnnReid", "lang": "en", "profile_background_tile": true, "favourites_count": 3718, "name": "Joy Reid", "notifications": false, "url": "https://t.co/HJGTROqdlr", "created_at": "Mon Jun 22 17:29:54 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:40:56 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 283857061, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661502262284566528/_amYSlDL_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": {"description": {"urls": []}}, "followers_count": 1579, "profile_sidebar_border_color": "829D5E", "id_str": "283857061", "profile_background_color": "352726", "listed_count": 38, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 236096, "description": "blacklivesmatter. don't question my tweets I'm random. my thoughts come in spurts.", "friends_count": 910, "location": "502", "profile_link_color": "D02B55", "profile_image_url": "http://pbs.twimg.com/profile_images/661502262284566528/_amYSlDL_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/283857061/1436461687", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "screen_name": "502kissababy", "lang": "en", "profile_background_tile": false, "favourites_count": 2914, "name": "golden girl", "notifications": false, "url": null, "created_at": "Mon Apr 18 04:42:26 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @AnaCabrera: The curfew for #Ferguson, Missouri will be in place again tonight from 12am through 5am CT Monday, according to Missouri S\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064222340423681, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 31565351, "indices": [3, 14], "id_str": "31565351", "screen_name": "AnaCabrera", "name": "Ana Cabrera"}], "hashtags": [{"indices": [31, 40], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 116, "id_str": "501064222340423681", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The curfew for #Ferguson, Missouri will be in place again tonight from 12am through 5am CT Monday, according to Missouri State Hwy Patrol.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062655185276928, "favorite_count": 75, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [15, 24], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 116, "id_str": "501062655185276928", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 31565351, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/801784208/8118496d3b3e18b05b968ccb053bdfda.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000670838044/d6ac7616d4af77f128ca0bfe6201131e_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 16215, "profile_sidebar_border_color": "FFFFFF", "id_str": "31565351", "profile_background_color": "C0DEED", "listed_count": 360, "is_translation_enabled": false, "utc_offset": -21600, "statuses_count": 11475, "description": "CNN Correspondent, Mom, Wife, Runner, Traveler, Gardener, Dog lover, Skier, Aspiring Chef and Baker, Huge Denver Broncos Fan. RT \u2260 endorsements.", "friends_count": 2853, "location": "Denver, CO", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000670838044/d6ac7616d4af77f128ca0bfe6201131e_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31565351/1366035013", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/801784208/8118496d3b3e18b05b968ccb053bdfda.jpeg", "screen_name": "AnaCabrera", "lang": "en", "profile_background_tile": false, "favourites_count": 5437, "name": "Ana Cabrera", "notifications": false, "url": null, "created_at": "Wed Apr 15 23:52:44 +0000 2009", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:47:00 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 339903277, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000730517632/56098ba65220108d0439b014da5fe6b2_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/oMcCix6iEb", "indices": [0, 23], "expanded_url": "http://www.marykay.com/kimallenmichael", "display_url": "marykay.com/kimallenmichael"}]}, "description": {"urls": []}}, "followers_count": 632, "profile_sidebar_border_color": "C0DEED", "id_str": "339903277", "profile_background_color": "C0DEED", "listed_count": 64, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 97612, "description": "News and relevant information with an occasional soap box!", "friends_count": 333, "location": "Orlando, FL", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000730517632/56098ba65220108d0439b014da5fe6b2_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "KimCheeMichael", "lang": "en", "profile_background_tile": false, "favourites_count": 47, "name": "KimAllen", "notifications": false, "url": "https://t.co/oMcCix6iEb", "created_at": "Thu Jul 21 21:01:09 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @allahpundit: Mark Steyn: Ferguson and the police http://t.co/0r0Y35QRsx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064222772445187, "favorite_count": 0, "source": "Talon (Classic)", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 19173787, "indices": [3, 15], "id_str": "19173787", "screen_name": "allahpundit", "name": "Allahpundit"}], "hashtags": [], "urls": [{"url": "http://t.co/0r0Y35QRsx", "indices": [53, 75], "expanded_url": "http://www.steynonline.com/6524/cigars-but-not-close", "display_url": "steynonline.com/6524/cigars-bu\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "501064222772445187", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Mark Steyn: Ferguson and the police http://t.co/0r0Y35QRsx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500993000864903169, "favorite_count": 2, "source": "Tweetbot for Mac", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/0r0Y35QRsx", "indices": [36, 58], "expanded_url": "http://www.steynonline.com/6524/cigars-but-not-close", "display_url": "steynonline.com/6524/cigars-bu\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "500993000864903169", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 19173787, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/517357865627971584/J9NgQV0T_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/96qZFWpg1h", "indices": [0, 23], "expanded_url": "http://hotair.com", "display_url": "hotair.com"}]}, "description": {"urls": []}}, "followers_count": 49103, "profile_sidebar_border_color": "C0DEED", "id_str": "19173787", "profile_background_color": "C0DEED", "listed_count": 2234, "is_translation_enabled": false, "utc_offset": 16200, "statuses_count": 104532, "description": "Who cares?", "friends_count": 263, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/517357865627971584/J9NgQV0T_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "allahpundit", "lang": "en", "profile_background_tile": false, "favourites_count": 3, "name": "Allahpundit", "notifications": false, "url": "https://t.co/96qZFWpg1h", "created_at": "Mon Jan 19 05:36:46 +0000 2009", "contributors_enabled": false, "time_zone": "Tehran", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 13:10:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 22668719, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/694515394/20b53a850232c9225593e6f575c8b852.jpeg", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/550971208087244801/zPOcHxkj_normal.png", "profile_sidebar_fill_color": "99CC33", "entities": {"url": {"urls": [{"url": "http://t.co/T2axwEZQcf", "indices": [0, 22], "expanded_url": "http://furaffinity.net/user/meni/", "display_url": "furaffinity.net/user/meni/"}]}, "description": {"urls": []}}, "followers_count": 294, "profile_sidebar_border_color": "FFFFFF", "id_str": "22668719", "profile_background_color": "352726", "listed_count": 15, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 20347, "description": "A nocturnal hyena. INFJ. Wanderer, right of center, gay & enigma. Current interests: Cars, Books, Japanese, Hearthstone", "friends_count": 205, "location": "McAllen, TX", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/550971208087244801/zPOcHxkj_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22668719/1431511997", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/694515394/20b53a850232c9225593e6f575c8b852.jpeg", "screen_name": "nodehyena", "lang": "en", "profile_background_tile": true, "favourites_count": 8876, "name": "node", "notifications": false, "url": "http://t.co/T2axwEZQcf", "created_at": "Tue Mar 03 19:57:45 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @rolandsmartin: Don't be shocked if the protesters in #Ferguson now target St. Louis County Prosecutor Bob McCulloch. His comments are r\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064222923440130, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 16116288, "indices": [3, 17], "id_str": "16116288", "screen_name": "rolandsmartin", "name": "rolandsmartin"}], "hashtags": [{"indices": [57, 66], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 65, "id_str": "501064222923440130", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Don't be shocked if the protesters in #Ferguson now target St. Louis County Prosecutor Bob McCulloch. His comments are reprehensible.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500264419176513536, "favorite_count": 43, "source": "Facebook", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [38, 47], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 65, "id_str": "500264419176513536", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 16116288, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/643374815630331904/aqsjFemx.jpg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651685222929592320/PaMC5Fya_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/cqNjiUZLX2", "indices": [0, 22], "expanded_url": "http://www.rolandsmartin.com/blog", "display_url": "rolandsmartin.com/blog"}]}, "description": {"urls": []}}, "followers_count": 384866, "profile_sidebar_border_color": "000000", "id_str": "16116288", "profile_background_color": "000000", "listed_count": 4269, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 263574, "description": "Host/managing editor of TV One's daily morning show, NewsOne Now; senior analyst, Tom Joyner Morning Show; author; international speaker; CEO, Nu Vision Media", "friends_count": 2382, "location": "Washington, D.C.", "profile_link_color": "D6000B", "profile_image_url": "http://pbs.twimg.com/profile_images/651685222929592320/PaMC5Fya_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16116288/1442227754", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/643374815630331904/aqsjFemx.jpg", "screen_name": "rolandsmartin", "lang": "en", "profile_background_tile": false, "favourites_count": 684, "name": "rolandsmartin", "notifications": false, "url": "http://t.co/cqNjiUZLX2", "created_at": "Wed Sep 03 17:35:09 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Fri Aug 15 12:55:06 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 122450450, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", "verified": false, "profile_text_color": "362720", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459362983580147712/sV3CjBWH_normal.jpeg", "profile_sidebar_fill_color": "E5507E", "entities": {"description": {"urls": []}}, "followers_count": 95, "profile_sidebar_border_color": "CC3366", "id_str": "122450450", "profile_background_color": "FF6699", "listed_count": 3, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 3820, "description": "Gladiator, Devil Dog, Hell Cat & Assassin....against all things oppressive!", "friends_count": 700, "location": "So $aint Louis!", "profile_link_color": "B40B43", "profile_image_url": "http://pbs.twimg.com/profile_images/459362983580147712/sV3CjBWH_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/122450450/1398355643", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", "screen_name": "MsKita4", "lang": "en", "profile_background_tile": true, "favourites_count": 638, "name": "Ms. Kita", "notifications": false, "url": null, "created_at": "Fri Mar 12 19:11:38 +0000 2010", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @MuhammadAnisah: I looked in the faces of those police. You could see the hate in their eyes, #Ferguson #Farrakhan #TheTroubledWorld #NO\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064224936714240, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1244379746, "indices": [3, 18], "id_str": "1244379746", "screen_name": "MuhammadAnisah", "name": "Anisah Muhammad"}], "hashtags": [{"indices": [97, 106], "text": "Ferguson"}, {"indices": [107, 117], "text": "Farrakhan"}, {"indices": [118, 135], "text": "TheTroubledWorld"}, {"indices": [136, 140], "text": "NOISundays"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501064224936714240", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "I looked in the faces of those police. You could see the hate in their eyes, #Ferguson #Farrakhan #TheTroubledWorld #NOISundays", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062577552904193, "favorite_count": 3, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [77, 86], "text": "Ferguson"}, {"indices": [87, 97], "text": "Farrakhan"}, {"indices": [98, 115], "text": "TheTroubledWorld"}, {"indices": [116, 127], "text": "NOISundays"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501062577552904193", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1244379746, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000180278138/3I1R9iq0.jpeg", "verified": false, "profile_text_color": "00AEFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734549612556476417/4n-OGP1R_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": {"url": {"urls": [{"url": "http://t.co/W8PBAKtxLg", "indices": [0, 22], "expanded_url": "http://original7.wordpress.com", "display_url": "original7.wordpress.com"}]}, "description": {"urls": [{"url": "https://t.co/mTAg8cBd6y", "indices": [89, 112], "expanded_url": "http://www.amazon.com/Escaping-Chains-Collection-published-Newspaper/dp/1507671318", "display_url": "amazon.com/Escaping-Chain\u2026"}]}}, "followers_count": 2138, "profile_sidebar_border_color": "000000", "id_str": "1244379746", "profile_background_color": "1A1B1F", "listed_count": 22, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 34236, "description": "#FarrakhanTwitterArmy | #TheTime | #JusticeOrElse | #EconomicBlueprint | Writer | Author https://t.co/mTAg8cBd6y | Poet | Follower of #Farrakhan", "friends_count": 1253, "location": "Alabama", "profile_link_color": "4A913C", "profile_image_url": "http://pbs.twimg.com/profile_images/734549612556476417/4n-OGP1R_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1244379746/1463966744", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000180278138/3I1R9iq0.jpeg", "screen_name": "MuhammadAnisah", "lang": "en", "profile_background_tile": true, "favourites_count": 3738, "name": "Anisah Muhammad", "notifications": false, "url": "http://t.co/W8PBAKtxLg", "created_at": "Tue Mar 05 18:44:03 +0000 2013", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:46:42 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2457488137, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/726799420650590209/IMUUZdtd_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 1014, "profile_sidebar_border_color": "C0DEED", "id_str": "2457488137", "profile_background_color": "C0DEED", "listed_count": 9, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 13496, "description": "Young God \n#Farrakhan \n#Justiceorelse", "friends_count": 1440, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/726799420650590209/IMUUZdtd_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2457488137/1451233145", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Shakur_Hakim", "lang": "en", "profile_background_tile": false, "favourites_count": 13848, "name": "_young_musa", "notifications": false, "url": null, "created_at": "Tue Apr 22 02:30:01 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @Yamiche: UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064225096499201, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 89887215, "indices": [3, 11], "id_str": "89887215", "screen_name": "Yamiche", "name": "Yamiche Alcindor"}, {"id": 15754281, "indices": [90, 99], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY"}], "hashtags": [], "urls": [{"url": "http://t.co/xVOvdk1Ttz", "indices": [63, 85], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064225096499201", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064051330646016, "favorite_count": 12, "source": "iOS", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 15754281, "indices": [77, 86], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY"}], "hashtags": [], "urls": [{"url": "http://t.co/xVOvdk1Ttz", "indices": [50, 72], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064051330646016", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 89887215, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/Y4UpM3YlCz", "indices": [0, 23], "expanded_url": "http://yamichealcindor.com", "display_url": "yamichealcindor.com"}]}, "description": {"urls": []}}, "followers_count": 35266, "profile_sidebar_border_color": "EEEEEE", "id_str": "89887215", "profile_background_color": "131516", "listed_count": 1412, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 17738, "description": "@NYTimes reporter covering national politics & social justice issues. Formerly of @USATODAY. @Georgetown & @NYUNewsDoc alum. Email: yamiche@nytimes.com", "friends_count": 3727, "location": "New York, NY", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/89887215/1417998203", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Yamiche", "lang": "en", "profile_background_tile": true, "favourites_count": 1311, "name": "Yamiche Alcindor", "notifications": false, "url": "https://t.co/Y4UpM3YlCz", "created_at": "Sat Nov 14 06:37:11 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:33 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 20892936, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/686413384821129216/7OsAzYlA.jpg", "verified": false, "profile_text_color": "11299E", "profile_image_url_https": "https://pbs.twimg.com/profile_images/720404417586020352/7GPGwiqW_normal.jpg", "profile_sidebar_fill_color": "010005", "entities": {"url": {"urls": [{"url": "https://t.co/TTgfruqf4L", "indices": [0, 23], "expanded_url": "http://JazziJohnson.com", "display_url": "JazziJohnson.com"}]}, "description": {"urls": []}}, "followers_count": 1313, "profile_sidebar_border_color": "000000", "id_str": "20892936", "profile_background_color": "ACDED6", "listed_count": 37, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 102625, "description": "26 | Writer, Editor & Curator | #TheOffBeat Host | SMM | @TheNewSchool Alum | #AlopeciaAwareness", "friends_count": 1011, "location": "Saturn's Return", "profile_link_color": "52164A", "profile_image_url": "http://pbs.twimg.com/profile_images/720404417586020352/7GPGwiqW_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20892936/1413302762", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/686413384821129216/7OsAzYlA.jpg", "screen_name": "ThebubbleMAMI", "lang": "en", "profile_background_tile": true, "favourites_count": 3616, "name": "Jazzi Johnson", "notifications": false, "url": "https://t.co/TTgfruqf4L", "created_at": "Sun Feb 15 04:37:08 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @AnaCabrera: The curfew for #Ferguson, Missouri will be in place again tonight from 12am through 5am CT Monday, according to Missouri S\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064225142624256, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 31565351, "indices": [3, 14], "id_str": "31565351", "screen_name": "AnaCabrera", "name": "Ana Cabrera"}], "hashtags": [{"indices": [31, 40], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 116, "id_str": "501064225142624256", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The curfew for #Ferguson, Missouri will be in place again tonight from 12am through 5am CT Monday, according to Missouri State Hwy Patrol.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062655185276928, "favorite_count": 75, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [15, 24], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 116, "id_str": "501062655185276928", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 31565351, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/801784208/8118496d3b3e18b05b968ccb053bdfda.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000670838044/d6ac7616d4af77f128ca0bfe6201131e_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 16215, "profile_sidebar_border_color": "FFFFFF", "id_str": "31565351", "profile_background_color": "C0DEED", "listed_count": 360, "is_translation_enabled": false, "utc_offset": -21600, "statuses_count": 11475, "description": "CNN Correspondent, Mom, Wife, Runner, Traveler, Gardener, Dog lover, Skier, Aspiring Chef and Baker, Huge Denver Broncos Fan. RT \u2260 endorsements.", "friends_count": 2853, "location": "Denver, CO", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000670838044/d6ac7616d4af77f128ca0bfe6201131e_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31565351/1366035013", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/801784208/8118496d3b3e18b05b968ccb053bdfda.jpeg", "screen_name": "AnaCabrera", "lang": "en", "profile_background_tile": false, "favourites_count": 5437, "name": "Ana Cabrera", "notifications": false, "url": null, "created_at": "Wed Apr 15 23:52:44 +0000 2009", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:47:00 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": true, "id": 2579883909, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 104, "profile_sidebar_border_color": "C0DEED", "id_str": "2579883909", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 64, "description": "", "friends_count": 708, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "boskomlomo", "lang": "en", "profile_background_tile": false, "favourites_count": 9, "name": "bosko mlomo", "notifications": false, "url": null, "created_at": "Tue Jun 03 09:07:48 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "I support the people of #Ferguson. #demilitarize", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064225314185216, "favorite_count": 0, "source": "Twitter for Windows Phone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [24, 33], "text": "Ferguson"}, {"indices": [35, 48], "text": "demilitarize"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064225314185216", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 191573388, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/678490443/530305ee54dcd37a33244a09f7f62844.jpeg", "verified": false, "profile_text_color": "80346B", "profile_image_url_https": "https://pbs.twimg.com/profile_images/488505579766161408/2s_HyxsW_normal.jpeg", "profile_sidebar_fill_color": "CB077F", "entities": {"description": {"urls": []}}, "followers_count": 88, "profile_sidebar_border_color": "FFFFFF", "id_str": "191573388", "profile_background_color": "281A2C", "listed_count": 4, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 2019, "description": "nurse in training. no sugar coating here. aspiring autodidact.", "friends_count": 51, "location": "Pacific Northwest. 307 Native.", "profile_link_color": "A431DE", "profile_image_url": "http://pbs.twimg.com/profile_images/488505579766161408/2s_HyxsW_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/191573388/1405303781", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/678490443/530305ee54dcd37a33244a09f7f62844.jpeg", "screen_name": "cactusjuicekb", "lang": "en", "profile_background_tile": false, "favourites_count": 387, "name": "KNEL", "notifications": false, "url": null, "created_at": "Thu Sep 16 19:56:34 +0000 2010", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @sdwhite: @ryanjreilly Are you really that fucking stupid? I mean DAMN man! #Ferguson #idiotmedia http://t.co/K7ZttCFFUm", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064225926561794, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 10368612, "indices": [3, 11], "id_str": "10368612", "screen_name": "sdwhite", "name": "Scott"}, {"id": 7768402, "indices": [13, 25], "id_str": "7768402", "screen_name": "ryanjreilly", "name": "Ryan J. Reilly"}], "hashtags": [{"indices": [80, 89], "text": "Ferguson"}, {"indices": [90, 101], "text": "idiotmedia"}], "urls": [], "media": [{"source_user_id": 10368612, "source_status_id_str": "501050702744285184", "expanded_url": "http://twitter.com/sdwhite/status/501050702744285184/photo/1", "display_url": "pic.twitter.com/K7ZttCFFUm", "url": "http://t.co/K7ZttCFFUm", "media_url_https": "https://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg", "source_user_id_str": "10368612", "source_status_id": 501050702744285184, "id_str": "501050701943156738", "sizes": {"small": {"h": 605, "resize": "fit", "w": 340}, "large": {"h": 1822, "resize": "fit", "w": 1024}, "medium": {"h": 1068, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [102, 124], "type": "photo", "id": 501050701943156738, "media_url": "http://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "501064225926561794", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "@ryanjreilly Are you really that fucking stupid? I mean DAMN man! #Ferguson #idiotmedia http://t.co/K7ZttCFFUm", "is_quote_status": false, "in_reply_to_status_id": 500981295359741952, "id": 501050702744285184, "favorite_count": 1, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 7768402, "indices": [0, 12], "id_str": "7768402", "screen_name": "ryanjreilly", "name": "Ryan J. Reilly"}], "hashtags": [{"indices": [67, 76], "text": "Ferguson"}, {"indices": [77, 88], "text": "idiotmedia"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/sdwhite/status/501050702744285184/photo/1", "display_url": "pic.twitter.com/K7ZttCFFUm", "url": "http://t.co/K7ZttCFFUm", "media_url_https": "https://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg", "id_str": "501050701943156738", "sizes": {"small": {"h": 605, "resize": "fit", "w": 340}, "large": {"h": 1822, "resize": "fit", "w": 1024}, "medium": {"h": 1068, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [89, 111], "type": "photo", "id": 501050701943156738, "media_url": "http://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg"}]}, "in_reply_to_screen_name": "ryanjreilly", "in_reply_to_user_id": 7768402, "retweet_count": 1, "id_str": "501050702744285184", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 10368612, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/586373626/qney3uizbr5rcllun5uw.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000497600338/2e075885c4878b98a1850fe635dd247b_normal.jpeg", "profile_sidebar_fill_color": "C0DFEC", "entities": {"url": {"urls": [{"url": "http://t.co/IDseHYlFWt", "indices": [0, 22], "expanded_url": "http://sdw.im", "display_url": "sdw.im"}]}, "description": {"urls": []}}, "followers_count": 1450, "profile_sidebar_border_color": "A8C7F7", "id_str": "10368612", "profile_background_color": "022330", "listed_count": 61, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 27692, "description": "Patriot Harley Rider Retired Police Officer Second Amendment Heelers, Texas Heeler, Blue Heeler, Australian Cattle Dog Just a good ole country boy with guns...", "friends_count": 187, "location": "Augusta, GA USA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000497600338/2e075885c4878b98a1850fe635dd247b_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10368612/1418565396", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/586373626/qney3uizbr5rcllun5uw.jpeg", "screen_name": "sdwhite", "lang": "en", "profile_background_tile": false, "favourites_count": 37, "name": "Scott", "notifications": false, "url": "http://t.co/IDseHYlFWt", "created_at": "Mon Nov 19 00:33:55 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "7768402", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 16:59:31 +0000 2014", "in_reply_to_status_id_str": "500981295359741952", "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/sdwhite/status/501050702744285184/photo/1", "display_url": "pic.twitter.com/K7ZttCFFUm", "url": "http://t.co/K7ZttCFFUm", "media_url_https": "https://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg", "id_str": "501050701943156738", "sizes": {"small": {"h": 605, "resize": "fit", "w": 340}, "large": {"h": 1822, "resize": "fit", "w": 1024}, "medium": {"h": 1068, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [89, 111], "type": "photo", "id": 501050701943156738, "media_url": "http://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 33005799, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/84845711/LETR_logo_wo_shadow.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/517918504641499136/QeETbvAg_normal.jpeg", "profile_sidebar_fill_color": "DDFFCC", "entities": {"description": {"urls": []}}, "followers_count": 274, "profile_sidebar_border_color": "BDDCAD", "id_str": "33005799", "profile_background_color": "9AE4E8", "listed_count": 20, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 994, "description": "Julie Van Dielen: Virtual Assistant for LE Instructors. Researcher, observer, armchair anthropologist. Obviously, RTs / Faves not necessarily endorsements.", "friends_count": 534, "location": "St. Louis MO", "profile_link_color": "0048B3", "profile_image_url": "http://pbs.twimg.com/profile_images/517918504641499136/QeETbvAg_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/84845711/LETR_logo_wo_shadow.jpg", "screen_name": "LETrainingAsst", "lang": "en", "profile_background_tile": true, "favourites_count": 722, "name": "LETR", "notifications": false, "url": null, "created_at": "Sat Apr 18 20:43:27 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 10368612, "source_status_id_str": "501050702744285184", "expanded_url": "http://twitter.com/sdwhite/status/501050702744285184/photo/1", "display_url": "pic.twitter.com/K7ZttCFFUm", "url": "http://t.co/K7ZttCFFUm", "media_url_https": "https://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg", "source_user_id_str": "10368612", "source_status_id": 501050702744285184, "id_str": "501050701943156738", "sizes": {"small": {"h": 605, "resize": "fit", "w": 340}, "large": {"h": 1822, "resize": "fit", "w": 1024}, "medium": {"h": 1068, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [102, 124], "type": "photo", "id": 501050701943156738, "media_url": "http://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @Chris_1791: Eye Witness Audio of Mike Brown Shooting States: \u201cBrown Doubled Back Toward POlice\u201d\u2026Kept rushing cop http://t.co/p6Vgo23bUK\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064226816143361, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 312149882, "indices": [3, 14], "id_str": "312149882", "screen_name": "Chris_1791", "name": "Chris"}], "hashtags": [{"indices": [139, 140], "text": "Ferguson"}], "urls": [{"url": "http://t.co/p6Vgo23bUK", "indices": [117, 139], "expanded_url": "http://theconservativetreehouse.com/2014/08/15/exceptional-catch-the-jj-witness-video-eye-witness-audio-of-mike-brown-shooting-sharing-brown-doubled-back-toward-police/", "display_url": "theconservativetreehouse.com/2014/08/15/exc\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13, "id_str": "501064226816143361", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Eye Witness Audio of Mike Brown Shooting States: \u201cBrown Doubled Back Toward POlice\u201d\u2026Kept rushing cop http://t.co/p6Vgo23bUK #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063445446672384, "favorite_count": 10, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [124, 133], "text": "Ferguson"}], "urls": [{"url": "http://t.co/p6Vgo23bUK", "indices": [101, 123], "expanded_url": "http://theconservativetreehouse.com/2014/08/15/exceptional-catch-the-jj-witness-video-eye-witness-audio-of-mike-brown-shooting-sharing-brown-doubled-back-toward-police/", "display_url": "theconservativetreehouse.com/2014/08/15/exc\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13, "id_str": "501063445446672384", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 312149882, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/725063162467217408/jfon06uc_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/ATN42EhhoT", "indices": [0, 23], "expanded_url": "http://owsusefulidiots.blogspot.com/", "display_url": "owsusefulidiots.blogspot.com"}]}, "description": {"urls": []}}, "followers_count": 71615, "profile_sidebar_border_color": "EEEEEE", "id_str": "312149882", "profile_background_color": "131516", "listed_count": 1205, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 636320, "description": "100% American. 63% Irish Ancestry. Roman Catholic BS/MS Princeton U. PhD Univ of Penn Computer Science. 2A. Pro-Life. Expert contrarian.", "friends_count": 28814, "location": "Philadelphia, PA USA", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/725063162467217408/jfon06uc_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/312149882/1461703235", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Chris_1791", "lang": "en", "profile_background_tile": true, "favourites_count": 1101, "name": "Chris", "notifications": false, "url": "https://t.co/ATN42EhhoT", "created_at": "Mon Jun 06 17:20:55 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:50:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1597610311, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/531257140732641280/YVjRs7Gk.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000141038704/756d87befc3e7bf6bff379084d9913e5_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 1049, "profile_sidebar_border_color": "FFFFFF", "id_str": "1597610311", "profile_background_color": "FA743E", "listed_count": 12, "is_translation_enabled": false, "utc_offset": -21600, "statuses_count": 3503, "description": "Daughter of the American Revolution. Blockade Runner's Sammich Maker\n\u2022Primpin\u2022Mayhem\u2022HandLoads\u2022Jesus", "friends_count": 1231, "location": "", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000141038704/756d87befc3e7bf6bff379084d9913e5_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1597610311/1460344383", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/531257140732641280/YVjRs7Gk.jpeg", "screen_name": "MollyLibSlayer", "lang": "en", "profile_background_tile": true, "favourites_count": 2538, "name": "Molly Anne", "notifications": false, "url": null, "created_at": "Tue Jul 16 05:23:19 +0000 2013", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @DoggedlyBlue: The world is watching us! @MedicalQuack @vinceperritano RT @vinceperritano: #Ferguson made front pages in Turkey http://\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064227302674433, "favorite_count": 0, "source": "Twitter for Android Tablets", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1729022250, "indices": [3, 16], "id_str": "1729022250", "screen_name": "DoggedlyBlue", "name": "PowerHounds"}, {"id": 15248550, "indices": [44, 57], "id_str": "15248550", "screen_name": "MedicalQuack", "name": "MedicalQuack"}, {"id": 1253175822, "indices": [58, 73], "id_str": "1253175822", "screen_name": "vinceperritano", "name": "Vince"}, {"id": 1253175822, "indices": [77, 92], "id_str": "1253175822", "screen_name": "vinceperritano", "name": "Vince"}], "hashtags": [{"indices": [94, 103], "text": "Ferguson"}], "urls": [{"url": "http://t.co/WNSLwHuSf7", "indices": [139, 140], "expanded_url": "http://twitter.com/vinceperritano/status/500659660366811137/photo/1", "display_url": "pic.twitter.com/WNSLwHuSf7"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13, "id_str": "501064227302674433", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The world is watching us! @MedicalQuack @vinceperritano RT @vinceperritano: #Ferguson made front pages in Turkey http://t.co/WNSLwHuSf7", "is_quote_status": false, "in_reply_to_status_id": 500829713041199105, "id": 501037323384283137, "favorite_count": 4, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 15248550, "indices": [26, 39], "id_str": "15248550", "screen_name": "MedicalQuack", "name": "MedicalQuack"}, {"id": 1253175822, "indices": [40, 55], "id_str": "1253175822", "screen_name": "vinceperritano", "name": "Vince"}, {"id": 1253175822, "indices": [59, 74], "id_str": "1253175822", "screen_name": "vinceperritano", "name": "Vince"}], "hashtags": [{"indices": [76, 85], "text": "Ferguson"}], "urls": [{"url": "http://t.co/WNSLwHuSf7", "indices": [114, 136], "expanded_url": "http://twitter.com/vinceperritano/status/500659660366811137/photo/1", "display_url": "pic.twitter.com/WNSLwHuSf7"}]}, "in_reply_to_screen_name": "MedicalQuack", "in_reply_to_user_id": 15248550, "retweet_count": 13, "id_str": "501037323384283137", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1729022250, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000067018516/0cec4f6118b41cb1a53008543be33bf5.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000411210355/ba9497dc483d1ac0448572f6178d764c_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/4oQxpSRJ93", "indices": [0, 23], "expanded_url": "https://www.facebook.com/Hounds-For-Hillary-689574601144473", "display_url": "facebook.com/Hounds-For-Hil\u2026"}]}, "description": {"urls": []}}, "followers_count": 7284, "profile_sidebar_border_color": "FFFFFF", "id_str": "1729022250", "profile_background_color": "C0DEED", "listed_count": 113, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 5575, "description": "Nose2ground evidence+reason seeker.Prowls with @CryinAllTheTime + @BlueVA_Hound hunting RWNJ lies.We r loyal follows #Inequality #CIR #NotOneMore #green #maddow", "friends_count": 8312, "location": "Houndsville Blue USA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000411210355/ba9497dc483d1ac0448572f6178d764c_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1729022250/1378312788", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000067018516/0cec4f6118b41cb1a53008543be33bf5.jpeg", "screen_name": "DoggedlyBlue", "lang": "en", "profile_background_tile": false, "favourites_count": 19, "name": "PowerHounds", "notifications": false, "url": "https://t.co/4oQxpSRJ93", "created_at": "Wed Sep 04 15:14:10 +0000 2013", "contributors_enabled": false, "time_zone": "Indiana (East)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "15248550", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 16:06:21 +0000 2014", "in_reply_to_status_id_str": "500829713041199105", "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1214192959, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000100940262/42d048b0873eda006597addf106a62a8.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/431492837872386048/trGva93W_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 2112, "profile_sidebar_border_color": "FFFFFF", "id_str": "1214192959", "profile_background_color": "C0DEED", "listed_count": 48, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 21196, "description": "Mother of polar opposites. The one at the South Pole has a better life, still surrounded by a land mass. The one at the North Pole bobs up and down a lot.", "friends_count": 2107, "location": "Between Rural & Urban MN", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/431492837872386048/trGva93W_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1214192959/1399232812", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000100940262/42d048b0873eda006597addf106a62a8.jpeg", "screen_name": "Molly1Jo", "lang": "en", "profile_background_tile": true, "favourites_count": 9968, "name": "Molly Jo Miller", "notifications": false, "url": null, "created_at": "Sun Feb 24 01:47:39 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @PzFeed: One shot and seven injured overnight in Ferguson. Curfew will be in place for the second night. AP http://t.co/ubsMwGcYzv", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064227344646144, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 2838219291, "indices": [3, 10], "id_str": "2838219291", "screen_name": "PzFeed", "name": "PzFeed Advertising"}], "hashtags": [], "urls": [], "media": [{"source_user_id": 292777349, "source_status_id_str": "501057297498775553", "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "source_user_id_str": "292777349", "source_status_id": 501057297498775553, "id_str": "501057296781553667", "sizes": {"large": {"h": 670, "resize": "fit", "w": 1024}, "small": {"h": 222, "resize": "fit", "w": 340}, "medium": {"h": 392, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [111, 133], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 322, "id_str": "501064227344646144", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "One shot and seven injured overnight in Ferguson. Curfew will be in place for the second night. AP http://t.co/ubsMwGcYzv", "is_quote_status": false, "in_reply_to_status_id": 500888292770861056, "id": 501057297498775553, "favorite_count": 111, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [{"expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "id_str": "501057296781553667", "sizes": {"large": {"h": 670, "resize": "fit", "w": 1024}, "small": {"h": 222, "resize": "fit", "w": 340}, "medium": {"h": 392, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [99, 121], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg"}]}, "in_reply_to_screen_name": "pzf", "in_reply_to_user_id": 292777349, "retweet_count": 322, "id_str": "501057297498775553", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 292777349, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676529721274945540/1RQ39euJ_normal.jpg", "profile_sidebar_fill_color": "EADEAA", "entities": {"url": {"urls": [{"url": "https://t.co/Q8HIb8qQbq", "indices": [0, 23], "expanded_url": "http://PzFeed.com", "display_url": "PzFeed.com"}]}, "description": {"urls": []}}, "followers_count": 297251, "profile_sidebar_border_color": "FFFFFF", "id_str": "292777349", "profile_background_color": "8B542B", "listed_count": 3819, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 44216, "description": "A global news channel bringing you breaking news as it happens and the most talked about stories, pictures and videos from around the world.", "friends_count": 12461, "location": "tips@PzFeed.com", "profile_link_color": "9D582E", "profile_image_url": "http://pbs.twimg.com/profile_images/676529721274945540/1RQ39euJ_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/292777349/1410983400", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "screen_name": "pzf", "lang": "en", "profile_background_tile": false, "favourites_count": 314, "name": "Breaking News Feed", "notifications": false, "url": "https://t.co/Q8HIb8qQbq", "created_at": "Wed May 04 06:32:13 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "292777349", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:25:43 +0000 2014", "in_reply_to_status_id_str": "500888292770861056", "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "id_str": "501057296781553667", "sizes": {"large": {"h": 670, "resize": "fit", "w": 1024}, "small": {"h": 222, "resize": "fit", "w": 340}, "medium": {"h": 392, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [99, 121], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 298329334, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/617160270041886720/8uuF8iUc.jpg", "verified": false, "profile_text_color": "353535", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731607968911790080/OmcLWlGD_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 2069, "profile_sidebar_border_color": "000000", "id_str": "298329334", "profile_background_color": "ABB8C2", "listed_count": 22, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 188689, "description": "I'm having some Don King issues dammit.", "friends_count": 985, "location": "", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/731607968911790080/OmcLWlGD_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/298329334/1461593078", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/617160270041886720/8uuF8iUc.jpg", "screen_name": "xMurderCWrote", "lang": "en", "profile_background_tile": true, "favourites_count": 8108, "name": "C.", "notifications": false, "url": null, "created_at": "Sat May 14 03:50:28 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 292777349, "source_status_id_str": "501057297498775553", "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "source_user_id_str": "292777349", "source_status_id": 501057297498775553, "id_str": "501057296781553667", "sizes": {"large": {"h": 670, "resize": "fit", "w": 1024}, "small": {"h": 222, "resize": "fit", "w": 340}, "medium": {"h": 392, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [111, 133], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @Salon: The latest from #Ferguson: 7 protestors arrested, 1 critically wounded http://t.co/zn9nmslR3d", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064227688558592, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 16955991, "indices": [3, 9], "id_str": "16955991", "screen_name": "Salon", "name": "Salon.com"}], "hashtags": [{"indices": [27, 36], "text": "Ferguson"}], "urls": [{"url": "http://t.co/zn9nmslR3d", "indices": [82, 104], "expanded_url": "http://slnm.us/F2lrads", "display_url": "slnm.us/F2lrads"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 43, "id_str": "501064227688558592", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The latest from #Ferguson: 7 protestors arrested, 1 critically wounded http://t.co/zn9nmslR3d", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501023759260987393, "favorite_count": 10, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [16, 25], "text": "Ferguson"}], "urls": [{"url": "http://t.co/zn9nmslR3d", "indices": [71, 93], "expanded_url": "http://slnm.us/F2lrads", "display_url": "slnm.us/F2lrads"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 43, "id_str": "501023759260987393", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 16955991, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/512628326733586432/CZCFcWP_.jpeg", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2157824008/Salon.Logo.Square.small_normal.jpg", "profile_sidebar_fill_color": "EEEEEE", "entities": {"url": {"urls": [{"url": "http://t.co/kpNqjDEGL3", "indices": [0, 22], "expanded_url": "http://www.Salon.com", "display_url": "Salon.com"}]}, "description": {"urls": [{"url": "http://t.co/arAhFcxlTr", "indices": [111, 133], "expanded_url": "http://www.facebook.com/salon", "display_url": "facebook.com/salon"}]}}, "followers_count": 609575, "profile_sidebar_border_color": "FFFFFF", "id_str": "16955991", "profile_background_color": "CC0000", "listed_count": 15173, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 116485, "description": "Providing fearless political journalism and cultural analysis since the dawn of the digital era. We're also at http://t.co/arAhFcxlTr", "friends_count": 6050, "location": "", "profile_link_color": "CC0000", "profile_image_url": "http://pbs.twimg.com/profile_images/2157824008/Salon.Logo.Square.small_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/512628326733586432/CZCFcWP_.jpeg", "screen_name": "Salon", "lang": "en", "profile_background_tile": true, "favourites_count": 1148, "name": "Salon.com", "notifications": false, "url": "http://t.co/kpNqjDEGL3", "created_at": "Fri Oct 24 20:13:31 +0000 2008", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 15:12:27 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 1305908575, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/511426525170638848/DWSITWQk.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/720922803793305600/u4XQ0cmd_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/2MXyfj1Itt", "indices": [0, 23], "expanded_url": "http://allpoetry.com", "display_url": "allpoetry.com"}]}, "description": {"urls": []}}, "followers_count": 2925, "profile_sidebar_border_color": "FFFFFF", "id_str": "1305908575", "profile_background_color": "3A754F", "listed_count": 415, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 88163, "description": "human being/writer/poet/progressive lib", "friends_count": 2913, "location": "California, USA", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/720922803793305600/u4XQ0cmd_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1305908575/1452153619", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/511426525170638848/DWSITWQk.jpeg", "screen_name": "bleedingheartmx", "lang": "en", "profile_background_tile": true, "favourites_count": 38588, "name": "rigoberto duarte", "notifications": false, "url": "https://t.co/2MXyfj1Itt", "created_at": "Tue Mar 26 23:18:44 +0000 2013", "contributors_enabled": false, "time_zone": "America/Los_Angeles", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "@ewg118 once you have the wikidata id in hand you look for GND (P227) and ISNI (P213) in the JSON e.g. https://t.co/F1AKY8vSv7 @ryanfb", "is_quote_status": false, "in_reply_to_status_id": 615968208865005569, "id": 615973042443956225, "favorite_count": 0, "source": "Tweetbot for Mac", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 34019920, "indices": [0, 7], "id_str": "34019920", "screen_name": "ewg118", "name": "Ethan Gruber"}, {"id": 14298448, "indices": [127, 134], "id_str": "14298448", "screen_name": "ryanfb", "name": "Ryan Baumann"}], "hashtags": [], "urls": [{"url": "https://t.co/F1AKY8vSv7", "indices": [103, 126], "expanded_url": "https://gist.github.com/edsu/0a29527dc52cf9e439b4", "display_url": "gist.github.com/edsu/0a29527dc\u2026"}]}, "in_reply_to_screen_name": "ewg118", "in_reply_to_user_id": 34019920, "retweet_count": 0, "id_str": "615973042443956225", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 14331818, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/690939312179957760/bhU1I0aa.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686487544188526592/k4u-YEpT_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"url": {"urls": [{"url": "http://t.co/KCVMLqoUma", "indices": [0, 22], "expanded_url": "http://inkdroid.org", "display_url": "inkdroid.org"}]}, "description": {"urls": []}}, "followers_count": 4220, "profile_sidebar_border_color": "000000", "id_str": "14331818", "profile_background_color": "9AE4E8", "listed_count": 356, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 23530, "description": "I'm a software developer at @umd_mith & study archives on & of the web at @iSchoolUMD", "friends_count": 2203, "location": "Silver Spring, MD", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/686487544188526592/k4u-YEpT_normal.jpg", "following": true, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14331818/1452465995", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/690939312179957760/bhU1I0aa.jpg", "screen_name": "edsu", "lang": "en", "profile_background_tile": false, "favourites_count": 7560, "name": "Ed Summers", "notifications": false, "url": "http://t.co/KCVMLqoUma", "created_at": "Tue Apr 08 12:43:41 +0000 2008", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "34019920", "possibly_sensitive": false, "lang": "en", "created_at": "Tue Jun 30 19:59:52 +0000 2015", "in_reply_to_status_id_str": "615968208865005569", "place": {"full_name": "College Park, MD", "url": "https://api.twitter.com/1.1/geo/id/e4c17912c815124d.json", "country": "United States", "place_type": "city", "bounding_box": {"type": "Polygon", "coordinates": [[[-76.9655961, 38.971053], [-76.903378, 38.971053], [-76.903378, 39.022888], [-76.9655961, 39.022888]]]}, "contained_within": [], "country_code": "US", "attributes": {}, "id": "e4c17912c815124d", "name": "College Park"}} {"contributors": null, "truncated": false, "text": "Source: Obama says reaching an #Iran deal is below 50/50 http://t.co/vR9wAjeHaz #News #health #politics", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172328149118976, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [31, 36], "text": "Iran"}, {"indices": [80, 85], "text": "News"}, {"indices": [86, 93], "text": "health"}, {"indices": [94, 103], "text": "politics"}], "urls": [{"url": "http://t.co/vR9wAjeHaz", "indices": [57, 79], "expanded_url": "http://goo.gl/fZKWsN", "display_url": "goo.gl/fZKWsN"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "619172328149118976", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 2830090062, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/514810305705041920/hnzIPM7v_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/gbteP5hOmI", "indices": [0, 23], "expanded_url": "http://mojahedin.org", "display_url": "mojahedin.org"}]}, "description": {"urls": []}}, "followers_count": 37, "profile_sidebar_border_color": "C0DEED", "id_str": "2830090062", "profile_background_color": "C0DEED", "listed_count": 35, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 35237, "description": "Democracy for Iran", "friends_count": 45, "location": "London, England", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/514810305705041920/hnzIPM7v_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "stahl_soraya", "lang": "en", "profile_background_tile": false, "favourites_count": 4481, "name": "Soraya Stahl", "notifications": false, "url": "https://t.co/gbteP5hOmI", "created_at": "Wed Sep 24 16:13:18 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:41 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @CBSNews: U.S. rethinks giving excess military gear to local police after Ferguson, Mo., unrest - http://t.co/QsRK5NpbbT http://t.co/kLP\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064231488200704, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 15012486, "indices": [3, 11], "id_str": "15012486", "screen_name": "CBSNews", "name": "CBS News"}], "hashtags": [], "urls": [{"url": "http://t.co/QsRK5NpbbT", "indices": [101, 123], "expanded_url": "http://cbsn.ws/1pUgAxU", "display_url": "cbsn.ws/1pUgAxU"}], "media": [{"source_user_id": 15012486, "source_status_id_str": "500981251114020864", "expanded_url": "http://twitter.com/CBSNews/status/500981251114020864/photo/1", "display_url": "pic.twitter.com/kLPKlqWlDp", "url": "http://t.co/kLPKlqWlDp", "media_url_https": "https://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg", "source_user_id_str": "15012486", "source_status_id": 500981251114020864, "id_str": "500981250958835712", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 346, "resize": "fit", "w": 617}, "medium": {"h": 336, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [124, 140], "type": "photo", "id": 500981250958835712, "media_url": "http://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 369, "id_str": "501064231488200704", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "U.S. rethinks giving excess military gear to local police after Ferguson, Mo., unrest - http://t.co/QsRK5NpbbT http://t.co/kLPKlqWlDp", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500981251114020864, "favorite_count": 175, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/QsRK5NpbbT", "indices": [88, 110], "expanded_url": "http://cbsn.ws/1pUgAxU", "display_url": "cbsn.ws/1pUgAxU"}], "media": [{"expanded_url": "http://twitter.com/CBSNews/status/500981251114020864/photo/1", "display_url": "pic.twitter.com/kLPKlqWlDp", "url": "http://t.co/kLPKlqWlDp", "media_url_https": "https://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg", "id_str": "500981250958835712", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 346, "resize": "fit", "w": 617}, "medium": {"h": 336, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [111, 133], "type": "photo", "id": 500981250958835712, "media_url": "http://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 369, "id_str": "500981251114020864", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 15012486, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/736106551/37bf1f784305fe4a9c7e9105772c6e1a.jpeg", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645966750941626368/d0Q4voGK_normal.jpg", "profile_sidebar_fill_color": "EAEDF0", "entities": {"url": {"urls": [{"url": "https://t.co/VGut7r2Vg5", "indices": [0, 23], "expanded_url": "http://CBSNews.com", "display_url": "CBSNews.com"}]}, "description": {"urls": []}}, "followers_count": 4506641, "profile_sidebar_border_color": "FFFFFF", "id_str": "15012486", "profile_background_color": "D9DADA", "listed_count": 41744, "is_translation_enabled": true, "utc_offset": -14400, "statuses_count": 99594, "description": "The official twitter feed of @CBSNews. Follow for original reporting and trusted news.", "friends_count": 387, "location": "New York, NY", "profile_link_color": "B12124", "profile_image_url": "http://pbs.twimg.com/profile_images/645966750941626368/d0Q4voGK_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15012486/1461341901", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/736106551/37bf1f784305fe4a9c7e9105772c6e1a.jpeg", "screen_name": "CBSNews", "lang": "en", "profile_background_tile": false, "favourites_count": 214, "name": "CBS News", "notifications": false, "url": "https://t.co/VGut7r2Vg5", "created_at": "Thu Jun 05 00:54:31 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 12:23:32 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/CBSNews/status/500981251114020864/photo/1", "display_url": "pic.twitter.com/kLPKlqWlDp", "url": "http://t.co/kLPKlqWlDp", "media_url_https": "https://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg", "id_str": "500981250958835712", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 346, "resize": "fit", "w": 617}, "medium": {"h": 336, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [111, 133], "type": "photo", "id": 500981250958835712, "media_url": "http://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2600797508, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/499046788041420800/_xEENCFB_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/BcoG44I6np", "indices": [0, 23], "expanded_url": "https://www.facebook.com/lalunalarosa", "display_url": "facebook.com/lalunalarosa"}]}, "description": {"urls": []}}, "followers_count": 147, "profile_sidebar_border_color": "C0DEED", "id_str": "2600797508", "profile_background_color": "C0DEED", "listed_count": 12, "is_translation_enabled": true, "utc_offset": -10800, "statuses_count": 1857, "description": "Amateur trader, looking for advice and direction. 26, Single, Extremely awesome. Been most of the way around the world.. ... Yabba dabba Dooo!", "friends_count": 199, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/499046788041420800/_xEENCFB_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2600797508/1405867730", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "YogiBearSarah", "lang": "en", "profile_background_tile": false, "favourites_count": 113, "name": "Sarah Miller", "notifications": false, "url": "https://t.co/BcoG44I6np", "created_at": "Thu Jul 03 01:48:42 +0000 2014", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 15012486, "source_status_id_str": "500981251114020864", "expanded_url": "http://twitter.com/CBSNews/status/500981251114020864/photo/1", "display_url": "pic.twitter.com/kLPKlqWlDp", "url": "http://t.co/kLPKlqWlDp", "media_url_https": "https://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg", "source_user_id_str": "15012486", "source_status_id": 500981251114020864, "id_str": "500981250958835712", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 346, "resize": "fit", "w": 617}, "medium": {"h": 336, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [124, 140], "type": "photo", "id": 500981250958835712, "media_url": "http://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @thehill: JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172235488718848, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1917731, "indices": [3, 11], "id_str": "1917731", "screen_name": "thehill", "name": "The Hill"}], "hashtags": [], "urls": [{"url": "http://t.co/0WZIQMNf50", "indices": [75, 97], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4"}], "media": [{"source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [98, 120], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619172235488718848", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171737033396224, "favorite_count": 4, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/0WZIQMNf50", "indices": [62, 84], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4"}], "media": [{"expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [85, 107], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619171737033396224", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1917731, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "profile_sidebar_fill_color": "EBEBEB", "entities": {"url": {"urls": [{"url": "http://t.co/t414UtTRv4", "indices": [0, 22], "expanded_url": "http://www.thehill.com", "display_url": "thehill.com"}]}, "description": {"urls": []}}, "followers_count": 747989, "profile_sidebar_border_color": "ADADAA", "id_str": "1917731", "profile_background_color": "9AE4E8", "listed_count": 16660, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 190708, "description": "The Hill is the premier source for policy and political news. Follow for tweets on what's happening in Washington, breaking news and retweets of our reporters.", "friends_count": 489, "location": "Washington, DC", "profile_link_color": "FF0021", "profile_image_url": "http://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1917731/1434034905", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "screen_name": "thehill", "lang": "en", "profile_background_tile": true, "favourites_count": 26, "name": "The Hill", "notifications": false, "url": "http://t.co/t414UtTRv4", "created_at": "Thu Mar 22 18:15:18 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:50:20 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [85, 107], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 74640730, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/600742331067846657/7rAiVh_Z_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"description": {"urls": []}}, "followers_count": 1263, "profile_sidebar_border_color": "EEEEEE", "id_str": "74640730", "profile_background_color": "131516", "listed_count": 41, "is_translation_enabled": false, "utc_offset": 36000, "statuses_count": 8454, "description": "Gay. Activist. Lefty. Boy Crazy. Mac Owner. News Junkie. DJ Wannabe. Caffeine Addict. Ex-Expat.", "friends_count": 1169, "location": "Washington, DC", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/600742331067846657/7rAiVh_Z_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/74640730/1455072656", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "ahulse", "lang": "en", "profile_background_tile": true, "favourites_count": 492, "name": "Aaron Hulse", "notifications": false, "url": null, "created_at": "Wed Sep 16 03:23:47 +0000 2009", "contributors_enabled": false, "time_zone": "Sydney", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:19 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [98, 120], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @agabriew: -mam\u00e1, \u00bfpuedo salir?\n-no.\n-pero todos mis amigos ir\u00e1n.\n-\u00a1no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172293936291840, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 3246768862, "indices": [3, 12], "id_str": "3246768862", "screen_name": "agabriew", "name": "\u200f\ufe0f\u200f\ufe0f"}], "hashtags": [], "urls": [], "media": [{"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "619172293936291840", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "-mam\u00e1, \u00bfpuedo salir?\n-no.\n-pero todos mis amigos ir\u00e1n.\n-\u00a1no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618569774763630592, "favorite_count": 318, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [{"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "618569774763630592", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 3246768862, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 804, "profile_sidebar_border_color": "000000", "id_str": "3246768862", "profile_background_color": "000000", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 839, "description": "en un d\u00eda largo me quit\u00e9 el sost\u00e9n", "friends_count": 296, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3246768862/1456961166", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "screen_name": "agabriew", "lang": "es", "profile_background_tile": true, "favourites_count": 53353, "name": "\u200f\ufe0f\u200f\ufe0f", "notifications": false, "url": null, "created_at": "Mon May 11 20:00:55 +0000 2015", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Tue Jul 07 23:58:21 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}, {"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "id_str": "618569772037500929", "sizes": {"small": {"h": 510, "resize": "fit", "w": 340}, "large": {"h": 900, "resize": "fit", "w": 600}, "medium": {"h": 900, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 79286766, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/264008701/image", "verified": false, "profile_text_color": "D173C8", "profile_image_url_https": "https://pbs.twimg.com/profile_images/696480597926141952/mwupgN-7_normal.jpg", "profile_sidebar_fill_color": "E1F00E", "entities": {"description": {"urls": []}}, "followers_count": 479, "profile_sidebar_border_color": "8DB2C4", "id_str": "79286766", "profile_background_color": "21EBEB", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 53964, "description": "Porque la vida es sue\u00f1o y los sue\u00f1os, sue\u00f1os son. | Mechanical Engineering student |", "friends_count": 402, "location": "802, Puerto Rico ", "profile_link_color": "A394A3", "profile_image_url": "http://pbs.twimg.com/profile_images/696480597926141952/mwupgN-7_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/79286766/1445955057", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/264008701/image", "screen_name": "7vacasvoladoras", "lang": "en", "profile_background_tile": true, "favourites_count": 13104, "name": "Skinny Hulk", "notifications": false, "url": null, "created_at": "Fri Oct 02 21:03:30 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:33 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}, {"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772037500929", "sizes": {"small": {"h": 510, "resize": "fit", "w": 340}, "large": {"h": 900, "resize": "fit", "w": 600}, "medium": {"h": 900, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @PzFeed: One shot and seven injured overnight in Ferguson. Curfew will be in place for the second night. AP http://t.co/ubsMwGcYzv", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064229915729921, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 2838219291, "indices": [3, 10], "id_str": "2838219291", "screen_name": "PzFeed", "name": "PzFeed Advertising"}], "hashtags": [], "urls": [], "media": [{"source_user_id": 292777349, "source_status_id_str": "501057297498775553", "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "source_user_id_str": "292777349", "source_status_id": 501057297498775553, "id_str": "501057296781553667", "sizes": {"large": {"h": 670, "resize": "fit", "w": 1024}, "small": {"h": 222, "resize": "fit", "w": 340}, "medium": {"h": 392, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [111, 133], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 322, "id_str": "501064229915729921", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "One shot and seven injured overnight in Ferguson. Curfew will be in place for the second night. AP http://t.co/ubsMwGcYzv", "is_quote_status": false, "in_reply_to_status_id": 500888292770861056, "id": 501057297498775553, "favorite_count": 111, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [{"expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "id_str": "501057296781553667", "sizes": {"large": {"h": 670, "resize": "fit", "w": 1024}, "small": {"h": 222, "resize": "fit", "w": 340}, "medium": {"h": 392, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [99, 121], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg"}]}, "in_reply_to_screen_name": "pzf", "in_reply_to_user_id": 292777349, "retweet_count": 322, "id_str": "501057297498775553", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 292777349, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676529721274945540/1RQ39euJ_normal.jpg", "profile_sidebar_fill_color": "EADEAA", "entities": {"url": {"urls": [{"url": "https://t.co/Q8HIb8qQbq", "indices": [0, 23], "expanded_url": "http://PzFeed.com", "display_url": "PzFeed.com"}]}, "description": {"urls": []}}, "followers_count": 297251, "profile_sidebar_border_color": "FFFFFF", "id_str": "292777349", "profile_background_color": "8B542B", "listed_count": 3819, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 44216, "description": "A global news channel bringing you breaking news as it happens and the most talked about stories, pictures and videos from around the world.", "friends_count": 12461, "location": "tips@PzFeed.com", "profile_link_color": "9D582E", "profile_image_url": "http://pbs.twimg.com/profile_images/676529721274945540/1RQ39euJ_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/292777349/1410983400", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "screen_name": "pzf", "lang": "en", "profile_background_tile": false, "favourites_count": 314, "name": "Breaking News Feed", "notifications": false, "url": "https://t.co/Q8HIb8qQbq", "created_at": "Wed May 04 06:32:13 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "292777349", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:25:43 +0000 2014", "in_reply_to_status_id_str": "500888292770861056", "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "id_str": "501057296781553667", "sizes": {"large": {"h": 670, "resize": "fit", "w": 1024}, "small": {"h": 222, "resize": "fit", "w": 340}, "medium": {"h": 392, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [99, 121], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1252417778, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/543892021132668928/XAgMinZw_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 449, "profile_sidebar_border_color": "C0DEED", "id_str": "1252417778", "profile_background_color": "C0DEED", "listed_count": 18, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 62259, "description": "Teklife Footwork Juke Bass Music Going feral to rewild the human organism eyes wide open in the church of what's happening now, steady in the deep end.", "friends_count": 309, "location": "NYC", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/543892021132668928/XAgMinZw_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1252417778/1416910137", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Onionlizard", "lang": "en", "profile_background_tile": false, "favourites_count": 13036, "name": "On yo face", "notifications": false, "url": null, "created_at": "Fri Mar 08 18:22:29 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 292777349, "source_status_id_str": "501057297498775553", "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "source_user_id_str": "292777349", "source_status_id": 501057297498775553, "id_str": "501057296781553667", "sizes": {"large": {"h": 670, "resize": "fit", "w": 1024}, "small": {"h": 222, "resize": "fit", "w": 340}, "medium": {"h": 392, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [111, 133], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @OpFerguson: This is a photo we received of a local pastor who was shot by security forces in Ferguson last night. | #OpFerguson http://\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064232570724352, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 2721777926, "indices": [3, 14], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson"}], "hashtags": [{"indices": [120, 131], "text": "OpFerguson"}], "urls": [], "media": [{"source_user_id": 2721777926, "source_status_id_str": "499965266202091521", "expanded_url": "http://twitter.com/OpFerguson/status/499965266202091521/photo/1", "display_url": "pic.twitter.com/Mr9tzJ2eG9", "url": "http://t.co/Mr9tzJ2eG9", "media_url_https": "https://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg", "source_user_id_str": "2721777926", "source_status_id": 499965266202091521, "id_str": "499965265249959936", "sizes": {"large": {"h": 640, "resize": "fit", "w": 640}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 499965265249959936, "media_url": "http://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 797, "id_str": "501064232570724352", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "This is a photo we received of a local pastor who was shot by security forces in Ferguson last night. | #OpFerguson http://t.co/Mr9tzJ2eG9", "is_quote_status": false, "in_reply_to_status_id": null, "id": 499965266202091521, "favorite_count": 267, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [104, 115], "text": "OpFerguson"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/OpFerguson/status/499965266202091521/photo/1", "display_url": "pic.twitter.com/Mr9tzJ2eG9", "url": "http://t.co/Mr9tzJ2eG9", "media_url_https": "https://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg", "id_str": "499965265249959936", "sizes": {"large": {"h": 640, "resize": "fit", "w": 640}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [116, 138], "type": "photo", "id": 499965265249959936, "media_url": "http://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 797, "id_str": "499965266202091521", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2721777926, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/704841929683415040/G5_zTCMs_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 73383, "profile_sidebar_border_color": "C0DEED", "id_str": "2721777926", "profile_background_color": "C0DEED", "listed_count": 794, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 62650, "description": "Anonymous Operation Ferguson", "friends_count": 287, "location": "Ferguson, MO - USA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/704841929683415040/G5_zTCMs_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2721777926/1408632774", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "OpFerguson", "lang": "en", "profile_background_tile": false, "favourites_count": 1800, "name": "Operation Ferguson", "notifications": false, "url": null, "created_at": "Sun Aug 10 14:44:21 +0000 2014", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 14 17:06:23 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/OpFerguson/status/499965266202091521/photo/1", "display_url": "pic.twitter.com/Mr9tzJ2eG9", "url": "http://t.co/Mr9tzJ2eG9", "media_url_https": "https://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg", "id_str": "499965265249959936", "sizes": {"large": {"h": 640, "resize": "fit", "w": 640}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [116, 138], "type": "photo", "id": 499965265249959936, "media_url": "http://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1016818370, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/436663377817899008/H-PJHCmj_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 524, "profile_sidebar_border_color": "C0DEED", "id_str": "1016818370", "profile_background_color": "C0DEED", "listed_count": 9, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 410, "description": "#4EYMG Producer - #ScootOva - #Cloud10\n JuKoDaNewShow\r\nFor bookings email Dajuice24@gmail.com", "friends_count": 786, "location": "MD/DC/VA stand up!", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/436663377817899008/H-PJHCmj_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "JukoDaNewShow", "lang": "en", "profile_background_tile": false, "favourites_count": 79, "name": "Juko Da NewShow", "notifications": false, "url": null, "created_at": "Mon Dec 17 06:15:11 +0000 2012", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 2721777926, "source_status_id_str": "499965266202091521", "expanded_url": "http://twitter.com/OpFerguson/status/499965266202091521/photo/1", "display_url": "pic.twitter.com/Mr9tzJ2eG9", "url": "http://t.co/Mr9tzJ2eG9", "media_url_https": "https://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg", "source_user_id_str": "2721777926", "source_status_id": 499965266202091521, "id_str": "499965265249959936", "sizes": {"large": {"h": 640, "resize": "fit", "w": 640}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 499965265249959936, "media_url": "http://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @1970Rachael: Looting, Riots, over $10 million damages over a lost hockey game, few arrests, #whiteprivilege #vancouver #Ferguson http:/\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064235456401410, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1889304062, "indices": [3, 15], "id_str": "1889304062", "screen_name": "1970Rachael", "name": "Rachael Jones"}], "hashtags": [{"indices": [96, 111], "text": "whiteprivilege"}, {"indices": [112, 122], "text": "vancouver"}, {"indices": [123, 132], "text": "Ferguson"}], "urls": [], "media": [{"source_user_id": 1889304062, "source_status_id_str": "500794526530031616", "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg", "source_user_id_str": "1889304062", "source_status_id": 500794526530031616, "id_str": "500794524164050945", "sizes": {"small": {"h": 168, "resize": "fit", "w": 300}, "large": {"h": 168, "resize": "fit", "w": 300}, "medium": {"h": 168, "resize": "fit", "w": 300}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 500794524164050945, "media_url": "http://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1882, "id_str": "501064235456401410", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Looting, Riots, over $10 million damages over a lost hockey game, few arrests, #whiteprivilege #vancouver #Ferguson http://t.co/ftjDldeJtZ", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500794526530031616, "favorite_count": 579, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [79, 94], "text": "whiteprivilege"}, {"indices": [95, 105], "text": "vancouver"}, {"indices": [106, 115], "text": "Ferguson"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg", "id_str": "500794524164050945", "sizes": {"small": {"h": 168, "resize": "fit", "w": 300}, "large": {"h": 168, "resize": "fit", "w": 300}, "medium": {"h": 168, "resize": "fit", "w": 300}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [116, 138], "type": "photo", "id": 500794524164050945, "media_url": "http://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1882, "id_str": "500794526530031616", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1889304062, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/508364216936304640/WCaJ6MUD_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 746, "profile_sidebar_border_color": "C0DEED", "id_str": "1889304062", "profile_background_color": "C0DEED", "listed_count": 12, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 9358, "description": "mother of two, love to travel", "friends_count": 216, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/508364216936304640/WCaJ6MUD_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1889304062/1432512172", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "1970Rachael", "lang": "en", "profile_background_tile": false, "favourites_count": 14235, "name": "Rachael Jones", "notifications": false, "url": null, "created_at": "Sat Sep 21 07:40:21 +0000 2013", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 00:01:34 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg", "id_str": "500794524164050945", "sizes": {"small": {"h": 168, "resize": "fit", "w": 300}, "large": {"h": 168, "resize": "fit", "w": 300}, "medium": {"h": 168, "resize": "fit", "w": 300}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [116, 138], "type": "photo", "id": 500794524164050945, "media_url": "http://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg"}, {"expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92qCYAAp7bC.jpg", "id_str": "500794524235358208", "sizes": {"large": {"h": 180, "resize": "fit", "w": 280}, "small": {"h": 180, "resize": "fit", "w": 280}, "medium": {"h": 180, "resize": "fit", "w": 280}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [116, 138], "type": "photo", "id": 500794524235358208, "media_url": "http://pbs.twimg.com/media/BvMt92qCYAAp7bC.jpg"}, {"expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92zCMAAAWGQ.jpg", "id_str": "500794524273094656", "sizes": {"small": {"h": 183, "resize": "fit", "w": 275}, "large": {"h": 183, "resize": "fit", "w": 275}, "medium": {"h": 183, "resize": "fit", "w": 275}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [116, 138], "type": "photo", "id": 500794524273094656, "media_url": "http://pbs.twimg.com/media/BvMt92zCMAAAWGQ.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 33150423, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/596877627123601408/JtbSJXp-_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 182, "profile_sidebar_border_color": "C0DEED", "id_str": "33150423", "profile_background_color": "C0DEED", "listed_count": 4, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 18721, "description": "How do you know where I'm at if you havent been where I've been,understand where I'm comin from?", "friends_count": 303, "location": "Dyckman", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/596877627123601408/JtbSJXp-_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "pabsgimme", "lang": "en", "profile_background_tile": false, "favourites_count": 155, "name": "Pablo Diablo", "notifications": false, "url": null, "created_at": "Sun Apr 19 06:37:51 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 1889304062, "source_status_id_str": "500794526530031616", "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg", "source_user_id_str": "1889304062", "source_status_id": 500794526530031616, "id_str": "500794524164050945", "sizes": {"small": {"h": 168, "resize": "fit", "w": 300}, "large": {"h": 168, "resize": "fit", "w": 300}, "medium": {"h": 168, "resize": "fit", "w": 300}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 500794524164050945, "media_url": "http://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg"}, {"source_user_id": 1889304062, "source_status_id_str": "500794526530031616", "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92qCYAAp7bC.jpg", "source_user_id_str": "1889304062", "source_status_id": 500794526530031616, "id_str": "500794524235358208", "sizes": {"large": {"h": 180, "resize": "fit", "w": 280}, "small": {"h": 180, "resize": "fit", "w": 280}, "medium": {"h": 180, "resize": "fit", "w": 280}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 500794524235358208, "media_url": "http://pbs.twimg.com/media/BvMt92qCYAAp7bC.jpg"}, {"source_user_id": 1889304062, "source_status_id_str": "500794526530031616", "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92zCMAAAWGQ.jpg", "source_user_id_str": "1889304062", "source_status_id": 500794526530031616, "id_str": "500794524273094656", "sizes": {"small": {"h": 183, "resize": "fit", "w": 275}, "large": {"h": 183, "resize": "fit", "w": 275}, "medium": {"h": 183, "resize": "fit", "w": 275}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 500794524273094656, "media_url": "http://pbs.twimg.com/media/BvMt92zCMAAAWGQ.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @reallyimathug: Repost From USELESS FACTS! Fuck 12! #Ferguson Shit. https://t.co/BJtHHsqhzi", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064235107897344, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 99673990, "indices": [3, 17], "id_str": "99673990", "screen_name": "reallyimathug", "name": "Nicole Jae"}], "hashtags": [{"indices": [55, 64], "text": "Ferguson"}], "urls": [{"url": "https://t.co/BJtHHsqhzi", "indices": [72, 95], "expanded_url": "https://vine.co/v/MYF9p0MMDhO", "display_url": "vine.co/v/MYF9p0MMDhO"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 6, "id_str": "501064235107897344", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Repost From USELESS FACTS! Fuck 12! #Ferguson Shit. https://t.co/BJtHHsqhzi", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062103550410755, "favorite_count": 4, "source": "Vine - Make a Scene", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [36, 45], "text": "Ferguson"}], "urls": [{"url": "https://t.co/BJtHHsqhzi", "indices": [53, 76], "expanded_url": "https://vine.co/v/MYF9p0MMDhO", "display_url": "vine.co/v/MYF9p0MMDhO"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 6, "id_str": "501062103550410755", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 99673990, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000156110661/DuncPXwh.jpeg", "verified": false, "profile_text_color": "F50C0C", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734623358592110593/g6mw7MkN_normal.jpg", "profile_sidebar_fill_color": "E6F6F9", "entities": {"description": {"urls": []}}, "followers_count": 12359, "profile_sidebar_border_color": "FFFFFF", "id_str": "99673990", "profile_background_color": "DBE9ED", "listed_count": 22, "is_translation_enabled": false, "utc_offset": -28800, "statuses_count": 14056, "description": "don't mix up yo people hoe. - Juvie", "friends_count": 12410, "location": "California", "profile_link_color": "050505", "profile_image_url": "http://pbs.twimg.com/profile_images/734623358592110593/g6mw7MkN_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/99673990/1461127679", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000156110661/DuncPXwh.jpeg", "screen_name": "reallyimathug", "lang": "en", "profile_background_tile": false, "favourites_count": 741, "name": "Nicole Jae", "notifications": false, "url": null, "created_at": "Sun Dec 27 09:02:05 +0000 2009", "contributors_enabled": false, "time_zone": "Alaska", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:44:49 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 316702265, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441062551116193793/3qAzeETi.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689093260195803136/liogYpys_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 2751, "profile_sidebar_border_color": "000000", "id_str": "316702265", "profile_background_color": "000000", "listed_count": 8, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 95941, "description": "Focus on you until the focus is on you.", "friends_count": 1529, "location": "ATL - Howard University '19", "profile_link_color": "000000", "profile_image_url": "http://pbs.twimg.com/profile_images/689093260195803136/liogYpys_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/316702265/1457840564", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441062551116193793/3qAzeETi.jpeg", "screen_name": "Ju_JustGetsIt", "lang": "en", "profile_background_tile": true, "favourites_count": 7790, "name": "Julian", "notifications": false, "url": null, "created_at": "Mon Jun 13 20:57:28 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @lordxmen2k: So what Gov wants is for people to go home and do what? Pretend murder didn't happen so that he & cops can sweep it under t\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064229764751360, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 138409823, "indices": [3, 14], "id_str": "138409823", "screen_name": "lordxmen2k", "name": "LiberalValuesNetwork"}], "hashtags": [{"indices": [143, 144], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 19, "id_str": "501064229764751360", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "So what Gov wants is for people to go home and do what? Pretend murder didn't happen so that he & cops can sweep it under the rug? #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501059100432928768, "favorite_count": 9, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [135, 144], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 19, "id_str": "501059100432928768", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 138409823, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/650889223189479424/MssaEVtQ.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/665332369210015744/hO3fNS29_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/ksYlsit7wo", "indices": [0, 23], "expanded_url": "http://www.liberalvaluesnetwork.com", "display_url": "liberalvaluesnetwork.com"}]}, "description": {"urls": []}}, "followers_count": 14352, "profile_sidebar_border_color": "000000", "id_str": "138409823", "profile_background_color": "131516", "listed_count": 354, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 119736, "description": "Keeping you informed with the latest news from across the Internet. Will never let Fox News a.k.a The Ministry of Misinformation win. #LVN", "friends_count": 5709, "location": "The World", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/665332369210015744/hO3fNS29_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/138409823/1444021004", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/650889223189479424/MssaEVtQ.jpg", "screen_name": "lordxmen2k", "lang": "en", "profile_background_tile": true, "favourites_count": 42415, "name": "LiberalValuesNetwork", "notifications": false, "url": "https://t.co/ksYlsit7wo", "created_at": "Thu Apr 29 13:29:46 +0000 2010", "contributors_enabled": false, "time_zone": "America/New_York", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:32:53 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2494747518, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466698522729787392/jEbAG_eN.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/707430221058842624/98xKD-Ky_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 1386, "profile_sidebar_border_color": "FFFFFF", "id_str": "2494747518", "profile_background_color": "89C9FA", "listed_count": 31, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 42638, "description": "Politically progressive, very loving. Made this twitter to tweet during TYTLive.", "friends_count": 723, "location": "", "profile_link_color": "F5ABB5", "profile_image_url": "http://pbs.twimg.com/profile_images/707430221058842624/98xKD-Ky_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2494747518/1461216268", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466698522729787392/jEbAG_eN.jpeg", "screen_name": "PrincessLib_TYT", "lang": "en", "profile_background_tile": true, "favourites_count": 51756, "name": "Annie", "notifications": false, "url": null, "created_at": "Wed May 14 19:47:02 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Project Jupyter receive 6M in funding http://t.co/p1p030aU0Q", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618602288781860864, "favorite_count": 4, "source": "Mobile Web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/p1p030aU0Q", "indices": [38, 60], "expanded_url": "http://blog.jupyter.org/2015/07/07/jupyter-funding-2015/", "display_url": "blog.jupyter.org/2015/07/07/jup\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "618602288781860864", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 14331818, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/690939312179957760/bhU1I0aa.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686487544188526592/k4u-YEpT_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"url": {"urls": [{"url": "http://t.co/KCVMLqoUma", "indices": [0, 22], "expanded_url": "http://inkdroid.org", "display_url": "inkdroid.org"}]}, "description": {"urls": []}}, "followers_count": 4220, "profile_sidebar_border_color": "000000", "id_str": "14331818", "profile_background_color": "9AE4E8", "listed_count": 356, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 23530, "description": "I'm a software developer at @umd_mith & study archives on & of the web at @iSchoolUMD", "friends_count": 2203, "location": "Silver Spring, MD", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/686487544188526592/k4u-YEpT_normal.jpg", "following": true, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14331818/1452465995", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/690939312179957760/bhU1I0aa.jpg", "screen_name": "edsu", "lang": "en", "profile_background_tile": false, "favourites_count": 7560, "name": "Ed Summers", "notifications": false, "url": "http://t.co/KCVMLqoUma", "created_at": "Tue Apr 08 12:43:41 +0000 2008", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Jul 08 02:07:33 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Siguen sus patrocinadores que apoyan el Islam m\u00e1s radical.\n\nLo que es inconcebible es como sus amigos del looby... http://t.co/XMEA8MB00i", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172320880533504, "favorite_count": 0, "source": "Facebook", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/XMEA8MB00i", "indices": [115, 137], "expanded_url": "http://fb.me/3PX5tyirG", "display_url": "fb.me/3PX5tyirG"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172320880533504", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 206608014, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/459182807864971264/4nrR9RxQ.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/716015158397636608/OZVvgqSB_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/7Z35Hw1eJw", "indices": [0, 23], "expanded_url": "http://www.facebook.com/armintenn", "display_url": "facebook.com/armintenn"}]}, "description": {"urls": []}}, "followers_count": 3212, "profile_sidebar_border_color": "000000", "id_str": "206608014", "profile_background_color": "131516", "listed_count": 21, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 43221, "description": "", "friends_count": 3189, "location": " Spain", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/716015158397636608/OZVvgqSB_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/206608014/1460764993", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/459182807864971264/4nrR9RxQ.jpeg", "screen_name": "ArminTenn", "lang": "es", "profile_background_tile": true, "favourites_count": 1175, "name": "Armin Tenn", "notifications": false, "url": "https://t.co/7Z35Hw1eJw", "created_at": "Sat Oct 23 09:46:59 +0000 2010", "contributors_enabled": false, "time_zone": "Madrid", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:39 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Dick Cheney\u2019s Ongoing Descent Into Insanity Accidentally Clarifies Iran Debate http://t.co/vlEHC6W6f8 via @intelligencer", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172281751711748, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 45565185, "indices": [106, 120], "id_str": "45565185", "screen_name": "intelligencer", "name": "Daily Intelligencer"}], "hashtags": [], "urls": [{"url": "http://t.co/vlEHC6W6f8", "indices": [79, 101], "expanded_url": "http://nym.ag/1FhHSII?mid=twitter-share-di", "display_url": "nym.ag/1FhHSII?mid=tw\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172281751711748", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 27202261, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/460540621711609856/BwpiSM4v_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 1201, "profile_sidebar_border_color": "C0DEED", "id_str": "27202261", "profile_background_color": "C0DEED", "listed_count": 16, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 23715, "description": "", "friends_count": 1812, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/460540621711609856/BwpiSM4v_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Dushan41", "lang": "en", "profile_background_tile": false, "favourites_count": 4, "name": "Dushan", "notifications": false, "url": null, "created_at": "Sat Mar 28 09:04:18 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:30 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @Jerusalem_Post: US remains quiet as Russia and Iran seek to close nuclear deal in 'hours' http://t.co/72vUX7XU6I", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172227813126144, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 19489239, "indices": [3, 18], "id_str": "19489239", "screen_name": "Jerusalem_Post", "name": "The Jerusalem Post"}], "hashtags": [], "urls": [{"url": "http://t.co/72vUX7XU6I", "indices": [94, 116], "expanded_url": "http://bit.ly/1HkYoTD", "display_url": "bit.ly/1HkYoTD"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619172227813126144", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "US remains quiet as Russia and Iran seek to close nuclear deal in 'hours' http://t.co/72vUX7XU6I", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619149783588995073, "favorite_count": 11, "source": "twitterfeed", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/72vUX7XU6I", "indices": [74, 96], "expanded_url": "http://bit.ly/1HkYoTD", "display_url": "bit.ly/1HkYoTD"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619149783588995073", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 19489239, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/807693672/d3fad13d9b3c1a30b4178707b6f5c510.jpeg", "verified": true, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2277095328/1fgtdoo7v3pypp6j6it2_normal.jpeg", "profile_sidebar_fill_color": "F7F2F2", "entities": {"url": {"urls": [{"url": "http://t.co/rpl4VioSDq", "indices": [0, 22], "expanded_url": "http://www.jpost.com", "display_url": "jpost.com"}]}, "description": {"urls": [{"url": "http://t.co/jGNlQw5vX8", "indices": [132, 154], "expanded_url": "http://on.fb.me/1rXHPsJ", "display_url": "on.fb.me/1rXHPsJ"}]}}, "followers_count": 269970, "profile_sidebar_border_color": "FFFFFF", "id_str": "19489239", "profile_background_color": "FFFFFF", "listed_count": 7297, "is_translation_enabled": false, "utc_offset": -7200, "statuses_count": 100766, "description": "The official Jerusalem Post Twitter page featuring breaking news from Israel, the Middle East and the Jewish World.\r\n\r\nOn Facebook: http://t.co/jGNlQw5vX8", "friends_count": 23760, "location": "Israel ", "profile_link_color": "BB131A", "profile_image_url": "http://pbs.twimg.com/profile_images/2277095328/1fgtdoo7v3pypp6j6it2_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19489239/1355937086", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/807693672/d3fad13d9b3c1a30b4178707b6f5c510.jpeg", "screen_name": "Jerusalem_Post", "lang": "en", "profile_background_tile": false, "favourites_count": 45, "name": "The Jerusalem Post", "notifications": false, "url": "http://t.co/rpl4VioSDq", "created_at": "Sun Jan 25 14:17:26 +0000 2009", "contributors_enabled": false, "time_zone": "Greenland", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 14:23:06 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2432870707, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683832311138357248/_PwbOSEX_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 503, "profile_sidebar_border_color": "C0DEED", "id_str": "2432870707", "profile_background_color": "C0DEED", "listed_count": 29, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 18261, "description": "", "friends_count": 2076, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/683832311138357248/_PwbOSEX_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2432870707/1449454835", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "KringlaHeimsins", "lang": "no", "profile_background_tile": false, "favourites_count": 10130, "name": "Heimskringla", "notifications": false, "url": null, "created_at": "Tue Apr 08 01:46:57 +0000 2014", "contributors_enabled": false, "time_zone": "Paris", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:17 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "\u201cDespedirse no duele, duelen todos los momentos que se ir\u00e1n con ese adi\u00f3s.\u201d \u2014 Hazel Grace.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172331592773632, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172331592773632", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2500422674, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522498476521705473/0q2Cf9sg_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 17, "profile_sidebar_border_color": "C0DEED", "id_str": "2500422674", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 201, "description": "\u2112\u2134 \u211au\u212f \u2133\u212f \u210bac\u212f \u2131\u212f\u2113iz \u212fs \u2130star \u212d\u2134nti\u210a\u2134 \u212c\u2134ca \u211au\u212frid\u2134 \u2665\u044f\u0454\u2202 \u043d\u03c3\u0442 \u03c2\u043d\u03b9\u2113\u03b9 \u03c1\u0454\u03c1\u03c1\u0454\u044f\u0455\u2665 Blandista\u2665", "friends_count": 43, "location": "Merida", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/522498476521705473/0q2Cf9sg_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "pecanEgba74318", "lang": "en", "profile_background_tile": false, "favourites_count": 6, "name": "Juan Pe\u00f1a", "notifications": false, "url": null, "created_at": "Sat May 17 02:42:44 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "es", "created_at": "Thu Jul 09 15:52:42 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Obama, lawmakers brace for end of Iran talks http://t.co/dDP0H3acH3", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172162608463873, "favorite_count": 0, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/dDP0H3acH3", "indices": [45, 67], "expanded_url": "http://ift.tt/1KXNpVM", "display_url": "ift.tt/1KXNpVM"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172162608463873", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 2944164937, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/640699128834564096/f_kmhntm_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"url": {"urls": [{"url": "https://t.co/D2Sgigx00x", "indices": [0, 23], "expanded_url": "https://plus.google.com/+MiroslavMiroGeorgiev", "display_url": "plus.google.com/+MiroslavMiroG\u2026"}]}, "description": {"urls": []}}, "followers_count": 946, "profile_sidebar_border_color": "000000", "id_str": "2944164937", "profile_background_color": "000000", "listed_count": 142, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 337679, "description": "#Libert\u00e9, #\u00e9galit\u00e9, #fraternit\u00e9\n#ViveLaFrance #ViveLaTerre", "friends_count": 4234, "location": "Stone Mountain, GA", "profile_link_color": "000000", "profile_image_url": "http://pbs.twimg.com/profile_images/640699128834564096/f_kmhntm_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2944164937/1419614501", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "mirogeorgiev97", "lang": "en", "profile_background_tile": false, "favourites_count": 1263, "name": "Miroslav Georgiev", "notifications": false, "url": "https://t.co/D2Sgigx00x", "created_at": "Fri Dec 26 17:07:31 +0000 2014", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:01 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @marcbassets: tensi\u00f3n+expectativas en las \u00faltimas horas de negociaci\u00f3n con Ir\u00e1n en la Theodor-Herzl-Platz de Viena #IranTalksVienna http\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172236134588416, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 101609539, "indices": [3, 15], "id_str": "101609539", "screen_name": "marcbassets", "name": "Marc Bassets"}], "hashtags": [{"indices": [118, 134], "text": "IranTalksVienna"}], "urls": [], "media": [{"source_user_id": 101609539, "source_status_id_str": "619171536600219648", "expanded_url": "http://twitter.com/marcbassets/status/619171536600219648/photo/1", "display_url": "pic.twitter.com/pNYeq4Iw31", "url": "http://t.co/pNYeq4Iw31", "media_url_https": "https://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg", "source_user_id_str": "101609539", "source_status_id": 619171536600219648, "id_str": "619171517545451520", "sizes": {"large": {"h": 640, "resize": "fit", "w": 852}, "small": {"h": 255, "resize": "fit", "w": 340}, "medium": {"h": 451, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 619171517545451520, "media_url": "http://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "619172236134588416", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "tensi\u00f3n+expectativas en las \u00faltimas horas de negociaci\u00f3n con Ir\u00e1n en la Theodor-Herzl-Platz de Viena #IranTalksVienna http://t.co/pNYeq4Iw31", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171536600219648, "favorite_count": 2, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [101, 117], "text": "IranTalksVienna"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/marcbassets/status/619171536600219648/photo/1", "display_url": "pic.twitter.com/pNYeq4Iw31", "url": "http://t.co/pNYeq4Iw31", "media_url_https": "https://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg", "id_str": "619171517545451520", "sizes": {"large": {"h": 640, "resize": "fit", "w": 852}, "small": {"h": 255, "resize": "fit", "w": 340}, "medium": {"h": 451, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [118, 140], "type": "photo", "id": 619171517545451520, "media_url": "http://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "619171536600219648", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 101609539, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/531658888635224064/UUSIhsKV_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/6UiBMCTTx4", "indices": [0, 23], "expanded_url": "http://elpais.com/autor/marc_bassets_claret/a/", "display_url": "elpais.com/autor/marc_bas\u2026"}]}, "description": {"urls": []}}, "followers_count": 4227, "profile_sidebar_border_color": "C0DEED", "id_str": "101609539", "profile_background_color": "C0DEED", "listed_count": 190, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 12190, "description": "El Pa\u00eds, USA. Barcelona, Bruxelles, Berlin, New York, Washington. Ex-Vanguardia", "friends_count": 751, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/531658888635224064/UUSIhsKV_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "marcbassets", "lang": "en", "profile_background_tile": false, "favourites_count": 10193, "name": "Marc Bassets", "notifications": false, "url": "https://t.co/6UiBMCTTx4", "created_at": "Mon Jan 04 00:16:33 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:49:32 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/marcbassets/status/619171536600219648/photo/1", "display_url": "pic.twitter.com/pNYeq4Iw31", "url": "http://t.co/pNYeq4Iw31", "media_url_https": "https://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg", "id_str": "619171517545451520", "sizes": {"large": {"h": 640, "resize": "fit", "w": 852}, "small": {"h": 255, "resize": "fit", "w": 340}, "medium": {"h": 451, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [118, 140], "type": "photo", "id": 619171517545451520, "media_url": "http://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 274013085, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1799626336/claudi2_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"url": {"urls": [{"url": "https://t.co/G4MCMG7YRe", "indices": [0, 23], "expanded_url": "http://elpais.com/autor/claudi_perez/a/", "display_url": "elpais.com/autor/claudi_p\u2026"}]}, "description": {"urls": []}}, "followers_count": 12566, "profile_sidebar_border_color": "000000", "id_str": "274013085", "profile_background_color": "000000", "listed_count": 565, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 23660, "description": "Brussels bureau chief, El Pa\u00eds.", "friends_count": 2119, "location": "", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/1799626336/claudi2_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/274013085/1459967068", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "claudiperez", "lang": "es", "profile_background_tile": false, "favourites_count": 1905, "name": "Claudi P\u00e9rez", "notifications": false, "url": "https://t.co/G4MCMG7YRe", "created_at": "Tue Mar 29 15:17:26 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:19 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 101609539, "source_status_id_str": "619171536600219648", "expanded_url": "http://twitter.com/marcbassets/status/619171536600219648/photo/1", "display_url": "pic.twitter.com/pNYeq4Iw31", "url": "http://t.co/pNYeq4Iw31", "media_url_https": "https://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg", "source_user_id_str": "101609539", "source_status_id": 619171536600219648, "id_str": "619171517545451520", "sizes": {"large": {"h": 640, "resize": "fit", "w": 852}, "small": {"h": 255, "resize": "fit", "w": 340}, "medium": {"h": 451, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 619171517545451520, "media_url": "http://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg"}]}} {"contributors": null, "truncated": false, "text": "Medios israel\u00edes: Israel ha sido vencido por Ir\u00e1n: http://t.co/uKAGBY6jya", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172170233679872, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/uKAGBY6jya", "indices": [51, 73], "expanded_url": "http://www.almanar.com.lb/spanish/adetails.php?eid=99845&frid=23&seccatid=30&cid=23&fromval=1#.VZ6X6RTpAGI.twitter", "display_url": "almanar.com.lb/spanish/adetai\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172170233679872", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 339224221, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/430686460493053952/zCl26nQe_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 192, "profile_sidebar_border_color": "C0DEED", "id_str": "339224221", "profile_background_color": "C0DEED", "listed_count": 1, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 1181, "description": "", "friends_count": 189, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/430686460493053952/zCl26nQe_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "CarlosPPartidas", "lang": "es", "profile_background_tile": false, "favourites_count": 37, "name": "Carlos P Partidas", "notifications": false, "url": null, "created_at": "Wed Jul 20 19:35:20 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:03 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Rand Paul Promises to Illegally Trade Weapons for Hostages With Iran http://t.co/331OtRvnyh via @intelligencer", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172321564098560, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 45565185, "indices": [96, 110], "id_str": "45565185", "screen_name": "intelligencer", "name": "Daily Intelligencer"}], "hashtags": [], "urls": [{"url": "http://t.co/331OtRvnyh", "indices": [69, 91], "expanded_url": "http://nym.ag/1FcDxqi?mid=twitter-share-di", "display_url": "nym.ag/1FcDxqi?mid=tw\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172321564098560", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 27202261, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/460540621711609856/BwpiSM4v_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 1201, "profile_sidebar_border_color": "C0DEED", "id_str": "27202261", "profile_background_color": "C0DEED", "listed_count": 16, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 23715, "description": "", "friends_count": 1812, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/460540621711609856/BwpiSM4v_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Dushan41", "lang": "en", "profile_background_tile": false, "favourites_count": 4, "name": "Dushan", "notifications": false, "url": null, "created_at": "Sat Mar 28 09:04:18 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:39 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "@MEAIndia @narendramodi @HassanRouhani terrorist country iran should stop terror against India &Israel", "is_quote_status": false, "in_reply_to_status_id": 619016126685523968, "id": 619172282183725056, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 441636351, "indices": [0, 9], "id_str": "441636351", "screen_name": "MEAIndia", "name": "Vikas Swarup"}, {"id": 18839785, "indices": [10, 23], "id_str": "18839785", "screen_name": "narendramodi", "name": "Narendra Modi"}, {"id": 1404590618, "indices": [24, 38], "id_str": "1404590618", "screen_name": "HassanRouhani", "name": "Hassan Rouhani"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "MEAIndia", "in_reply_to_user_id": 441636351, "retweet_count": 0, "id_str": "619172282183725056", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1249284978, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/493996009555361792/MXythK0I_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 196, "profile_sidebar_border_color": "C0DEED", "id_str": "1249284978", "profile_background_color": "C0DEED", "listed_count": 6, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 9879, "description": "", "friends_count": 9, "location": "Kurukshetra (Haryana),INDIA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/493996009555361792/MXythK0I_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SumitSidhu7", "lang": "en", "profile_background_tile": false, "favourites_count": 5944, "name": "Sumit Sidhu", "notifications": false, "url": null, "created_at": "Thu Mar 07 15:00:49 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "441636351", "lang": "en", "created_at": "Thu Jul 09 15:52:30 +0000 2015", "in_reply_to_status_id_str": "619016126685523968", "place": null} {"contributors": null, "truncated": false, "text": "RT @StephyIsChillin: @zellieimani ferguson, surrounding counties, and county (brown) police are know for their disgusting abuse of power ag\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064228288364546, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 325076723, "indices": [21, 33], "id_str": "325076723", "screen_name": "zellieimani", "name": "zellie"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 8, "id_str": "501064228288364546", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "@zellieimani ferguson, surrounding counties, and county (brown) police are know for their disgusting abuse of power against us! Corruption!!", "is_quote_status": false, "in_reply_to_status_id": 501061201141309440, "id": 501061859575734272, "favorite_count": 3, "source": "Tweetlogix", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 325076723, "indices": [0, 12], "id_str": "325076723", "screen_name": "zellieimani", "name": "zellie"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "zellieimani", "in_reply_to_user_id": 325076723, "retweet_count": 8, "id_str": "501061859575734272", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 31878193, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000127139100/3oNb8I_n.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/730122442044149760/L10Uuy4Z_normal.jpg", "profile_sidebar_fill_color": "F6F6F6", "entities": {"description": {"urls": []}}, "followers_count": 1946, "profile_sidebar_border_color": "000000", "id_str": "31878193", "profile_background_color": "191C10", "listed_count": 75, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 135080, "description": "stay out my happy place. follow-- @CannaBeFree", "friends_count": 1496, "location": "BrownGirl 314 \u270c\ufe0f", "profile_link_color": "038543", "profile_image_url": "http://pbs.twimg.com/profile_images/730122442044149760/L10Uuy4Z_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31878193/1456539315", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000127139100/3oNb8I_n.jpeg", "screen_name": "LivingLoving314", "lang": "en", "profile_background_tile": false, "favourites_count": 23999, "name": "StephanieShante", "notifications": false, "url": null, "created_at": "Thu Apr 16 15:13:17 +0000 2009", "contributors_enabled": false, "time_zone": "America/Chicago", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "325076723", "lang": "en", "created_at": "Sun Aug 17 17:43:51 +0000 2014", "in_reply_to_status_id_str": "501061201141309440", "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 23598003, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "0E0D11", "profile_image_url_https": "https://pbs.twimg.com/profile_images/590576292984188929/Gsk_cRvk_normal.jpg", "profile_sidebar_fill_color": "E8E8F7", "entities": {"description": {"urls": []}}, "followers_count": 1163, "profile_sidebar_border_color": "130107", "id_str": "23598003", "profile_background_color": "3E43EF", "listed_count": 53, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 37982, "description": "Compassionate Cynic. Follow me and I will follow you, if @Twitter lets me!", "friends_count": 2005, "location": "USA", "profile_link_color": "1C08E7", "profile_image_url": "http://pbs.twimg.com/profile_images/590576292984188929/Gsk_cRvk_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "victoriasview", "lang": "en", "profile_background_tile": true, "favourites_count": 18350, "name": "Victoria's View 365", "notifications": false, "url": null, "created_at": "Tue Mar 10 14:30:25 +0000 2009", "contributors_enabled": false, "time_zone": "America/Los_Angeles", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @mkraju: Senior senators DO NOT expect Kerry to announce Iran deal today. But do expect the administration to suggest there have been br\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172157197819905, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 39155029, "indices": [3, 10], "id_str": "39155029", "screen_name": "mkraju", "name": "Manu Raju"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 19, "id_str": "619172157197819905", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Senior senators DO NOT expect Kerry to announce Iran deal today. But do expect the administration to suggest there have been breakthroughs", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619170599471083520, "favorite_count": 6, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 19, "id_str": "619170599471083520", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 39155029, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/139198220/Wrigley_web3.jpg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/697549062103547904/s4Uq3S2u_normal.jpg", "profile_sidebar_fill_color": "C0DFEC", "entities": {"url": {"urls": [{"url": "https://t.co/vtt0v8C3y8", "indices": [0, 23], "expanded_url": "http://www.facebook.com/mkraju00", "display_url": "facebook.com/mkraju00"}]}, "description": {"urls": []}}, "followers_count": 31027, "profile_sidebar_border_color": "A8C7F7", "id_str": "39155029", "profile_background_color": "022330", "listed_count": 1129, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 14821, "description": "Senior Political Reporter, @CNN. Covering Capitol Hill and 2016. @POLITICO vet. Die-hard Chicago sports fan. Wisconsin Badger for life. manu.raju @cnn.com", "friends_count": 3252, "location": "The Capitol", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/697549062103547904/s4Uq3S2u_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39155029/1456522880", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/139198220/Wrigley_web3.jpg", "screen_name": "mkraju", "lang": "en", "profile_background_tile": false, "favourites_count": 987, "name": "Manu Raju", "notifications": false, "url": "https://t.co/vtt0v8C3y8", "created_at": "Mon May 11 01:13:00 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:45:49 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 16192197, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000008522306/d6b7c65e64af4253fc7f7cd9278a9dfd.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/719541638968664064/hcIDOzVi_normal.jpg", "profile_sidebar_fill_color": "A4D48C", "entities": {"url": {"urls": [{"url": "http://t.co/IlRGizNGqq", "indices": [0, 22], "expanded_url": "http://uani.com", "display_url": "uani.com"}]}, "description": {"urls": []}}, "followers_count": 7604, "profile_sidebar_border_color": "FFFFFF", "id_str": "16192197", "profile_background_color": "D9E0D9", "listed_count": 310, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 29764, "description": "United Against Nuclear Iran is a not-for-profit, non-partisan, advocacy group that seeks to prevent Iran from fulfilling its ambition to obtain nuclear weapons.", "friends_count": 1010, "location": "", "profile_link_color": "083D41", "profile_image_url": "http://pbs.twimg.com/profile_images/719541638968664064/hcIDOzVi_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16192197/1462568525", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000008522306/d6b7c65e64af4253fc7f7cd9278a9dfd.jpeg", "screen_name": "UANI", "lang": "en", "profile_background_tile": false, "favourites_count": 75, "name": "UANI", "notifications": false, "url": "http://t.co/IlRGizNGqq", "created_at": "Mon Sep 08 21:09:04 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:00 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @agabriew: -mam\u00e1, \u00bfpuedo salir?\n-no.\n-pero todos mis amigos ir\u00e1n.\n-\u00a1no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172300689031168, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 3246768862, "indices": [3, 12], "id_str": "3246768862", "screen_name": "agabriew", "name": "\u200f\ufe0f\u200f\ufe0f"}], "hashtags": [], "urls": [], "media": [{"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "619172300689031168", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "-mam\u00e1, \u00bfpuedo salir?\n-no.\n-pero todos mis amigos ir\u00e1n.\n-\u00a1no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618569774763630592, "favorite_count": 318, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [{"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "618569774763630592", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 3246768862, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 804, "profile_sidebar_border_color": "000000", "id_str": "3246768862", "profile_background_color": "000000", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 839, "description": "en un d\u00eda largo me quit\u00e9 el sost\u00e9n", "friends_count": 296, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3246768862/1456961166", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "screen_name": "agabriew", "lang": "es", "profile_background_tile": true, "favourites_count": 53353, "name": "\u200f\ufe0f\u200f\ufe0f", "notifications": false, "url": null, "created_at": "Mon May 11 20:00:55 +0000 2015", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Tue Jul 07 23:58:21 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}, {"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "id_str": "618569772037500929", "sizes": {"small": {"h": 510, "resize": "fit", "w": 340}, "large": {"h": 900, "resize": "fit", "w": 600}, "medium": {"h": 900, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2195036713, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/730795221038993412/ICFBeE0A_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 369, "profile_sidebar_border_color": "C0DEED", "id_str": "2195036713", "profile_background_color": "C0DEED", "listed_count": 1, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 23730, "description": "17. Humacao.", "friends_count": 137, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/730795221038993412/ICFBeE0A_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2195036713/1461116872", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "_ylberr", "lang": "es", "profile_background_tile": false, "favourites_count": 946, "name": "yamiiiiiii", "notifications": false, "url": null, "created_at": "Thu Nov 14 23:36:05 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:34 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}, {"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772037500929", "sizes": {"small": {"h": 510, "resize": "fit", "w": 340}, "large": {"h": 900, "resize": "fit", "w": 600}, "medium": {"h": 900, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg"}]}} {"contributors": null, "truncated": false, "text": "Wie man in Teheran durch den Stau kommt - mit Sirene und Blaulicht! Tagessatz: zwischen 250 bis 300 Euro. Mehr: \nhttp://t.co/54C8IoOsCV", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172338177843200, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/54C8IoOsCV", "indices": [113, 135], "expanded_url": "http://iranjournal.org/bilder-aus-dem-iran", "display_url": "iranjournal.org/bilder-aus-dem\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172338177843200", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 62625898, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000077406500/a65e118e0a30fd484c8217bd797d964a.jpeg", "verified": false, "profile_text_color": "634047", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660155286905229312/uRu3bt23_normal.png", "profile_sidebar_fill_color": "E3E2DE", "entities": {"description": {"urls": [{"url": "http://t.co/iy63fwBy", "indices": [26, 46], "expanded_url": "http://www.ohchr.org/en/udhr/pages/introduction.aspx", "display_url": "ohchr.org/en/udhr/pages/\u2026"}]}}, "followers_count": 1720, "profile_sidebar_border_color": "FFFFFF", "id_str": "62625898", "profile_background_color": "941616", "listed_count": 198, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 428004, "description": "Human Rights Defender \r\n\r\nhttp://t.co/iy63fwBy", "friends_count": 2010, "location": "Eurasien", "profile_link_color": "088253", "profile_image_url": "http://pbs.twimg.com/profile_images/660155286905229312/uRu3bt23_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/62625898/1374960404", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000077406500/a65e118e0a30fd484c8217bd797d964a.jpeg", "screen_name": "DeinAyurvedaNet", "lang": "en", "profile_background_tile": false, "favourites_count": 81860, "name": "Dein Ayurveda Net", "notifications": false, "url": null, "created_at": "Mon Aug 03 21:25:15 +0000 2009", "contributors_enabled": false, "time_zone": "Berlin", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "de", "created_at": "Thu Jul 09 15:52:43 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @NegarMortazavi: A nuclear agreement will remove threat of war from Iran, empower moderates, weaken radicals, energize civil society, im\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172314710609920, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 41789292, "indices": [3, 18], "id_str": "41789292", "screen_name": "NegarMortazavi", "name": "Negar \u0646\u06af\u0627\u0631"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 53, "id_str": "619172314710609920", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "A nuclear agreement will remove threat of war from Iran, empower moderates, weaken radicals, energize civil society, improve people's lives.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619168450594783232, "favorite_count": 73, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 53, "id_str": "619168450594783232", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 41789292, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/457181709620875264/PJZE_U5L.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686329053792452608/ACwT-F-9_normal.png", "profile_sidebar_fill_color": "F3F3F3", "entities": {"url": {"urls": [{"url": "https://t.co/se8qLevfG2", "indices": [0, 23], "expanded_url": "http://facebook.com/negarmore", "display_url": "facebook.com/negarmore"}]}, "description": {"urls": []}}, "followers_count": 96054, "profile_sidebar_border_color": "FFFFFF", "id_str": "41789292", "profile_background_color": "EBEBEB", "listed_count": 1378, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 21872, "description": "Iranian-American Journalist and Commentator | Guardian's list of top 10 twitter feeds on #Iran | Former TV host @VOANews", "friends_count": 1772, "location": "New York, NY", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/686329053792452608/ACwT-F-9_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41789292/1443117502", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/457181709620875264/PJZE_U5L.jpeg", "screen_name": "NegarMortazavi", "lang": "en", "profile_background_tile": false, "favourites_count": 35396, "name": "Negar \u0646\u06af\u0627\u0631", "notifications": false, "url": "https://t.co/se8qLevfG2", "created_at": "Fri May 22 10:38:56 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:37:16 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2381151, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000163848632/QpUNaLgi.jpeg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/34648722/amir2_normal.jpg", "profile_sidebar_fill_color": "E0FF92", "entities": {"description": {"urls": []}}, "followers_count": 381, "profile_sidebar_border_color": "FFFFFF", "id_str": "2381151", "profile_background_color": "B2DFDA", "listed_count": 27, "is_translation_enabled": false, "utc_offset": 16200, "statuses_count": 4437, "description": "A PhD Candidate of systems engineering. Loves stories, traveling, food, Indie music and start-ups. DC is the wife of my neighbor.", "friends_count": 1742, "location": "Qazvin , iran", "profile_link_color": "93A644", "profile_image_url": "http://pbs.twimg.com/profile_images/34648722/amir2_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000163848632/QpUNaLgi.jpeg", "screen_name": "contromir", "lang": "en", "profile_background_tile": false, "favourites_count": 1521, "name": "Amir", "notifications": false, "url": null, "created_at": "Tue Mar 27 00:52:38 +0000 2007", "contributors_enabled": false, "time_zone": "Tehran", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:38 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @NegarMortazavi: A nuclear agreement will remove threat of war from Iran, empower moderates, weaken radicals, energize civil society, im\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172275741298688, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 41789292, "indices": [3, 18], "id_str": "41789292", "screen_name": "NegarMortazavi", "name": "Negar \u0646\u06af\u0627\u0631"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 53, "id_str": "619172275741298688", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "A nuclear agreement will remove threat of war from Iran, empower moderates, weaken radicals, energize civil society, improve people's lives.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619168450594783232, "favorite_count": 73, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 53, "id_str": "619168450594783232", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 41789292, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/457181709620875264/PJZE_U5L.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686329053792452608/ACwT-F-9_normal.png", "profile_sidebar_fill_color": "F3F3F3", "entities": {"url": {"urls": [{"url": "https://t.co/se8qLevfG2", "indices": [0, 23], "expanded_url": "http://facebook.com/negarmore", "display_url": "facebook.com/negarmore"}]}, "description": {"urls": []}}, "followers_count": 96054, "profile_sidebar_border_color": "FFFFFF", "id_str": "41789292", "profile_background_color": "EBEBEB", "listed_count": 1378, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 21872, "description": "Iranian-American Journalist and Commentator | Guardian's list of top 10 twitter feeds on #Iran | Former TV host @VOANews", "friends_count": 1772, "location": "New York, NY", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/686329053792452608/ACwT-F-9_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41789292/1443117502", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/457181709620875264/PJZE_U5L.jpeg", "screen_name": "NegarMortazavi", "lang": "en", "profile_background_tile": false, "favourites_count": 35396, "name": "Negar \u0646\u06af\u0627\u0631", "notifications": false, "url": "https://t.co/se8qLevfG2", "created_at": "Fri May 22 10:38:56 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:37:16 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 47073035, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/498666396583084032/3PK3dkBL_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 63, "profile_sidebar_border_color": "C0DEED", "id_str": "47073035", "profile_background_color": "C0DEED", "listed_count": 8, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 3450, "description": "", "friends_count": 154, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/498666396583084032/3PK3dkBL_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/47073035/1381985367", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "msoltanm", "lang": "en", "profile_background_tile": false, "favourites_count": 334, "name": "Mehdi Soltan M", "notifications": false, "url": null, "created_at": "Sun Jun 14 10:55:54 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:28 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Kerry to make statement on Iran nuclear talks http://t.co/X5RqURv5tu", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172281294655488, "favorite_count": 0, "source": "Facebook", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/X5RqURv5tu", "indices": [46, 68], "expanded_url": "http://fb.me/6HI0yqdBy", "display_url": "fb.me/6HI0yqdBy"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172281294655488", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 42226593, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595898101/k1v8f8sh44ssaxvp28bx.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692365304995975168/xly9-72s_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 2114, "profile_sidebar_border_color": "C0DEED", "id_str": "42226593", "profile_background_color": "642D8B", "listed_count": 75, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 250349, "description": "Born Again, Conservative, pilot. It's time to take America back!", "friends_count": 2153, "location": "Ohio", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/692365304995975168/xly9-72s_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/42226593/1398268696", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595898101/k1v8f8sh44ssaxvp28bx.jpeg", "screen_name": "shirleycolleen", "lang": "en", "profile_background_tile": true, "favourites_count": 12161, "name": "Colleen Hunt", "notifications": false, "url": null, "created_at": "Sun May 24 15:21:14 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:30 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @conchienchia: .@NelsonBocaranda y que dir\u00e0n los apatridas como t\u00f9 d esta forma d combatir disturbios sociales en #Ferguson? http://t.co\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064231304065026, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 415855797, "indices": [3, 16], "id_str": "415855797", "screen_name": "conchienchia", "name": "Chino' Viamonte"}, {"id": 23719107, "indices": [19, 35], "id_str": "23719107", "screen_name": "nelsonbocaranda", "name": "Nelson Bocaranda S."}], "hashtags": [{"indices": [117, 126], "text": "Ferguson"}], "urls": [], "media": [{"source_user_id": 415855797, "source_status_id_str": "501064028039684096", "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "source_user_id_str": "415855797", "source_status_id": 501064028039684096, "id_str": "501064025825087488", "sizes": {"large": {"h": 319, "resize": "fit", "w": 457}, "small": {"h": 237, "resize": "fit", "w": 340}, "medium": {"h": 319, "resize": "fit", "w": 457}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 33, "id_str": "501064231304065026", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": ".@NelsonBocaranda y que dir\u00e0n los apatridas como t\u00f9 d esta forma d combatir disturbios sociales en #Ferguson? http://t.co/nIBbnLO5Gh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064028039684096, "favorite_count": 3, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 23719107, "indices": [1, 17], "id_str": "23719107", "screen_name": "nelsonbocaranda", "name": "Nelson Bocaranda S."}], "hashtags": [{"indices": [99, 108], "text": "Ferguson"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "id_str": "501064025825087488", "sizes": {"large": {"h": 319, "resize": "fit", "w": 457}, "small": {"h": 237, "resize": "fit", "w": 340}, "medium": {"h": 319, "resize": "fit", "w": 457}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [110, 132], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 33, "id_str": "501064028039684096", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 415855797, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722956968630079488/yf_NfQjM_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 17785, "profile_sidebar_border_color": "C0DEED", "id_str": "415855797", "profile_background_color": "C0DEED", "listed_count": 67, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 29943, "description": "primero, ser humano, despuesAbogado,militante revolucionario,agroproductor, 18 a\u00f1os comprometido con el proyecto SIM\u00d3N BOLIVAR.", "friends_count": 19522, "location": "alg\u00fan lugar de venezuela", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/722956968630079488/yf_NfQjM_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/415855797/1461201322", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "conchienchia", "lang": "es", "profile_background_tile": false, "favourites_count": 65, "name": "Chino' Viamonte", "notifications": false, "url": null, "created_at": "Fri Nov 18 22:24:49 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:52:28 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "id_str": "501064025825087488", "sizes": {"large": {"h": 319, "resize": "fit", "w": 457}, "small": {"h": 237, "resize": "fit", "w": 340}, "medium": {"h": 319, "resize": "fit", "w": 457}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [110, 132], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 109035228, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652113414605697028/CBcw-_ao.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652114309544312832/Dynagtt7_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 810, "profile_sidebar_border_color": "C0DEED", "id_str": "109035228", "profile_background_color": "642D8B", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 25077, "description": "Cuman\u00e9s, Profesor Titular Jubilado (UDO).. Revolucionario toda su vida...", "friends_count": 697, "location": "Maturin, Cuman\u00e1, CCS ", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/652114309544312832/Dynagtt7_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652113414605697028/CBcw-_ao.jpg", "screen_name": "lgriverob", "lang": "es", "profile_background_tile": false, "favourites_count": 61, "name": "LuisRiveroBadaracco", "notifications": false, "url": null, "created_at": "Wed Jan 27 19:34:29 +0000 2010", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 415855797, "source_status_id_str": "501064028039684096", "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "source_user_id_str": "415855797", "source_status_id": 501064028039684096, "id_str": "501064025825087488", "sizes": {"large": {"h": 319, "resize": "fit", "w": 457}, "small": {"h": 237, "resize": "fit", "w": 340}, "medium": {"h": 319, "resize": "fit", "w": 457}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @justinsink: No deal today. Diplomats will need at least another day to strike a possible nuclear accord with Iran, officials tell @Indi\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172313846693890, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 346197350, "indices": [3, 14], "id_str": "346197350", "screen_name": "justinsink", "name": "Justin Sink"}, {"id": 239857777, "indices": [134, 140], "id_str": "239857777", "screen_name": "Indira_L", "name": "Indira Lakshmanan"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "619172313846693890", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "No deal today. Diplomats will need at least another day to strike a possible nuclear accord with Iran, officials tell @Indira_L in Vienna", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619170363184939008, "favorite_count": 2, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 239857777, "indices": [118, 127], "id_str": "239857777", "screen_name": "Indira_L", "name": "Indira Lakshmanan"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "619170363184939008", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 346197350, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/312296219/-2.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/496053606479831041/eQq7Y3Td_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 4674, "profile_sidebar_border_color": "C0DEED", "id_str": "346197350", "profile_background_color": "C0DEED", "listed_count": 284, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 10596, "description": "I write about the White House for Bloomberg @business and tweet about Philly sports. E-mail me at jsink1 at bloomberg dot net.", "friends_count": 974, "location": "Washington, DC", "profile_link_color": "24B300", "profile_image_url": "http://pbs.twimg.com/profile_images/496053606479831041/eQq7Y3Td_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/346197350/1398218553", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/312296219/-2.png", "screen_name": "justinsink", "lang": "en", "profile_background_tile": false, "favourites_count": 1404, "name": "Justin Sink", "notifications": false, "url": null, "created_at": "Sun Jul 31 21:58:33 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:44:52 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 75797367, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/457366595359084544/q51Jgzh0.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660721762473263104/3GsV4Kws_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/gqGJsuGQgV", "indices": [0, 22], "expanded_url": "http://danieldrezner.com", "display_url": "danieldrezner.com"}]}, "description": {"urls": [{"url": "http://t.co/iLLgIqIr55", "indices": [97, 119], "expanded_url": "http://goo.gl/2MHgIr", "display_url": "goo.gl/2MHgIr"}]}}, "followers_count": 42765, "profile_sidebar_border_color": "FFFFFF", "id_str": "75797367", "profile_background_color": "C0DEED", "listed_count": 1863, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 92758, "description": "Professor @FletcherSchool. Writer of Spoiler Alerts @washingtonpost. Author of The System Worked http://t.co/iLLgIqIr55. Shaker of hands with Mel Brooks.", "friends_count": 952, "location": "Really, where am I not?", "profile_link_color": "0018B3", "profile_image_url": "http://pbs.twimg.com/profile_images/660721762473263104/3GsV4Kws_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/75797367/1414846663", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/457366595359084544/q51Jgzh0.jpeg", "screen_name": "dandrezner", "lang": "en", "profile_background_tile": true, "favourites_count": 8500, "name": "Daniel Drezner", "notifications": false, "url": "http://t.co/gqGJsuGQgV", "created_at": "Sun Sep 20 14:34:27 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:37 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @TKrypt: #JusticeForMikeBrown #resistthecurfew #MikeBrown #MichaelBrown #Ferguson #OpFerguson http://t.co/mWsSGloTau", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064233774510081, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 2278261981, "indices": [3, 10], "id_str": "2278261981", "screen_name": "TKrypt", "name": "TKrypt"}], "hashtags": [{"indices": [12, 32], "text": "JusticeForMikeBrown"}, {"indices": [33, 49], "text": "resistthecurfew"}, {"indices": [50, 60], "text": "MikeBrown"}, {"indices": [61, 74], "text": "MichaelBrown"}, {"indices": [75, 84], "text": "Ferguson"}, {"indices": [85, 96], "text": "OpFerguson"}], "urls": [], "media": [{"source_user_id": 2278261981, "source_status_id_str": "500935272813850624", "expanded_url": "http://twitter.com/TKrypt/status/500935272813850624/photo/1", "display_url": "pic.twitter.com/mWsSGloTau", "url": "http://t.co/mWsSGloTau", "media_url_https": "https://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg", "source_user_id_str": "2278261981", "source_status_id": 500935272813850624, "id_str": "500935271345836032", "sizes": {"small": {"h": 261, "resize": "fit", "w": 340}, "large": {"h": 613, "resize": "fit", "w": 800}, "medium": {"h": 460, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [97, 119], "type": "photo", "id": 500935271345836032, "media_url": "http://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501064233774510081", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "#JusticeForMikeBrown #resistthecurfew #MikeBrown #MichaelBrown #Ferguson #OpFerguson http://t.co/mWsSGloTau", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063483346391040, "favorite_count": 3, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [0, 20], "text": "JusticeForMikeBrown"}, {"indices": [21, 37], "text": "resistthecurfew"}, {"indices": [38, 48], "text": "MikeBrown"}, {"indices": [49, 62], "text": "MichaelBrown"}, {"indices": [63, 72], "text": "Ferguson"}, {"indices": [73, 84], "text": "OpFerguson"}], "urls": [], "media": [{"source_user_id": 2278261981, "source_status_id_str": "500935272813850624", "expanded_url": "http://twitter.com/TKrypt/status/500935272813850624/photo/1", "display_url": "pic.twitter.com/mWsSGloTau", "url": "http://t.co/mWsSGloTau", "media_url_https": "https://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg", "source_user_id_str": "2278261981", "source_status_id": 500935272813850624, "id_str": "500935271345836032", "sizes": {"small": {"h": 261, "resize": "fit", "w": 340}, "large": {"h": 613, "resize": "fit", "w": 800}, "medium": {"h": 460, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [85, 107], "type": "photo", "id": 500935271345836032, "media_url": "http://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501063483346391040", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2278261981, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466091668890865664/pdQNFTfj.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/546846174833938432/LM1D1J9P_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 5313, "profile_sidebar_border_color": "FFFFFF", "id_str": "2278261981", "profile_background_color": "C0DEED", "listed_count": 104, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 99752, "description": "NO DMs Anonymous We Are Legion We Do Not Forgive We Do Not Forget Expect Us #Kryptonian #KryptSec", "friends_count": 2314, "location": "", "profile_link_color": "1034E6", "profile_image_url": "http://pbs.twimg.com/profile_images/546846174833938432/LM1D1J9P_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2278261981/1419213325", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466091668890865664/pdQNFTfj.jpeg", "screen_name": "TKrypt", "lang": "en", "profile_background_tile": false, "favourites_count": 26506, "name": "TKrypt", "notifications": false, "url": null, "created_at": "Mon Jan 06 00:04:41 +0000 2014", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "und", "created_at": "Sun Aug 17 17:50:18 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 2278261981, "source_status_id_str": "500935272813850624", "expanded_url": "http://twitter.com/TKrypt/status/500935272813850624/photo/1", "display_url": "pic.twitter.com/mWsSGloTau", "url": "http://t.co/mWsSGloTau", "media_url_https": "https://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg", "source_user_id_str": "2278261981", "source_status_id": 500935272813850624, "id_str": "500935271345836032", "sizes": {"small": {"h": 261, "resize": "fit", "w": 340}, "large": {"h": 613, "resize": "fit", "w": 800}, "medium": {"h": 460, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [85, 107], "type": "photo", "id": 500935271345836032, "media_url": "http://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 115221745, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/707020817490546688/93djMTKZ_normal.jpg", "profile_sidebar_fill_color": "7AC3EE", "entities": {"description": {"urls": []}}, "followers_count": 1800, "profile_sidebar_border_color": "65B0DA", "id_str": "115221745", "profile_background_color": "642D8B", "listed_count": 33, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 11281, "description": "\u03a9 & \u25b3 // @thebandGHOST", "friends_count": 1603, "location": "California, USA", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/707020817490546688/93djMTKZ_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/115221745/1455551681", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "screen_name": "jessicastiffler", "lang": "en", "profile_background_tile": true, "favourites_count": 11975, "name": "\u2b50\ufe0f\u24bf\u24ba\u24c8\u24c8\u24be\u24b8\u24b6\u2b50\ufe0f", "notifications": false, "url": null, "created_at": "Thu Feb 18 00:38:39 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "und", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 2278261981, "source_status_id_str": "500935272813850624", "expanded_url": "http://twitter.com/TKrypt/status/500935272813850624/photo/1", "display_url": "pic.twitter.com/mWsSGloTau", "url": "http://t.co/mWsSGloTau", "media_url_https": "https://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg", "source_user_id_str": "2278261981", "source_status_id": 500935272813850624, "id_str": "500935271345836032", "sizes": {"small": {"h": 261, "resize": "fit", "w": 340}, "large": {"h": 613, "resize": "fit", "w": 800}, "medium": {"h": 460, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [97, 119], "type": "photo", "id": 500935271345836032, "media_url": "http://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @BenWeinthal: Iran's regime make a tiny concession at its planned anti-Western, anti-U.S, anti-Israel protest . https://t.co/5SElORcYeA", "is_quote_status": true, "in_reply_to_status_id": null, "id": 619172298310840325, "favorite_count": 0, "source": "Twitter Web Client", "quoted_status_id": 619128461379117056, "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 299416026, "indices": [3, 15], "id_str": "299416026", "screen_name": "BenWeinthal", "name": "Benjamin Weinthal"}], "hashtags": [], "urls": [{"url": "https://t.co/5SElORcYeA", "indices": [115, 138], "expanded_url": "https://twitter.com/AmirTaheri4/status/619128461379117056", "display_url": "twitter.com/AmirTaheri4/st\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "619172298310840325", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Iran's regime make a tiny concession at its planned anti-Western, anti-U.S, anti-Israel protest . https://t.co/5SElORcYeA", "is_quote_status": true, "in_reply_to_status_id": null, "id": 619129546336505856, "favorite_count": 3, "source": "Twitter Web Client", "quoted_status_id": 619128461379117056, "retweeted": false, "coordinates": null, "quoted_status": {"contributors": null, "truncated": false, "text": "KHAMENEI'S \"REPRESENTATIVE' IN LONDON AYATOLLAH MOEZI VETOES BURNING OF BIBLE IN ANTI-ISRAEL, ANTI-US MARCH, ALLOWS BURNING OF FLAGS.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619128461379117056, "favorite_count": 2, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "619128461379117056", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 601176054, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2789325560/dd3967f07de21e251495ac8329039097_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 7256, "profile_sidebar_border_color": "C0DEED", "id_str": "601176054", "profile_background_color": "C0DEED", "listed_count": 273, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 15450, "description": "International columnist and author. Was Executive Editor-inChief of the daily Kayhan, Iran's main newspaper for seven years.", "friends_count": 2031, "location": "Paris, France", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/2789325560/dd3967f07de21e251495ac8329039097_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "AmirTaheri4", "lang": "en", "profile_background_tile": false, "favourites_count": 986, "name": "Amir Taheri", "notifications": false, "url": null, "created_at": "Wed Jun 06 16:22:05 +0000 2012", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 12:58:22 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "https://t.co/5SElORcYeA", "indices": [98, 121], "expanded_url": "https://twitter.com/AmirTaheri4/status/619128461379117056", "display_url": "twitter.com/AmirTaheri4/st\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "619129546336505856", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 299416026, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/588771084213694464/OJ0QtaUX_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/SfJQOsvEZp", "indices": [0, 22], "expanded_url": "http://bit.ly/BenjaminWeinthal", "display_url": "bit.ly/BenjaminWeinth\u2026"}]}, "description": {"urls": []}}, "followers_count": 7479, "profile_sidebar_border_color": "C0DEED", "id_str": "299416026", "profile_background_color": "C0DEED", "listed_count": 350, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 45330, "description": "European Affairs Correspondent at The Jerusalem Post. Research Fellow @FollowFDD. Opinions are my own. RT/follow \u2260 endorsement.", "friends_count": 992, "location": "Berlin, Germany ", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/588771084213694464/OJ0QtaUX_normal.png", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "BenWeinthal", "lang": "en", "profile_background_tile": false, "favourites_count": 17162, "name": "Benjamin Weinthal", "notifications": false, "url": "http://t.co/SfJQOsvEZp", "created_at": "Mon May 16 01:51:36 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 13:02:41 +0000 2015", "quoted_status_id_str": "619128461379117056", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 344938512, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000060304986/d399b0b81411d10207e08d099c688718.jpeg", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/596317675271245824/lZDyUf9z_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": {"description": {"urls": []}}, "followers_count": 1258, "profile_sidebar_border_color": "FFFFFF", "id_str": "344938512", "profile_background_color": "642D8B", "listed_count": 87, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 93456, "description": "RTs are not endorsements. No war on Iran nor Appeasement! My opinions are subject to learning more!", "friends_count": 2001, "location": "United States", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/596317675271245824/lZDyUf9z_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/344938512/1450537070", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000060304986/d399b0b81411d10207e08d099c688718.jpeg", "screen_name": "upuouo", "lang": "en", "profile_background_tile": true, "favourites_count": 17162, "name": "Lou lou", "notifications": false, "url": null, "created_at": "Fri Jul 29 20:34:33 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:34 +0000 2015", "quoted_status_id_str": "619128461379117056", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @zizii2: Was curfew instituted in NV town where Bundy ranch amassed for weeks on end? Even as THEY mounted checkpoints against residents\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064232700350464, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 296608118, "indices": [3, 10], "id_str": "296608118", "screen_name": "zizii2", "name": "zizi2"}], "hashtags": [{"indices": [139, 140], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 210, "id_str": "501064232700350464", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Was curfew instituted in NV town where Bundy ranch amassed for weeks on end? Even as THEY mounted checkpoints against residents? #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500843658451902464, "favorite_count": 92, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [129, 138], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 210, "id_str": "500843658451902464", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 296608118, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1384365716/610x-110_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": {"description": {"urls": []}}, "followers_count": 2037, "profile_sidebar_border_color": "829D5E", "id_str": "296608118", "profile_background_color": "352726", "listed_count": 64, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 44632, "description": "Political junkie, Supporter of Pres. Barack Obama #Obama2012", "friends_count": 1077, "location": "USA", "profile_link_color": "D02B55", "profile_image_url": "http://pbs.twimg.com/profile_images/1384365716/610x-110_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/296608118/1353373177", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "screen_name": "zizii2", "lang": "en", "profile_background_tile": false, "favourites_count": 4620, "name": "zizi2", "notifications": false, "url": null, "created_at": "Wed May 11 02:50:05 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 03:16:48 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 18292632, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "verified": false, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714253023946649600/M1y5eF18_normal.jpg", "profile_sidebar_fill_color": "95E8EC", "entities": {"url": {"urls": [{"url": "https://t.co/ltzOe18EmH", "indices": [0, 23], "expanded_url": "http://www.pantyvigilante.ink/", "display_url": "pantyvigilante.ink"}]}, "description": {"urls": []}}, "followers_count": 2084, "profile_sidebar_border_color": "5ED4DC", "id_str": "18292632", "profile_background_color": "0099B9", "listed_count": 43, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 2318, "description": "Comic Artist. Illustrator. Shameless trollop. I write and draw a webcomic called Panty Vigilante.", "friends_count": 1922, "location": "Missouri", "profile_link_color": "0099B9", "profile_image_url": "http://pbs.twimg.com/profile_images/714253023946649600/M1y5eF18_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18292632/1457633618", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "screen_name": "bratkitty84", "lang": "en", "profile_background_tile": false, "favourites_count": 555, "name": "Erica Batton", "notifications": false, "url": "https://t.co/ltzOe18EmH", "created_at": "Sun Dec 21 20:49:49 +0000 2008", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @katestratton3: Four Americans Are Still Trapped In #Iran~Deal Or No Deal~Here Are Their Stories http://t.co/kS2OmRaF9t #IranTalksVienna\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172216349917184, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 771186223, "indices": [3, 17], "id_str": "771186223", "screen_name": "katestratton3", "name": "Katherine Palmer"}], "hashtags": [{"indices": [55, 60], "text": "Iran"}, {"indices": [123, 139], "text": "IranTalksVienna"}, {"indices": [139, 140], "text": "Iran"}, {"indices": [139, 140], "text": "FreeAmirNow"}], "urls": [{"url": "http://t.co/kS2OmRaF9t", "indices": [100, 122], "expanded_url": "http://huff.to/1LTrb8i", "display_url": "huff.to/1LTrb8i"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619172216349917184", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Four Americans Are Still Trapped In #Iran~Deal Or No Deal~Here Are Their Stories http://t.co/kS2OmRaF9t #IranTalksVienna #Iran #FreeAmirNow", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171953560031232, "favorite_count": 2, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [36, 41], "text": "Iran"}, {"indices": [104, 120], "text": "IranTalksVienna"}, {"indices": [121, 126], "text": "Iran"}, {"indices": [127, 139], "text": "FreeAmirNow"}], "urls": [{"url": "http://t.co/kS2OmRaF9t", "indices": [81, 103], "expanded_url": "http://huff.to/1LTrb8i", "display_url": "huff.to/1LTrb8i"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619171953560031232", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 771186223, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3357130562/8e3ce55689dfeb9144a248bae19805e8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/jDv1kDmWAG", "indices": [0, 22], "expanded_url": "http://www.facebook.com/foreverfaithfulfather", "display_url": "facebook.com/foreverfaithfu\u2026"}]}, "description": {"urls": []}}, "followers_count": 3640, "profile_sidebar_border_color": "C0DEED", "id_str": "771186223", "profile_background_color": "C0DEED", "listed_count": 152, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 78319, "description": "Freelance writer in the Garden of Hope, my journey w/ ABBA from the Garden of Gethsemane 2 wherever HE Wills me to go Spiritually&Physcially *ABBAPapa says 2me", "friends_count": 3405, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3357130562/8e3ce55689dfeb9144a248bae19805e8_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/771186223/1353169360", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "katestratton3", "lang": "en", "profile_background_tile": false, "favourites_count": 10034, "name": "Katherine Palmer", "notifications": false, "url": "http://t.co/jDv1kDmWAG", "created_at": "Tue Aug 21 09:33:50 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:51:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2821663239, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/625012354527289344/Wm9kW7bz_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 1224, "profile_sidebar_border_color": "C0DEED", "id_str": "2821663239", "profile_background_color": "C0DEED", "listed_count": 45, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 10866, "description": "Hand knitter, watching the rain fall,\r\ntweeting out helpful info, and screaming when my team wins.", "friends_count": 2816, "location": "Seattle, WA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/625012354527289344/Wm9kW7bz_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "CalefDeanna", "lang": "en", "profile_background_tile": false, "favourites_count": 20575, "name": "deanna calef", "notifications": false, "url": null, "created_at": "Sat Oct 11 00:26:57 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:14 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "@damifarm KRISTINA ES SOCIA A TRAVES DE VENEZUELA DEL GRUPO TERRORISTA HEZBOLLAH (IRAN+SIRIA) RESPONSABLE DE LOS ATENTADOS EMBAJADA Y AMIA", "is_quote_status": false, "in_reply_to_status_id": 619170650205372417, "id": 619172332100284416, "favorite_count": 1, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 2775659742, "indices": [0, 9], "id_str": "2775659742", "screen_name": "damifarm", "name": "Damian Granja"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "damifarm", "in_reply_to_user_id": 2775659742, "retweet_count": 0, "id_str": "619172332100284416", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 2973928629, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/554453058306834432/aQglwuZZ_normal.jpeg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 13537, "profile_sidebar_border_color": "000000", "id_str": "2973928629", "profile_background_color": "000000", "listed_count": 41, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 101807, "description": "JUBILADO INDIGNADO DE LA MINIMA - INFORMATICO - EXFUNCIONARIO DE LA LEGISLATURA DE LA PROV. BS.AS. - TRABAJO POR UNA NACION DIGNA PARA LAS FUTURAS GENERACIONES", "friends_count": 14930, "location": "La Plata, Argentina", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/554453058306834432/aQglwuZZ_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2973928629/1453839832", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "screen_name": "FelipeCimadoro", "lang": "es", "profile_background_tile": false, "favourites_count": 665, "name": "Felipe Cimadoro", "notifications": false, "url": null, "created_at": "Mon Jan 12 01:33:12 +0000 2015", "contributors_enabled": false, "time_zone": "Buenos Aires", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "2775659742", "lang": "es", "created_at": "Thu Jul 09 15:52:42 +0000 2015", "in_reply_to_status_id_str": "619170650205372417", "place": null} {"contributors": null, "truncated": false, "text": "Time to Cut the bullshit! What's the plan for American citizens? Martial law, depopulation, cloward-piven, voters fraud? Answers? #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064231941570561, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [130, 139], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064231941570561", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 363942545, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/585249866/x2c0387b656ede05341262b1e88c822d.png", "verified": false, "profile_text_color": "A7A761", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1518765560/image_normal.jpg", "profile_sidebar_fill_color": "799D8F", "entities": {"description": {"urls": []}}, "followers_count": 283, "profile_sidebar_border_color": "154C49", "id_str": "363942545", "profile_background_color": "DCD7AD", "listed_count": 10, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 4087, "description": "2nd Amendment Patriot that CANNOT stand Corruption that hurt innocent. United We Stand, Divided We Fall. God Bless our Troops and Legal Americans", "friends_count": 348, "location": "", "profile_link_color": "4F3727", "profile_image_url": "http://pbs.twimg.com/profile_images/1518765560/image_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/585249866/x2c0387b656ede05341262b1e88c822d.png", "screen_name": "Purple_Smear", "lang": "en", "profile_background_tile": true, "favourites_count": 80, "name": "White Vinegar", "notifications": false, "url": null, "created_at": "Sun Aug 28 23:26:49 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @CBMNational: 5 black cops cared abt out #youth &started http://t.co/k5azGnmded 40 yrs ago.Their legacy creates smiles. #ferguson http:/\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064231387947008, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 574017168, "indices": [3, 15], "id_str": "574017168", "screen_name": "CBMNational", "name": "Concerned Black Men"}], "hashtags": [{"indices": [44, 50], "text": "youth"}, {"indices": [127, 136], "text": "ferguson"}], "urls": [{"url": "http://t.co/k5azGnmded", "indices": [64, 86], "expanded_url": "http://www.cbmnational.com", "display_url": "cbmnational.com"}], "media": [{"source_user_id": 574017168, "source_status_id_str": "500384492054667264", "expanded_url": "http://twitter.com/CBMNational/status/500384492054667264/photo/1", "display_url": "pic.twitter.com/lwyDnrENV0", "url": "http://t.co/lwyDnrENV0", "media_url_https": "https://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg", "source_user_id_str": "574017168", "source_status_id": 500384492054667264, "id_str": "500384491160870912", "sizes": {"small": {"h": 255, "resize": "fit", "w": 340}, "large": {"h": 768, "resize": "fit", "w": 1024}, "medium": {"h": 450, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [143, 144], "type": "photo", "id": 500384491160870912, "media_url": "http://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501064231387947008", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "5 black cops cared abt out #youth &started http://t.co/k5azGnmded 40 yrs ago.Their legacy creates smiles. #ferguson http://t.co/lwyDnrENV0", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500384492054667264, "favorite_count": 3, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [27, 33], "text": "youth"}, {"indices": [110, 119], "text": "ferguson"}], "urls": [{"url": "http://t.co/k5azGnmded", "indices": [47, 69], "expanded_url": "http://www.cbmnational.com", "display_url": "cbmnational.com"}], "media": [{"expanded_url": "http://twitter.com/CBMNational/status/500384492054667264/photo/1", "display_url": "pic.twitter.com/lwyDnrENV0", "url": "http://t.co/lwyDnrENV0", "media_url_https": "https://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg", "id_str": "500384491160870912", "sizes": {"small": {"h": 255, "resize": "fit", "w": 340}, "large": {"h": 768, "resize": "fit", "w": 1024}, "medium": {"h": 450, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [120, 142], "type": "photo", "id": 500384491160870912, "media_url": "http://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "500384492054667264", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 574017168, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000073537107/b317f754f3d5b4bf21d627a969199bb6.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/454688702883954689/Bq4MaIQI_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/mui939rOlZ", "indices": [0, 22], "expanded_url": "http://www.cbmnational.org", "display_url": "cbmnational.org"}]}, "description": {"urls": []}}, "followers_count": 2665, "profile_sidebar_border_color": "FFFFFF", "id_str": "574017168", "profile_background_color": "C0DEED", "listed_count": 132, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 9715, "description": "Since 1975, providing guidance, encouragement and support to children while stabilizing families.", "friends_count": 1074, "location": "Washington, DC", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/454688702883954689/Bq4MaIQI_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/574017168/1398277920", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000073537107/b317f754f3d5b4bf21d627a969199bb6.jpeg", "screen_name": "CBMNational", "lang": "en", "profile_background_tile": true, "favourites_count": 5278, "name": "Concerned Black Men", "notifications": false, "url": "http://t.co/mui939rOlZ", "created_at": "Mon May 07 20:19:25 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Fri Aug 15 20:52:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/CBMNational/status/500384492054667264/photo/1", "display_url": "pic.twitter.com/lwyDnrENV0", "url": "http://t.co/lwyDnrENV0", "media_url_https": "https://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg", "id_str": "500384491160870912", "sizes": {"small": {"h": 255, "resize": "fit", "w": 340}, "large": {"h": 768, "resize": "fit", "w": 1024}, "medium": {"h": 450, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [120, 142], "type": "photo", "id": 500384491160870912, "media_url": "http://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 356854246, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/326168892/Untitled-1.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1508349029/twitter_drmoore_normal.jpg", "profile_sidebar_fill_color": "FFFFFF", "entities": {"url": {"urls": [{"url": "https://t.co/wEFhj9v0rp", "indices": [0, 23], "expanded_url": "https://u.osu.edu/moore.1408/", "display_url": "u.osu.edu/moore.1408/"}]}, "description": {"urls": []}}, "followers_count": 4888, "profile_sidebar_border_color": "FFFFFF", "id_str": "356854246", "profile_background_color": "A8A8A8", "listed_count": 278, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 60562, "description": "EHE Distinguished Professor and Executive Director, Todd Anthony Bell National Resource Center on the African American Male, The Ohio State University", "friends_count": 2314, "location": "Columbus, Ohio", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/1508349029/twitter_drmoore_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/356854246/1398356470", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/326168892/Untitled-1.jpg", "screen_name": "DrJLMooreIII", "lang": "en", "profile_background_tile": false, "favourites_count": 32385, "name": "James L. Moore III", "notifications": false, "url": "https://t.co/wEFhj9v0rp", "created_at": "Wed Aug 17 13:38:08 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 574017168, "source_status_id_str": "500384492054667264", "expanded_url": "http://twitter.com/CBMNational/status/500384492054667264/photo/1", "display_url": "pic.twitter.com/lwyDnrENV0", "url": "http://t.co/lwyDnrENV0", "media_url_https": "https://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg", "source_user_id_str": "574017168", "source_status_id": 500384492054667264, "id_str": "500384491160870912", "sizes": {"small": {"h": 255, "resize": "fit", "w": 340}, "large": {"h": 768, "resize": "fit", "w": 1024}, "medium": {"h": 450, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [143, 144], "type": "photo", "id": 500384491160870912, "media_url": "http://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg"}]}} {"contributors": null, "truncated": false, "text": "#Iran: Iran Radiator : #Merger #Acquisition Analysts conclude erratic sales profits in Jul 2015. http://t.co/qEZfDo2at9 #Merger", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172232120692736, "favorite_count": 0, "source": "DATA_INSTITUTE_TWEETS", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [0, 5], "text": "Iran"}, {"indices": [23, 30], "text": "Merger"}, {"indices": [31, 43], "text": "Acquisition"}, {"indices": [120, 127], "text": "Merger"}], "urls": [{"url": "http://t.co/qEZfDo2at9", "indices": [97, 119], "expanded_url": "http://dg-di.org/DI/IR/29971.htm", "display_url": "dg-di.org/DI/IR/29971.htm"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172232120692736", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2858607784, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/536458042116550656/wMSCigkH.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/536161035862802433/kliWpYqu_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/yWr50ty7Kc", "indices": [0, 22], "expanded_url": "http://www.data-institute.institute", "display_url": "data-institute.institute"}]}, "description": {"urls": []}}, "followers_count": 1402, "profile_sidebar_border_color": "C0DEED", "id_str": "2858607784", "profile_background_color": "FFFFFF", "listed_count": 1229, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 339348, "description": "The World's Largest Source of Corporate and Business Data.", "friends_count": 532, "location": "London", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/536161035862802433/kliWpYqu_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2858607784/1416736402", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/536458042116550656/wMSCigkH.png", "screen_name": "Data_Institute", "lang": "en", "profile_background_tile": true, "favourites_count": 10, "name": "Data Institute", "notifications": false, "url": "http://t.co/yWr50ty7Kc", "created_at": "Mon Nov 03 09:57:53 +0000 2014", "contributors_enabled": false, "time_zone": "Amsterdam", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "und", "created_at": "Thu Jul 09 15:52:18 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @FOX2now: @AntonioFrench on protestors: \"we spent alot of time with that group; there was no convincing them.\" #stl #Ferguson http://t.c\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064232188665856, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 11265832, "indices": [3, 11], "id_str": "11265832", "screen_name": "FOX2now", "name": "FOX2now"}, {"id": 14090948, "indices": [13, 27], "id_str": "14090948", "screen_name": "AntonioFrench", "name": "Antonio French"}], "hashtags": [{"indices": [114, 118], "text": "stl"}, {"indices": [119, 128], "text": "Ferguson"}], "urls": [], "media": [{"source_user_id": 11265832, "source_status_id_str": "500892196938055680", "expanded_url": "http://twitter.com/FOX2now/status/500892196938055680/photo/1", "display_url": "pic.twitter.com/7yllvisGyP", "url": "http://t.co/7yllvisGyP", "media_url_https": "https://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg", "source_user_id_str": "11265832", "source_status_id": 500892196938055680, "id_str": "500892195415527424", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 576, "resize": "fit", "w": 1024}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 500892195415527424, "media_url": "http://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 289, "id_str": "501064232188665856", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "@AntonioFrench on protestors: \"we spent alot of time with that group; there was no convincing them.\" #stl #Ferguson http://t.co/7yllvisGyP", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500892196938055680, "favorite_count": 135, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 14090948, "indices": [0, 14], "id_str": "14090948", "screen_name": "AntonioFrench", "name": "Antonio French"}], "hashtags": [{"indices": [101, 105], "text": "stl"}, {"indices": [106, 115], "text": "Ferguson"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/FOX2now/status/500892196938055680/photo/1", "display_url": "pic.twitter.com/7yllvisGyP", "url": "http://t.co/7yllvisGyP", "media_url_https": "https://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg", "id_str": "500892195415527424", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 576, "resize": "fit", "w": 1024}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [116, 138], "type": "photo", "id": 500892195415527424, "media_url": "http://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg"}]}, "in_reply_to_screen_name": "AntonioFrench", "in_reply_to_user_id": 14090948, "retweet_count": 289, "id_str": "500892196938055680", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 11265832, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691793421/ec4060bca37ead1fd1610a480301fadc.jpeg", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/560810496690253824/u9wt_kmG_normal.jpeg", "profile_sidebar_fill_color": "D7D7D7", "entities": {"url": {"urls": [{"url": "http://t.co/6Yzp4xRBi9", "indices": [0, 22], "expanded_url": "http://www.fox2now.com/", "display_url": "fox2now.com"}]}, "description": {"urls": []}}, "followers_count": 132072, "profile_sidebar_border_color": "000000", "id_str": "11265832", "profile_background_color": "000000", "listed_count": 1738, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 94712, "description": "The official Twitter page for KTVI FOX 2 News St. Louis. Breaking news, #STL stories, video, photo galleries. Follow our reporters for more.", "friends_count": 1370, "location": "St. Louis, Missouri", "profile_link_color": "6E6E6E", "profile_image_url": "http://pbs.twimg.com/profile_images/560810496690253824/u9wt_kmG_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11265832/1349294730", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691793421/ec4060bca37ead1fd1610a480301fadc.jpeg", "screen_name": "FOX2now", "lang": "en", "profile_background_tile": true, "favourites_count": 1481, "name": "FOX2now", "notifications": false, "url": "http://t.co/6Yzp4xRBi9", "created_at": "Mon Dec 17 21:14:05 +0000 2007", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "14090948", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 06:29:40 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/FOX2now/status/500892196938055680/photo/1", "display_url": "pic.twitter.com/7yllvisGyP", "url": "http://t.co/7yllvisGyP", "media_url_https": "https://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg", "id_str": "500892195415527424", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 576, "resize": "fit", "w": 1024}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [116, 138], "type": "photo", "id": 500892195415527424, "media_url": "http://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 294396285, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000150592243/uoV8VyOW.jpeg", "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://pbs.twimg.com/profile_images/724407025375940609/N_hYGtZb_normal.jpg", "profile_sidebar_fill_color": "DAECF4", "entities": {"description": {"urls": []}}, "followers_count": 977, "profile_sidebar_border_color": "FFFFFF", "id_str": "294396285", "profile_background_color": "C6E2EE", "listed_count": 55, "is_translation_enabled": false, "utc_offset": 32400, "statuses_count": 213630, "description": "", "friends_count": 573, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/724407025375940609/N_hYGtZb_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/294396285/1450770250", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000150592243/uoV8VyOW.jpeg", "screen_name": "aqasatana", "lang": "ja", "profile_background_tile": false, "favourites_count": 2386, "name": "\uff51", "notifications": false, "url": null, "created_at": "Sat May 07 02:32:22 +0000 2011", "contributors_enabled": false, "time_zone": "Tokyo", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 11265832, "source_status_id_str": "500892196938055680", "expanded_url": "http://twitter.com/FOX2now/status/500892196938055680/photo/1", "display_url": "pic.twitter.com/7yllvisGyP", "url": "http://t.co/7yllvisGyP", "media_url_https": "https://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg", "source_user_id_str": "11265832", "source_status_id": 500892196938055680, "id_str": "500892195415527424", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 576, "resize": "fit", "w": 1024}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 500892195415527424, "media_url": "http://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @mfa_russia: #Lavrov: Lifting the arms embargo will help #Iran fight terrorism more effectively http://t.co/faM8Wj0XF8", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172323447324672, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 255471924, "indices": [3, 14], "id_str": "255471924", "screen_name": "mfa_russia", "name": "MFA Russia"}], "hashtags": [{"indices": [16, 23], "text": "Lavrov"}, {"indices": [60, 65], "text": "Iran"}], "urls": [], "media": [{"source_user_id": 255471924, "source_status_id_str": "619162943729627137", "expanded_url": "http://twitter.com/mfa_russia/status/619162943729627137/photo/1", "display_url": "pic.twitter.com/faM8Wj0XF8", "url": "http://t.co/faM8Wj0XF8", "media_url_https": "https://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg", "source_user_id_str": "255471924", "source_status_id": 619162943729627137, "id_str": "619162941661667328", "sizes": {"large": {"h": 496, "resize": "fit", "w": 740}, "small": {"h": 228, "resize": "fit", "w": 340}, "medium": {"h": 402, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [99, 121], "type": "photo", "id": 619162941661667328, "media_url": "http://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 52, "id_str": "619172323447324672", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "#Lavrov: Lifting the arms embargo will help #Iran fight terrorism more effectively http://t.co/faM8Wj0XF8", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619162943729627137, "favorite_count": 21, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [0, 7], "text": "Lavrov"}, {"indices": [44, 49], "text": "Iran"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/mfa_russia/status/619162943729627137/photo/1", "display_url": "pic.twitter.com/faM8Wj0XF8", "url": "http://t.co/faM8Wj0XF8", "media_url_https": "https://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg", "id_str": "619162941661667328", "sizes": {"large": {"h": 496, "resize": "fit", "w": 740}, "small": {"h": 228, "resize": "fit", "w": 340}, "medium": {"h": 402, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [83, 105], "type": "photo", "id": 619162941661667328, "media_url": "http://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 52, "id_str": "619162943729627137", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 255471924, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/279483352/twitter-bg2.JPG", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686527478035300352/bpSQvuim_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/bL5lLEUFzk", "indices": [0, 22], "expanded_url": "http://www.mid.ru", "display_url": "mid.ru"}]}, "description": {"urls": []}}, "followers_count": 112242, "profile_sidebar_border_color": "C0DEED", "id_str": "255471924", "profile_background_color": "F0F0F0", "listed_count": 2289, "is_translation_enabled": false, "utc_offset": -7200, "statuses_count": 23419, "description": "Official twitter-account of the Ministry of Foreign Affairs of the Russian Federation\r\n(For tweets in Russian please follow @MID_RF)", "friends_count": 1033, "location": "Russia", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/686527478035300352/bpSQvuim_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/255471924/1452515893", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/279483352/twitter-bg2.JPG", "screen_name": "mfa_russia", "lang": "ru", "profile_background_tile": false, "favourites_count": 713, "name": "MFA Russia", "notifications": false, "url": "http://t.co/bL5lLEUFzk", "created_at": "Mon Feb 21 12:45:22 +0000 2011", "contributors_enabled": false, "time_zone": "Greenland", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:15:23 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/mfa_russia/status/619162943729627137/photo/1", "display_url": "pic.twitter.com/faM8Wj0XF8", "url": "http://t.co/faM8Wj0XF8", "media_url_https": "https://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg", "id_str": "619162941661667328", "sizes": {"large": {"h": 496, "resize": "fit", "w": 740}, "small": {"h": 228, "resize": "fit", "w": 340}, "medium": {"h": 402, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [83, 105], "type": "photo", "id": 619162941661667328, "media_url": "http://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 588092239, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/848015387/00eca4eab87ddfa74ad6ecba406704b3.jpeg", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/646555692837396480/rY1Gfuje_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": {"url": {"urls": [{"url": "https://t.co/JitqQvefTc", "indices": [0, 23], "expanded_url": "http://rahuloneness.blogspot.in/", "display_url": "rahuloneness.blogspot.in"}]}, "description": {"urls": []}}, "followers_count": 109, "profile_sidebar_border_color": "FFFFFF", "id_str": "588092239", "profile_background_color": "352726", "listed_count": 1, "is_translation_enabled": false, "utc_offset": 19800, "statuses_count": 846, "description": "Marxist...Indian before any religion ...Indian before any Caste ...", "friends_count": 764, "location": "New Delhi", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/646555692837396480/rY1Gfuje_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/588092239/1366369928", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/848015387/00eca4eab87ddfa74ad6ecba406704b3.jpeg", "screen_name": "rahulkn9899", "lang": "en", "profile_background_tile": true, "favourites_count": 1047, "name": "Rahul Kumar", "notifications": false, "url": "https://t.co/JitqQvefTc", "created_at": "Wed May 23 07:28:41 +0000 2012", "contributors_enabled": false, "time_zone": "New Delhi", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:40 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 255471924, "source_status_id_str": "619162943729627137", "expanded_url": "http://twitter.com/mfa_russia/status/619162943729627137/photo/1", "display_url": "pic.twitter.com/faM8Wj0XF8", "url": "http://t.co/faM8Wj0XF8", "media_url_https": "https://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg", "source_user_id_str": "255471924", "source_status_id": 619162943729627137, "id_str": "619162941661667328", "sizes": {"large": {"h": 496, "resize": "fit", "w": 740}, "small": {"h": 228, "resize": "fit", "w": 340}, "medium": {"h": 402, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [99, 121], "type": "photo", "id": 619162941661667328, "media_url": "http://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg"}]}} {"contributors": null, "truncated": false, "text": "No Deal Yet At Iran Talks - RadioFreeEurope/RadioLiberty\u307f\u3066\u306d\u3093\uff01 http://t.co/amvEXs923Q", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172253075378176, "favorite_count": 0, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/amvEXs923Q", "indices": [62, 84], "expanded_url": "http://ift.tt/1CrN9gh", "display_url": "ift.tt/1CrN9gh"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172253075378176", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2324941302, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/471936216036671488/FNZ0bWu7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 2391, "profile_sidebar_border_color": "C0DEED", "id_str": "2324941302", "profile_background_color": "C0DEED", "listed_count": 16, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 56816, "description": "\u30a4\u30f3\u30c9\u30ab\u30ec\u30fc\u306b\u59cb\u307e\u308a\u30b9\u30ea\u30e9\u30f3\u30ab\u30ab\u30ec\u30fc\u3001\u305d\u3057\u3066\u4eca\u306f\u6d77\u8001\u5165\u308a\u30bf\u30a4\u30ab\u30ec\u30fc\u306b\u306f\u307e\u3063\u3066\u3044\u307e\u3059\u266a\u30cf\u30fc\u30d6\u3084\u30b9\u30d1\u30a4\u30b9\u3001\u30a2\u30ed\u30de\u3067\u5fc3\u3068\u8eab\u4f53\u3092\u30ea\u30d5\u30ec\u30c3\u30b7\u30e5\u3059\u308b\u751f\u6d3b\u3092\u610f\u8b58\u3057\u3066\u3044\u307e\u3059(\u0451_\u0451)\u6700\u8fd1\u306f\u81ea\u7136\u8fb2\u6cd5\u30fb\u30a2\u30fc\u30c8\u30c6\u30f3\u8fb2\u6cd5\u7b49\u6c17\u306b\u306a\u3063\u3066\u307e\u3059\uff01", "friends_count": 2611, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/471936216036671488/FNZ0bWu7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2324941302/1401353496", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "yubinaaroma", "lang": "ja", "profile_background_tile": false, "favourites_count": 0, "name": "\u512a\u7f8e\u306a\u30a2\u30ed\u30de\u30fb\u30b9\u30d1\u30a4\u30b9\u30fb\u30cf\u30fc\u30d6\u751f\u6d3b", "notifications": false, "url": null, "created_at": "Mon Feb 03 06:15:22 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "ja", "created_at": "Thu Jul 09 15:52:23 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @ReutersIran: Yemen ceasefire announcement within 24 hours: Houthi-run agency http://t.co/0hTdq5pg38", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172208355749888, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 47633485, "indices": [3, 15], "id_str": "47633485", "screen_name": "ReutersIran", "name": "Reuters Iran"}], "hashtags": [], "urls": [{"url": "http://t.co/0hTdq5pg38", "indices": [81, 103], "expanded_url": "http://reut.rs/1NR2yaP", "display_url": "reut.rs/1NR2yaP"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "619172208355749888", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Yemen ceasefire announcement within 24 hours: Houthi-run agency http://t.co/0hTdq5pg38", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619145114913390592, "favorite_count": 4, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/0hTdq5pg38", "indices": [64, 86], "expanded_url": "http://reut.rs/1NR2yaP", "display_url": "reut.rs/1NR2yaP"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "619145114913390592", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 47633485, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/103680223/reuters_twitter_bg.jpg", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1462436931/reuters_twitter_avatar_normal.png", "profile_sidebar_fill_color": "F5F5F5", "entities": {"url": {"urls": [{"url": "http://t.co/oiKYs9PJS4", "indices": [0, 22], "expanded_url": "http://www.reuters.com/places/iran", "display_url": "reuters.com/places/iran"}]}, "description": {"urls": []}}, "followers_count": 103178, "profile_sidebar_border_color": "F5F5F5", "id_str": "47633485", "profile_background_color": "444444", "listed_count": 1788, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 9974, "description": "From economy to politics, latest Iran news. Retweets are not endorsements.", "friends_count": 34, "location": "Global", "profile_link_color": "006F97", "profile_image_url": "http://pbs.twimg.com/profile_images/1462436931/reuters_twitter_avatar_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/103680223/reuters_twitter_bg.jpg", "screen_name": "ReutersIran", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Reuters Iran", "notifications": false, "url": "http://t.co/oiKYs9PJS4", "created_at": "Tue Jun 16 14:15:38 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 14:04:33 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 254282406, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000057156518/eb0475b48179669c2cedc5b34e1bc726.jpeg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/619216332991660033/j7AHlDrq_normal.jpg", "profile_sidebar_fill_color": "2C5C67", "entities": {"url": {"urls": [{"url": "http://t.co/rlvEl4iHlS", "indices": [0, 22], "expanded_url": "http://www.ahsenkhan.com", "display_url": "ahsenkhan.com"}]}, "description": {"urls": []}}, "followers_count": 795, "profile_sidebar_border_color": "000000", "id_str": "254282406", "profile_background_color": "02042B", "listed_count": 31, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 8964, "description": "Political Affairs Officer in UN's Security Council Affairs Division | all tweets personal, links & RTs \u2260 endorsements", "friends_count": 2101, "location": "New York", "profile_link_color": "51ACD6", "profile_image_url": "http://pbs.twimg.com/profile_images/619216332991660033/j7AHlDrq_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/254282406/1422474976", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000057156518/eb0475b48179669c2cedc5b34e1bc726.jpeg", "screen_name": "khan_ahsen", "lang": "en", "profile_background_tile": false, "favourites_count": 75, "name": "Ahsen Khan", "notifications": false, "url": "http://t.co/rlvEl4iHlS", "created_at": "Sat Feb 19 00:26:31 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Syria Approves 1 Billion USD Credit Line From Iran http://t.co/Cb8Hg0ORPE", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172175820357632, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/Cb8Hg0ORPE", "indices": [51, 73], "expanded_url": "http://dlvr.it/BT47hg", "display_url": "dlvr.it/BT47hg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172175820357632", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2308922960, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/426815266689785856/zkKLPoiu_normal.png", "profile_sidebar_fill_color": "C0DFEC", "entities": {"description": {"urls": []}}, "followers_count": 140, "profile_sidebar_border_color": "A8C7F7", "id_str": "2308922960", "profile_background_color": "022330", "listed_count": 13, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 40562, "description": "Newsfeed #Syria", "friends_count": 15, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/426815266689785856/zkKLPoiu_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2308922960/1390595675", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "screen_name": "syrianewsfeed", "lang": "de", "profile_background_tile": false, "favourites_count": 0, "name": "syrianewsfeed", "notifications": false, "url": null, "created_at": "Fri Jan 24 20:29:40 +0000 2014", "contributors_enabled": false, "time_zone": "Amsterdam", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Thu Jul 09 15:52:05 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @agabriew: -mam\u00e1, \u00bfpuedo salir?\n-no.\n-pero todos mis amigos ir\u00e1n.\n-\u00a1no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172326886674432, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 3246768862, "indices": [3, 12], "id_str": "3246768862", "screen_name": "agabriew", "name": "\u200f\ufe0f\u200f\ufe0f"}], "hashtags": [], "urls": [], "media": [{"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "619172326886674432", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "-mam\u00e1, \u00bfpuedo salir?\n-no.\n-pero todos mis amigos ir\u00e1n.\n-\u00a1no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618569774763630592, "favorite_count": 318, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [{"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "618569774763630592", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 3246768862, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 804, "profile_sidebar_border_color": "000000", "id_str": "3246768862", "profile_background_color": "000000", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 839, "description": "en un d\u00eda largo me quit\u00e9 el sost\u00e9n", "friends_count": 296, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3246768862/1456961166", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "screen_name": "agabriew", "lang": "es", "profile_background_tile": true, "favourites_count": 53353, "name": "\u200f\ufe0f\u200f\ufe0f", "notifications": false, "url": null, "created_at": "Mon May 11 20:00:55 +0000 2015", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Tue Jul 07 23:58:21 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}, {"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "id_str": "618569772037500929", "sizes": {"small": {"h": 510, "resize": "fit", "w": 340}, "large": {"h": 900, "resize": "fit", "w": 600}, "medium": {"h": 900, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 1330235048, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734565583262523392/LaDvUwYU_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 1725, "profile_sidebar_border_color": "000000", "id_str": "1330235048", "profile_background_color": "000000", "listed_count": 16, "is_translation_enabled": false, "utc_offset": -36000, "statuses_count": 188820, "description": "\u2743might be a sinner and I might be a saint\u2743 @fuckyoubaez's guurrl", "friends_count": 184, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/734565583262523392/LaDvUwYU_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1330235048/1462923534", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "yourborwhore", "lang": "es", "profile_background_tile": false, "favourites_count": 328, "name": "\u2022Poussey\u2022", "notifications": false, "url": null, "created_at": "Fri Apr 05 22:56:52 +0000 2013", "contributors_enabled": false, "time_zone": "Hawaii", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:41 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}, {"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772037500929", "sizes": {"small": {"h": 510, "resize": "fit", "w": 340}, "large": {"h": 900, "resize": "fit", "w": 600}, "medium": {"h": 900, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @alamanecer: \"Things erupt in #Ferguson overnight... Oops wrong story. Just \"whacky\" Penn State kids protesting JoePa's firing. http://t\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064228627705857, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 45722802, "indices": [3, 14], "id_str": "45722802", "screen_name": "alamanecer", "name": "Nicole \u2600\ufe0fAt Sunrise"}], "hashtags": [{"indices": [33, 42], "text": "Ferguson"}], "urls": [{"url": "http://t.co/EmesUMaGnp", "indices": [139, 140], "expanded_url": "http://twitter.com/DabAggin/status/500966901364047873/photo/1", "display_url": "pic.twitter.com/EmesUMaGnp"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1630, "id_str": "501064228627705857", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "\"Things erupt in #Ferguson overnight... Oops wrong story. Just \"whacky\" Penn State kids protesting JoePa's firing. http://t.co/EmesUMaGnp\"", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501019248945537025, "favorite_count": 698, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [17, 26], "text": "Ferguson"}], "urls": [{"url": "http://t.co/EmesUMaGnp", "indices": [115, 137], "expanded_url": "http://twitter.com/DabAggin/status/500966901364047873/photo/1", "display_url": "pic.twitter.com/EmesUMaGnp"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1630, "id_str": "501019248945537025", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 45722802, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/632710255/5dthytvi1vc25rpj56d7.jpeg", "verified": false, "profile_text_color": "E37932", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662729471741399040/pCV-ywMy_normal.jpg", "profile_sidebar_fill_color": "FA89A5", "entities": {"url": {"urls": [{"url": "https://t.co/1MGgna5RMY", "indices": [0, 23], "expanded_url": "https://www.youtube.com/watch?v=kkmxx3eIbdc", "display_url": "youtube.com/watch?v=kkmxx3\u2026"}]}, "description": {"urls": []}}, "followers_count": 1499, "profile_sidebar_border_color": "D6C9D6", "id_str": "45722802", "profile_background_color": "B2DFDA", "listed_count": 47, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 19113, "description": "I choose love. \u00e0 l'\u00e9cole de la vie. r\u00e9volutionnaire. I won't let a half written book haunt my days #amwriting Anything at all can happen just before the sunrise", "friends_count": 2375, "location": "Florida", "profile_link_color": "D0A5B0", "profile_image_url": "http://pbs.twimg.com/profile_images/662729471741399040/pCV-ywMy_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/45722802/1454797033", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/632710255/5dthytvi1vc25rpj56d7.jpeg", "screen_name": "alamanecer", "lang": "en", "profile_background_tile": true, "favourites_count": 30183, "name": "Nicole \u2600\ufe0fAt Sunrise", "notifications": false, "url": "https://t.co/1MGgna5RMY", "created_at": "Tue Jun 09 01:00:21 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 14:54:32 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 106948003, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/137512695/weed1.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634567582134091776/b_JMkHtz_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"description": {"urls": []}}, "followers_count": 172, "profile_sidebar_border_color": "EEEEEE", "id_str": "106948003", "profile_background_color": "131516", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 5699, "description": "Avid Pandora Smoker, Ghetto Pornstar, Pollitical Watchdog & Music Lover.", "friends_count": 187, "location": "Parts Unkown.", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/634567582134091776/b_JMkHtz_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/106948003/1443669611", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/137512695/weed1.jpg", "screen_name": "MrKneeGrow", "lang": "en", "profile_background_tile": true, "favourites_count": 1237, "name": "Get It? Knee Grow!!", "notifications": false, "url": null, "created_at": "Thu Jan 21 04:31:57 +0000 2010", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "America's worst enemy, and biggest supporter/backer of terrorism is Iran. Why the hell are we chatting with them about anything?", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172320360333312, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172320360333312", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 2795245697, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/516980837829451776/ZbmX30-I_normal.jpeg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 2156, "profile_sidebar_border_color": "000000", "id_str": "2795245697", "profile_background_color": "000000", "listed_count": 56, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 26545, "description": "Just an Old Vet with a bit of Attitude. What Obama has done to Our Country is a Crime. Congress just as bad. Follow if U don't mind fighting Establishment. TYVM", "friends_count": 2192, "location": "United States", "profile_link_color": "4A913C", "profile_image_url": "http://pbs.twimg.com/profile_images/516980837829451776/ZbmX30-I_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2795245697/1412093975", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "screen_name": "Patriot715", "lang": "en", "profile_background_tile": false, "favourites_count": 47, "name": "Bob L.", "notifications": false, "url": null, "created_at": "Tue Sep 30 15:49:30 +0000 2014", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:39 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @agabriew: -mam\u00e1, \u00bfpuedo salir?\n-no.\n-pero todos mis amigos ir\u00e1n.\n-\u00a1no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172257278111744, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 3246768862, "indices": [3, 12], "id_str": "3246768862", "screen_name": "agabriew", "name": "\u200f\ufe0f\u200f\ufe0f"}], "hashtags": [], "urls": [], "media": [{"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "619172257278111744", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "-mam\u00e1, \u00bfpuedo salir?\n-no.\n-pero todos mis amigos ir\u00e1n.\n-\u00a1no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618569774763630592, "favorite_count": 318, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [{"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "618569774763630592", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 3246768862, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 804, "profile_sidebar_border_color": "000000", "id_str": "3246768862", "profile_background_color": "000000", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 839, "description": "en un d\u00eda largo me quit\u00e9 el sost\u00e9n", "friends_count": 296, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3246768862/1456961166", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "screen_name": "agabriew", "lang": "es", "profile_background_tile": true, "favourites_count": 53353, "name": "\u200f\ufe0f\u200f\ufe0f", "notifications": false, "url": null, "created_at": "Mon May 11 20:00:55 +0000 2015", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Tue Jul 07 23:58:21 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}, {"expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "id_str": "618569772037500929", "sizes": {"small": {"h": 510, "resize": "fit", "w": 340}, "large": {"h": 900, "resize": "fit", "w": 600}, "medium": {"h": 900, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [61, 83], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 38770856, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/702689555518869504/Fdc-bATo_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 923, "profile_sidebar_border_color": "000000", "id_str": "38770856", "profile_background_color": "000000", "listed_count": 10, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 82998, "description": "Rompiendo celulares desde el 94' | Estadista | 21 | \u03a6\u03a3\u0391\nIg. Sc. Phhoto. Mario9414", "friends_count": 827, "location": "UPRA", "profile_link_color": "999999", "profile_image_url": "http://pbs.twimg.com/profile_images/702689555518869504/Fdc-bATo_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/38770856/1447370564", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Mario9414", "lang": "en", "profile_background_tile": false, "favourites_count": 21709, "name": "Mario Enrique Ponce", "notifications": false, "url": null, "created_at": "Sat May 09 01:54:17 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:24 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": {"small": {"h": 389, "resize": "fit", "w": 340}, "large": {"h": 686, "resize": "fit", "w": 600}, "medium": {"h": 686, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg"}, {"source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772037500929", "sizes": {"small": {"h": 510, "resize": "fit", "w": 340}, "large": {"h": 900, "resize": "fit", "w": 600}, "medium": {"h": 900, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [75, 97], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg"}]}} {"contributors": null, "truncated": false, "text": "\u201cModerate\u201d Pres. Rouhani: \u201cthe Zionist regime has been a wound on the body of the Islamic world for years and should be removed.\u201d #Iran", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172257789706240, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [130, 135], "text": "Iran"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "619172257789706240", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 245476444, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/590192268973223936/vY32KETh_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 463, "profile_sidebar_border_color": "000000", "id_str": "245476444", "profile_background_color": "000000", "listed_count": 169, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 5455, "description": "American-born Iranian Jew. I love the United States, Israel and the University of Southern California. Conservative and proud.", "friends_count": 609, "location": "Los Angeles, CA", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/590192268973223936/vY32KETh_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/245476444/1429547799", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "screen_name": "BeetaBenjy", "lang": "en", "profile_background_tile": false, "favourites_count": 5555, "name": "Beeta Benjy", "notifications": false, "url": null, "created_at": "Mon Jan 31 19:50:18 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:24 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "The Latest Iran Deadline Falls on an Ominous Date - http://t.co/mQaUHAn4jz http://t.co/q800Wr2gAS #Israel", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172304191401984, "favorite_count": 0, "source": "Google", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [98, 105], "text": "Israel"}], "urls": [{"url": "http://t.co/mQaUHAn4jz", "indices": [52, 74], "expanded_url": "http://TheBlaze.com", "display_url": "TheBlaze.com"}, {"url": "http://t.co/q800Wr2gAS", "indices": [75, 97], "expanded_url": "http://goo.gl/fb/Clzk8R", "display_url": "goo.gl/fb/Clzk8R"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172304191401984", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 284216925, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1316392193/Israel_flag_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/1nRqsYWl9e", "indices": [0, 22], "expanded_url": "http://en.wikipedia.org/wiki/Israel", "display_url": "en.wikipedia.org/wiki/Israel"}]}, "description": {"urls": []}}, "followers_count": 2083, "profile_sidebar_border_color": "C0DEED", "id_str": "284216925", "profile_background_color": "C0DEED", "listed_count": 124, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 73068, "description": "Israel News - Israel's #1 News Site - Israel National News", "friends_count": 49, "location": "Jerusalem, Israel", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1316392193/Israel_flag_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Israel_English", "lang": "es", "profile_background_tile": false, "favourites_count": 0, "name": "Israel News English", "notifications": false, "url": "http://t.co/1nRqsYWl9e", "created_at": "Mon Apr 18 21:31:21 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:35 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "El negociador de Teher\u00e1n en Viena: \"Nunca amenace a un iran\u00ed\" http://t.co/wXVqtkb7U2", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172319047647232, "favorite_count": 0, "source": "iOS", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/wXVqtkb7U2", "indices": [62, 84], "expanded_url": "http://actualidad.rt.com/actualidad/179680-negociador-teheran-viena-amenaza-iran", "display_url": "actualidad.rt.com/actualidad/179\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172319047647232", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 142916938, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/429615824828387329/Oyisq6EH_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/oAaczbTeIY", "indices": [0, 22], "expanded_url": "http://instagram.com/julioalbarracin", "display_url": "instagram.com/julioalbarracin"}]}, "description": {"urls": []}}, "followers_count": 4993, "profile_sidebar_border_color": "C0DEED", "id_str": "142916938", "profile_background_color": "C0DEED", "listed_count": 59, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 107521, "description": "", "friends_count": 5469, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/429615824828387329/Oyisq6EH_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/142916938/1360093178", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "julioalbarracin", "lang": "en", "profile_background_tile": false, "favourites_count": 178, "name": "julio", "notifications": false, "url": "http://t.co/oAaczbTeIY", "created_at": "Wed May 12 02:48:48 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:39 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "@ajfromhouston We can start a gofundme page for their individual tungsten steel ropes! Or just let Iran do it. They've got that nailed.", "is_quote_status": false, "in_reply_to_status_id": 619171961722175488, "id": 619172295966392320, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 629527375, "indices": [0, 14], "id_str": "629527375", "screen_name": "ajfromhouston", "name": "BIGTIMEAJ"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "ajfromhouston", "in_reply_to_user_id": 629527375, "retweet_count": 0, "id_str": "619172295966392320", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 529555835, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/569888157454192640/UOFbZ4eZ.jpeg", "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/730345980609101824/8B5-ib9E_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": {"url": {"urls": [{"url": "http://t.co/k21q3i5aOi", "indices": [0, 22], "expanded_url": "http://helpingmisguidedvoters.com/totalitarian_state.html", "display_url": "helpingmisguidedvoters.com/totalitarian_s\u2026"}]}, "description": {"urls": []}}, "followers_count": 11605, "profile_sidebar_border_color": "000000", "id_str": "529555835", "profile_background_color": "FF6699", "listed_count": 175, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 112679, "description": "See pinned tweet! DONALD J TRUMP for PRESIDENT! GOD bless America! Married 2A Marine!. I Block SMUT! Blocked by ABC", "friends_count": 9524, "location": "Location: AskTheNSA", "profile_link_color": "B40B43", "profile_image_url": "http://pbs.twimg.com/profile_images/730345980609101824/8B5-ib9E_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/529555835/1461321886", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/569888157454192640/UOFbZ4eZ.jpeg", "screen_name": "ljcambria", "lang": "en", "profile_background_tile": false, "favourites_count": 22345, "name": "NoToTheMark", "notifications": false, "url": "http://t.co/k21q3i5aOi", "created_at": "Mon Mar 19 17:26:46 +0000 2012", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "629527375", "lang": "en", "created_at": "Thu Jul 09 15:52:33 +0000 2015", "in_reply_to_status_id_str": "619171961722175488", "place": null} {"contributors": null, "truncated": false, "text": "Awaiting #Iran Deal, Nuclear Sleuths Gather Sophisticated Tools http://t.co/ji4uvQQbBK #Woman #usa #Iraq", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172193730199552, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [9, 14], "text": "Iran"}, {"indices": [87, 93], "text": "Woman"}, {"indices": [94, 98], "text": "usa"}, {"indices": [99, 104], "text": "Iraq"}], "urls": [{"url": "http://t.co/ji4uvQQbBK", "indices": [64, 86], "expanded_url": "http://goo.gl/EQ7kRJ", "display_url": "goo.gl/EQ7kRJ"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172193730199552", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2745507335, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/501427574136782849/xOM06Sz5_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 137, "profile_sidebar_border_color": "C0DEED", "id_str": "2745507335", "profile_background_color": "C0DEED", "listed_count": 53, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 47811, "description": "NCRI & MEK Supporter", "friends_count": 66, "location": "LONDON", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/501427574136782849/xOM06Sz5_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "LaelMoon3", "lang": "en", "profile_background_tile": false, "favourites_count": 1, "name": "Lael-Moon", "notifications": false, "url": null, "created_at": "Sun Aug 17 16:57:01 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:09 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "@FansEnVivo ir\u00e1n a Combate hoy?", "is_quote_status": false, "in_reply_to_status_id": 619171373135622144, "id": 619172341944332288, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 246294511, "indices": [0, 11], "id_str": "246294511", "screen_name": "FansEnVivo", "name": "Fans En Vivo"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "FansEnVivo", "in_reply_to_user_id": 246294511, "retweet_count": 0, "id_str": "619172341944332288", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 69188829, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/538530222220382208/TKHLY48l.jpeg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/704819198187458562/AfbwPClH_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"description": {"urls": []}}, "followers_count": 1021, "profile_sidebar_border_color": "000000", "id_str": "69188829", "profile_background_color": "F5ABB5", "listed_count": 12, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 63814, "description": "doctor...99% |DM, JLaw & music|", "friends_count": 781, "location": "Lima, Per\u00fa", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/704819198187458562/AfbwPClH_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/69188829/1463376965", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/538530222220382208/TKHLY48l.jpeg", "screen_name": "TeresaBeegazo", "lang": "en", "profile_background_tile": true, "favourites_count": 962, "name": "19 dias", "notifications": false, "url": null, "created_at": "Thu Aug 27 03:30:43 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "246294511", "lang": "es", "created_at": "Thu Jul 09 15:52:44 +0000 2015", "in_reply_to_status_id_str": "619171373135622144", "place": null} {"contributors": null, "truncated": false, "text": "HOUSE COMMITTEE HEARING ON 'IMPLICATIONS OF A NUCLEAR AGREEMENT WITH IRAN' | http://t.co/FRDQkkqMXb", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172303654518784, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/FRDQkkqMXb", "indices": [78, 100], "expanded_url": "http://video.foxnews.com/v/2553193403001/#sp=watch-live", "display_url": "video.foxnews.com/v/255319340300\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "619172303654518784", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2696111005, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/533600772580061184/I_sK_Aqp_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 1433, "profile_sidebar_border_color": "C0DEED", "id_str": "2696111005", "profile_background_color": "C0DEED", "listed_count": 48, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 14979, "description": "I am a Holocaust survivor, author, poet, conservative, patriot, and I have a great family: two daughters, two grandchildren and one great grand child.", "friends_count": 1135, "location": "New York", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/533600772580061184/I_sK_Aqp_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "EGEVER142", "lang": "en", "profile_background_tile": false, "favourites_count": 848, "name": "ESTHER GEVER", "notifications": false, "url": null, "created_at": "Thu Jul 31 16:28:35 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:35 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @Yamiche: UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064233186893824, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 89887215, "indices": [3, 11], "id_str": "89887215", "screen_name": "Yamiche", "name": "Yamiche Alcindor"}, {"id": 15754281, "indices": [90, 99], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY"}], "hashtags": [], "urls": [{"url": "http://t.co/xVOvdk1Ttz", "indices": [63, 85], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064233186893824", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064051330646016, "favorite_count": 12, "source": "iOS", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 15754281, "indices": [77, 86], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY"}], "hashtags": [], "urls": [{"url": "http://t.co/xVOvdk1Ttz", "indices": [50, 72], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064051330646016", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 89887215, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/Y4UpM3YlCz", "indices": [0, 23], "expanded_url": "http://yamichealcindor.com", "display_url": "yamichealcindor.com"}]}, "description": {"urls": []}}, "followers_count": 35266, "profile_sidebar_border_color": "EEEEEE", "id_str": "89887215", "profile_background_color": "131516", "listed_count": 1412, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 17738, "description": "@NYTimes reporter covering national politics & social justice issues. Formerly of @USATODAY. @Georgetown & @NYUNewsDoc alum. Email: yamiche@nytimes.com", "friends_count": 3727, "location": "New York, NY", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/89887215/1417998203", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Yamiche", "lang": "en", "profile_background_tile": true, "favourites_count": 1311, "name": "Yamiche Alcindor", "notifications": false, "url": "https://t.co/Y4UpM3YlCz", "created_at": "Sat Nov 14 06:37:11 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:33 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 117155917, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685988733464621056/XU923OGR.png", "verified": false, "profile_text_color": "545254", "profile_image_url_https": "https://pbs.twimg.com/profile_images/726161280298405888/2OMgey6z_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"url": {"urls": [{"url": "https://t.co/hAg9z6TltO", "indices": [0, 23], "expanded_url": "http://www.rebekahweatherspoon.com/", "display_url": "rebekahweatherspoon.com"}]}, "description": {"urls": []}}, "followers_count": 5069, "profile_sidebar_border_color": "FFFFFF", "id_str": "117155917", "profile_background_color": "FFFFFF", "listed_count": 254, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 146813, "description": "Multi Award-Winning Romance Author. QPOC. She/Her. I cheat at Uno. I run @WOCInRomance. Repped by @millercallihan. Come get Spooned.", "friends_count": 3212, "location": "Los Angeles", "profile_link_color": "94D487", "profile_image_url": "http://pbs.twimg.com/profile_images/726161280298405888/2OMgey6z_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/117155917/1462932630", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685988733464621056/XU923OGR.png", "screen_name": "rebekahwsm", "lang": "en", "profile_background_tile": true, "favourites_count": 8859, "name": "Rebekah Weatherspoon", "notifications": false, "url": "https://t.co/hAg9z6TltO", "created_at": "Wed Feb 24 18:24:45 +0000 2010", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Syria ratifies $1 billion credit line from Iran: state agency http://t.co/tfrYRvqfKs #Iran #irn", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172221349662720, "favorite_count": 0, "source": "Buffer", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [85, 90], "text": "Iran"}, {"indices": [91, 95], "text": "irn"}], "urls": [{"url": "http://t.co/tfrYRvqfKs", "indices": [62, 84], "expanded_url": "http://buff.ly/1KWdlRA", "display_url": "buff.ly/1KWdlRA"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172221349662720", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2446710032, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/605109099341180929/JBLuUWFU_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 68, "profile_sidebar_border_color": "C0DEED", "id_str": "2446710032", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 12464, "description": "Cheers to all Human Beings around the world.", "friends_count": 75, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/605109099341180929/JBLuUWFU_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "AhmedAbdolsala", "lang": "en-gb", "profile_background_tile": false, "favourites_count": 182, "name": "Ahmed Abdolsalam", "notifications": false, "url": null, "created_at": "Wed Apr 16 07:07:56 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:15 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @narendramodi: Was delighted to meet President @HassanRouhani & talk to him about stronger India-Iran ties. http://t.co/7AjJdADjSn", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172331399725057, "favorite_count": 0, "source": "Twitter for Windows Phone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 18839785, "indices": [3, 16], "id_str": "18839785", "screen_name": "narendramodi", "name": "Narendra Modi"}, {"id": 1404590618, "indices": [50, 64], "id_str": "1404590618", "screen_name": "HassanRouhani", "name": "Hassan Rouhani"}], "hashtags": [], "urls": [], "media": [{"source_user_id": 18839785, "source_status_id_str": "619126006910029824", "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg", "source_user_id_str": "18839785", "source_status_id": 619126006910029824, "id_str": "619125984625737728", "sizes": {"large": {"h": 877, "resize": "fit", "w": 1024}, "small": {"h": 291, "resize": "fit", "w": 340}, "medium": {"h": 514, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [115, 137], "type": "photo", "id": 619125984625737728, "media_url": "http://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 940, "id_str": "619172331399725057", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Was delighted to meet President @HassanRouhani & talk to him about stronger India-Iran ties. http://t.co/7AjJdADjSn", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619126006910029824, "favorite_count": 1593, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1404590618, "indices": [32, 46], "id_str": "1404590618", "screen_name": "HassanRouhani", "name": "Hassan Rouhani"}], "hashtags": [], "urls": [], "media": [{"expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg", "id_str": "619125984625737728", "sizes": {"large": {"h": 877, "resize": "fit", "w": 1024}, "small": {"h": 291, "resize": "fit", "w": 340}, "medium": {"h": 514, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [97, 119], "type": "photo", "id": 619125984625737728, "media_url": "http://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 940, "id_str": "619126006910029824", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 18839785, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/562185004696875009/DiiHx54g.jpeg", "verified": true, "profile_text_color": "233863", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718314968102367232/ypY1GPCQ_normal.jpg", "profile_sidebar_fill_color": "D5DFED", "entities": {"url": {"urls": [{"url": "http://t.co/i7NW4Bof2G", "indices": [0, 22], "expanded_url": "http://www.narendramodi.in", "display_url": "narendramodi.in"}]}, "description": {"urls": []}}, "followers_count": 20131424, "profile_sidebar_border_color": "FFFFFF", "id_str": "18839785", "profile_background_color": "F4EDD4", "listed_count": 18681, "is_translation_enabled": false, "utc_offset": 19800, "statuses_count": 11253, "description": "Prime Minister of India", "friends_count": 1372, "location": "India", "profile_link_color": "4E7096", "profile_image_url": "http://pbs.twimg.com/profile_images/718314968102367232/ypY1GPCQ_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1439641826", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/562185004696875009/DiiHx54g.jpeg", "screen_name": "narendramodi", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Narendra Modi", "notifications": false, "url": "http://t.co/i7NW4Bof2G", "created_at": "Sat Jan 10 17:18:56 +0000 2009", "contributors_enabled": false, "time_zone": "New Delhi", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 12:48:37 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg", "id_str": "619125984625737728", "sizes": {"large": {"h": 877, "resize": "fit", "w": 1024}, "small": {"h": 291, "resize": "fit", "w": 340}, "medium": {"h": 514, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [97, 119], "type": "photo", "id": 619125984625737728, "media_url": "http://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg"}, {"expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeT0hxVEAAOHYK.jpg", "id_str": "619126004414484480", "sizes": {"small": {"h": 289, "resize": "fit", "w": 340}, "large": {"h": 871, "resize": "fit", "w": 1024}, "medium": {"h": 510, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [97, 119], "type": "photo", "id": 619126004414484480, "media_url": "http://pbs.twimg.com/media/CJeT0hxVEAAOHYK.jpg"}, {"expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzSFVEAA4Bq7.jpg", "id_str": "619125983023534080", "sizes": {"large": {"h": 940, "resize": "fit", "w": 1024}, "small": {"h": 312, "resize": "fit", "w": 340}, "medium": {"h": 551, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [97, 119], "type": "photo", "id": 619125983023534080, "media_url": "http://pbs.twimg.com/media/CJeTzSFVEAA4Bq7.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": true, "id": 2932056121, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 22, "profile_sidebar_border_color": "C0DEED", "id_str": "2932056121", "profile_background_color": "C0DEED", "listed_count": 3, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 1442, "description": "", "friends_count": 41, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "neetanagarkar", "lang": "en", "profile_background_tile": false, "favourites_count": 1812, "name": "Neeta Nagarkar", "notifications": false, "url": null, "created_at": "Tue Dec 16 09:07:36 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:42 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 18839785, "source_status_id_str": "619126006910029824", "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg", "source_user_id_str": "18839785", "source_status_id": 619126006910029824, "id_str": "619125984625737728", "sizes": {"large": {"h": 877, "resize": "fit", "w": 1024}, "small": {"h": 291, "resize": "fit", "w": 340}, "medium": {"h": 514, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [115, 137], "type": "photo", "id": 619125984625737728, "media_url": "http://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg"}, {"source_user_id": 18839785, "source_status_id_str": "619126006910029824", "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeT0hxVEAAOHYK.jpg", "source_user_id_str": "18839785", "source_status_id": 619126006910029824, "id_str": "619126004414484480", "sizes": {"small": {"h": 289, "resize": "fit", "w": 340}, "large": {"h": 871, "resize": "fit", "w": 1024}, "medium": {"h": 510, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [115, 137], "type": "photo", "id": 619126004414484480, "media_url": "http://pbs.twimg.com/media/CJeT0hxVEAAOHYK.jpg"}, {"source_user_id": 18839785, "source_status_id_str": "619126006910029824", "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzSFVEAA4Bq7.jpg", "source_user_id_str": "18839785", "source_status_id": 619126006910029824, "id_str": "619125983023534080", "sizes": {"large": {"h": 940, "resize": "fit", "w": 1024}, "small": {"h": 312, "resize": "fit", "w": 340}, "medium": {"h": 551, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [115, 137], "type": "photo", "id": 619125983023534080, "media_url": "http://pbs.twimg.com/media/CJeTzSFVEAA4Bq7.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @HezbollahWatch: Did anyone bother to tell this extraordinarily vain #Hezbollah #terror|ist that this is inappropriate\u2049\ufe0f #Iran #Syria ht\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172302878408704, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 331456004, "indices": [3, 18], "id_str": "331456004", "screen_name": "HezbollahWatch", "name": "Hezbollah Watch"}], "hashtags": [{"indices": [72, 82], "text": "Hezbollah"}, {"indices": [83, 90], "text": "terror"}, {"indices": [124, 129], "text": "Iran"}, {"indices": [130, 136], "text": "Syria"}], "urls": [], "media": [{"source_user_id": 331456004, "source_status_id_str": "619170497683673089", "expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg", "source_user_id_str": "331456004", "source_status_id": 619170497683673089, "id_str": "619170492864335872", "sizes": {"small": {"h": 567, "resize": "fit", "w": 340}, "large": {"h": 960, "resize": "fit", "w": 576}, "medium": {"h": 960, "resize": "fit", "w": 576}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 619170492864335872, "media_url": "http://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619172302878408704", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Did anyone bother to tell this extraordinarily vain #Hezbollah #terror|ist that this is inappropriate\u2049\ufe0f #Iran #Syria http://t.co/5u1EoGjV2r", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619170497683673089, "favorite_count": 1, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [52, 62], "text": "Hezbollah"}, {"indices": [63, 70], "text": "terror"}, {"indices": [104, 109], "text": "Iran"}, {"indices": [110, 116], "text": "Syria"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg", "id_str": "619170492864335872", "sizes": {"small": {"h": 567, "resize": "fit", "w": 340}, "large": {"h": 960, "resize": "fit", "w": 576}, "medium": {"h": 960, "resize": "fit", "w": 576}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [117, 139], "type": "photo", "id": 619170492864335872, "media_url": "http://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619170497683673089", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 331456004, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/590794318941523968/Dme28eui_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/pgnojvF3d1", "indices": [0, 23], "expanded_url": "http://hezbollahwatch.blogspot.com/", "display_url": "hezbollahwatch.blogspot.com"}]}, "description": {"urls": []}}, "followers_count": 8086, "profile_sidebar_border_color": "C0DEED", "id_str": "331456004", "profile_background_color": "C0DEED", "listed_count": 269, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 29821, "description": "Scrutinizing #Hezbollah & the #Khomeini|st Absolute Velayat-e Faqih doctrine: fascism, totalitarianism & terrorism. Commenting on #Islam, #Shia, #Islamophobia \u2026", "friends_count": 1308, "location": "RT/\u2665/links/follow\u2260endorsement", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/590794318941523968/Dme28eui_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/331456004/1460595668", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "HezbollahWatch", "lang": "en", "profile_background_tile": false, "favourites_count": 6413, "name": "Hezbollah Watch", "notifications": false, "url": "https://t.co/pgnojvF3d1", "created_at": "Fri Jul 08 06:05:11 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Thu Jul 09 15:45:24 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg", "id_str": "619170492864335872", "sizes": {"small": {"h": 567, "resize": "fit", "w": 340}, "large": {"h": 960, "resize": "fit", "w": 576}, "medium": {"h": 960, "resize": "fit", "w": 576}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [117, 139], "type": "photo", "id": 619170492864335872, "media_url": "http://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg"}, {"expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVAAAvKOL.jpg", "id_str": "619170492864331776", "sizes": {"small": {"h": 567, "resize": "fit", "w": 340}, "large": {"h": 960, "resize": "fit", "w": 576}, "medium": {"h": 960, "resize": "fit", "w": 576}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [117, 139], "type": "photo", "id": 619170492864331776, "media_url": "http://pbs.twimg.com/media/CJe8SGKVAAAvKOL.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 31480794, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/443856080/wallpaper-fire.jpg", "verified": false, "profile_text_color": "F50505", "profile_image_url_https": "https://pbs.twimg.com/profile_images/555487734173671425/DtdV8Avn_normal.jpeg", "profile_sidebar_fill_color": "000000", "entities": {"url": {"urls": [{"url": "https://t.co/1SLsa7MT13", "indices": [0, 23], "expanded_url": "http://flip.it/kUOzv", "display_url": "flip.it/kUOzv"}]}, "description": {"urls": []}}, "followers_count": 26367, "profile_sidebar_border_color": "000000", "id_str": "31480794", "profile_background_color": "000000", "listed_count": 179, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 158328, "description": "Reporting On #Government, #Politics, #Military, #Technology, Crime & Law, #HumanRights, #MENA, #Terrorism, #Corruption, etc. RT/Follow \u2260 Endorsement \u10da(\u0ca0\u76ca\u0ca0\u10da)", "friends_count": 870, "location": "Gh0st1ng Cyb3rSp4c3", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/555487734173671425/DtdV8Avn_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31480794/1419277683", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/443856080/wallpaper-fire.jpg", "screen_name": "GhostRiderRadio", "lang": "en", "profile_background_tile": true, "favourites_count": 3337, "name": "Gh\u00f0\u00a7\u2020 R\u00ef\u00d0\u00ear R\u00e5\u00d0\u00ef\u00f0\u2122", "notifications": false, "url": "https://t.co/1SLsa7MT13", "created_at": "Wed Apr 15 18:44:35 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:35 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 331456004, "source_status_id_str": "619170497683673089", "expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg", "source_user_id_str": "331456004", "source_status_id": 619170497683673089, "id_str": "619170492864335872", "sizes": {"small": {"h": 567, "resize": "fit", "w": 340}, "large": {"h": 960, "resize": "fit", "w": 576}, "medium": {"h": 960, "resize": "fit", "w": 576}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 619170492864335872, "media_url": "http://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg"}, {"source_user_id": 331456004, "source_status_id_str": "619170497683673089", "expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVAAAvKOL.jpg", "source_user_id_str": "331456004", "source_status_id": 619170497683673089, "id_str": "619170492864331776", "sizes": {"small": {"h": 567, "resize": "fit", "w": 340}, "large": {"h": 960, "resize": "fit", "w": 576}, "medium": {"h": 960, "resize": "fit", "w": 576}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 619170492864331776, "media_url": "http://pbs.twimg.com/media/CJe8SGKVAAAvKOL.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @fidh_en: Many human rights defenders are arbitrarily detained in #Iran. Support them on #ForFreedom : http://t.co/CD6QxbMjKa #IranTalks", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172278086070272, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 17386064, "indices": [3, 11], "id_str": "17386064", "screen_name": "fidh_en", "name": "FIDH"}], "hashtags": [{"indices": [69, 74], "text": "Iran"}, {"indices": [92, 103], "text": "ForFreedom"}, {"indices": [129, 139], "text": "IranTalks"}], "urls": [{"url": "http://t.co/CD6QxbMjKa", "indices": [106, 128], "expanded_url": "http://en.freedom-defenders.org/", "display_url": "en.freedom-defenders.org"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "619172278086070272", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Many human rights defenders are arbitrarily detained in #Iran. Support them on #ForFreedom : http://t.co/CD6QxbMjKa #IranTalks", "is_quote_status": false, "in_reply_to_status_id": 619167023902400512, "id": 619169376101638145, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [56, 61], "text": "Iran"}, {"indices": [79, 90], "text": "ForFreedom"}, {"indices": [116, 126], "text": "IranTalks"}], "urls": [{"url": "http://t.co/CD6QxbMjKa", "indices": [93, 115], "expanded_url": "http://en.freedom-defenders.org/", "display_url": "en.freedom-defenders.org"}]}, "in_reply_to_screen_name": "fidh_en", "in_reply_to_user_id": 17386064, "retweet_count": 2, "id_str": "619169376101638145", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 17386064, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/383108655/arriereplanmoyen.jpg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/710116589366943745/uXufV_Nf_normal.jpg", "profile_sidebar_fill_color": "A0C5C7", "entities": {"url": {"urls": [{"url": "https://t.co/9FHvuaQqWE", "indices": [0, 23], "expanded_url": "https://www.fidh.org/en", "display_url": "fidh.org/en"}]}, "description": {"urls": [{"url": "http://t.co/57CFf9tqzX", "indices": [118, 140], "expanded_url": "http://bit.ly/1oruWWB", "display_url": "bit.ly/1oruWWB"}]}}, "followers_count": 27669, "profile_sidebar_border_color": "FFFFFF", "id_str": "17386064", "profile_background_color": "3A1D43", "listed_count": 579, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 7574, "description": "FIDH federates 178 #HumanRights NGOs. Founded in 1922, we fight #ForFreedom #Justice #Democracy - Board & Staff list: http://t.co/57CFf9tqzX", "friends_count": 2394, "location": "worldwide", "profile_link_color": "3A1D43", "profile_image_url": "http://pbs.twimg.com/profile_images/710116589366943745/uXufV_Nf_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17386064/1438680801", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/383108655/arriereplanmoyen.jpg", "screen_name": "fidh_en", "lang": "fr", "profile_background_tile": false, "favourites_count": 206, "name": "FIDH", "notifications": false, "url": "https://t.co/9FHvuaQqWE", "created_at": "Fri Nov 14 11:59:41 +0000 2008", "contributors_enabled": false, "time_zone": "Paris", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": "17386064", "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:40:57 +0000 2015", "in_reply_to_status_id_str": "619167023902400512", "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 100951936, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/570607912/zbc0irf0wip5mmu3q2wu.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/733599672288350209/o9RY1bvo_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 114, "profile_sidebar_border_color": "C0DEED", "id_str": "100951936", "profile_background_color": "352726", "listed_count": 2, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 1026, "description": "I'm the one inside my own skin", "friends_count": 447, "location": "", "profile_link_color": "D02B55", "profile_image_url": "http://pbs.twimg.com/profile_images/733599672288350209/o9RY1bvo_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/100951936/1444120287", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/570607912/zbc0irf0wip5mmu3q2wu.jpeg", "screen_name": "elbshari_abdo", "lang": "en", "profile_background_tile": true, "favourites_count": 1554, "name": "elbshari", "notifications": false, "url": null, "created_at": "Fri Jan 01 10:36:29 +0000 2010", "contributors_enabled": false, "time_zone": "Athens", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:29 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @ashrafisafighol: Source: Obama says reaching an #Iran deal is below 50/50 http://t.co/IcEWmPcPGN #Yemen #LONDON #BreakingNew", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172293680345089, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 2514912774, "indices": [3, 19], "id_str": "2514912774", "screen_name": "ashrafisafighol", "name": "Ashrafi Safigholi"}], "hashtags": [{"indices": [52, 57], "text": "Iran"}, {"indices": [101, 107], "text": "Yemen"}, {"indices": [108, 115], "text": "LONDON"}, {"indices": [116, 128], "text": "BreakingNew"}], "urls": [{"url": "http://t.co/IcEWmPcPGN", "indices": [78, 100], "expanded_url": "http://goo.gl/fZKWsN", "display_url": "goo.gl/fZKWsN"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 30, "id_str": "619172293680345089", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Source: Obama says reaching an #Iran deal is below 50/50 http://t.co/IcEWmPcPGN #Yemen #LONDON #BreakingNew", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619167163853606912, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [31, 36], "text": "Iran"}, {"indices": [80, 86], "text": "Yemen"}, {"indices": [87, 94], "text": "LONDON"}, {"indices": [95, 107], "text": "BreakingNew"}], "urls": [{"url": "http://t.co/IcEWmPcPGN", "indices": [57, 79], "expanded_url": "http://goo.gl/fZKWsN", "display_url": "goo.gl/fZKWsN"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 30, "id_str": "619167163853606912", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 2514912774, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/469405048212951040/-1GOdd78_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/gbteP5hOmI", "indices": [0, 23], "expanded_url": "http://mojahedin.org", "display_url": "mojahedin.org"}]}, "description": {"urls": []}}, "followers_count": 125, "profile_sidebar_border_color": "C0DEED", "id_str": "2514912774", "profile_background_color": "C0DEED", "listed_count": 24, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 20045, "description": "Human rights activity", "friends_count": 134, "location": "City of London, London", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/469405048212951040/-1GOdd78_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2514912774/1400749889", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "ashrafisafighol", "lang": "en", "profile_background_tile": false, "favourites_count": 2395, "name": "Ashrafi Safigholi", "notifications": false, "url": "https://t.co/gbteP5hOmI", "created_at": "Thu May 22 09:03:55 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:32:10 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 2493824904, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/466484009514463232/C7JI7kFC_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "https://t.co/gbteP5hOmI", "indices": [0, 23], "expanded_url": "http://mojahedin.org", "display_url": "mojahedin.org"}]}, "description": {"urls": []}}, "followers_count": 121, "profile_sidebar_border_color": "C0DEED", "id_str": "2493824904", "profile_background_color": "C0DEED", "listed_count": 30, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 22545, "description": "#Freedom and# humanrights activist", "friends_count": 151, "location": "paris", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/466484009514463232/C7JI7kFC_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2493824904/1400053278", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "AmaniRasol", "lang": "en", "profile_background_tile": false, "favourites_count": 29, "name": "Rasol Amani", "notifications": false, "url": "https://t.co/gbteP5hOmI", "created_at": "Wed May 14 07:30:36 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:33 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RSS: \u2018No Iranian nuclear deal unless US sanctions lifted\u2019 http://t.co/hSTrtlucja", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172347275116548, "favorite_count": 0, "source": "BOTlibre!", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/hSTrtlucja", "indices": [59, 81], "expanded_url": "http://rt.com/op-edge/272656-iran-nuclear-deal-obama-statement/?utm_source=rss&utm_medium=rss&utm_campaign=RSS", "display_url": "rt.com/op-edge/272656\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172347275116548", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2889098734, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/536473760321138689/q_ghb1ty_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 436, "profile_sidebar_border_color": "C0DEED", "id_str": "2889098734", "profile_background_color": "C0DEED", "listed_count": 186, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 50122, "description": "", "friends_count": 50, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/536473760321138689/q_ghb1ty_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "crimebot_404", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "crimebot", "notifications": false, "url": null, "created_at": "Sun Nov 23 10:57:38 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:45 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @katestratton3: Four Americans Are Still Trapped In #Iran~Deal Or No Deal~Here Are Their Stories http://t.co/kS2OmRaF9t #IranTalksVienna\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172328249757696, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 771186223, "indices": [3, 17], "id_str": "771186223", "screen_name": "katestratton3", "name": "Katherine Palmer"}], "hashtags": [{"indices": [55, 60], "text": "Iran"}, {"indices": [123, 139], "text": "IranTalksVienna"}, {"indices": [139, 140], "text": "Iran"}, {"indices": [139, 140], "text": "FreeAmirNow"}], "urls": [{"url": "http://t.co/kS2OmRaF9t", "indices": [100, 122], "expanded_url": "http://huff.to/1LTrb8i", "display_url": "huff.to/1LTrb8i"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619172328249757696", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Four Americans Are Still Trapped In #Iran~Deal Or No Deal~Here Are Their Stories http://t.co/kS2OmRaF9t #IranTalksVienna #Iran #FreeAmirNow", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171953560031232, "favorite_count": 2, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [36, 41], "text": "Iran"}, {"indices": [104, 120], "text": "IranTalksVienna"}, {"indices": [121, 126], "text": "Iran"}, {"indices": [127, 139], "text": "FreeAmirNow"}], "urls": [{"url": "http://t.co/kS2OmRaF9t", "indices": [81, 103], "expanded_url": "http://huff.to/1LTrb8i", "display_url": "huff.to/1LTrb8i"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619171953560031232", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 771186223, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3357130562/8e3ce55689dfeb9144a248bae19805e8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/jDv1kDmWAG", "indices": [0, 22], "expanded_url": "http://www.facebook.com/foreverfaithfulfather", "display_url": "facebook.com/foreverfaithfu\u2026"}]}, "description": {"urls": []}}, "followers_count": 3640, "profile_sidebar_border_color": "C0DEED", "id_str": "771186223", "profile_background_color": "C0DEED", "listed_count": 152, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 78319, "description": "Freelance writer in the Garden of Hope, my journey w/ ABBA from the Garden of Gethsemane 2 wherever HE Wills me to go Spiritually&Physcially *ABBAPapa says 2me", "friends_count": 3405, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3357130562/8e3ce55689dfeb9144a248bae19805e8_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/771186223/1353169360", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "katestratton3", "lang": "en", "profile_background_tile": false, "favourites_count": 10034, "name": "Katherine Palmer", "notifications": false, "url": "http://t.co/jDv1kDmWAG", "created_at": "Tue Aug 21 09:33:50 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:51:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 300686726, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/665385373107773441/_Kx-xpQP.jpg", "verified": false, "profile_text_color": "7FC7C3", "profile_image_url_https": "https://pbs.twimg.com/profile_images/733669591948230656/xqKBjXN4_normal.jpg", "profile_sidebar_fill_color": "117485", "entities": {"description": {"urls": []}}, "followers_count": 2354, "profile_sidebar_border_color": "FFFFFF", "id_str": "300686726", "profile_background_color": "8B542B", "listed_count": 100, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 106032, "description": "It is what it is ~ John Trudell ..... ISurvived #FosterCare", "friends_count": 1746, "location": "west coast to the deep south ", "profile_link_color": "080807", "profile_image_url": "http://pbs.twimg.com/profile_images/733669591948230656/xqKBjXN4_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/300686726/1459859505", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/665385373107773441/_Kx-xpQP.jpg", "screen_name": "missuhappybird", "lang": "en", "profile_background_tile": true, "favourites_count": 15474, "name": "d.m.", "notifications": false, "url": null, "created_at": "Wed May 18 05:47:25 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:41 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @thehill: JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172214475108352, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1917731, "indices": [3, 11], "id_str": "1917731", "screen_name": "thehill", "name": "The Hill"}], "hashtags": [], "urls": [{"url": "http://t.co/0WZIQMNf50", "indices": [75, 97], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4"}], "media": [{"source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [98, 120], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619172214475108352", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171737033396224, "favorite_count": 4, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/0WZIQMNf50", "indices": [62, 84], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4"}], "media": [{"expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [85, 107], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619171737033396224", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1917731, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "profile_sidebar_fill_color": "EBEBEB", "entities": {"url": {"urls": [{"url": "http://t.co/t414UtTRv4", "indices": [0, 22], "expanded_url": "http://www.thehill.com", "display_url": "thehill.com"}]}, "description": {"urls": []}}, "followers_count": 747989, "profile_sidebar_border_color": "ADADAA", "id_str": "1917731", "profile_background_color": "9AE4E8", "listed_count": 16660, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 190708, "description": "The Hill is the premier source for policy and political news. Follow for tweets on what's happening in Washington, breaking news and retweets of our reporters.", "friends_count": 489, "location": "Washington, DC", "profile_link_color": "FF0021", "profile_image_url": "http://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1917731/1434034905", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "screen_name": "thehill", "lang": "en", "profile_background_tile": true, "favourites_count": 26, "name": "The Hill", "notifications": false, "url": "http://t.co/t414UtTRv4", "created_at": "Thu Mar 22 18:15:18 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:50:20 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [85, 107], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2552698171, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/490506969791221760/N1bMfNgD_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 4110, "profile_sidebar_border_color": "C0DEED", "id_str": "2552698171", "profile_background_color": "C0DEED", "listed_count": 146, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 87069, "description": "Animals,art,science,environ.,sociology, pro-Israel. Reposts do NOT always endorse, no partyline,not a business,not extremist but read all points of view.", "friends_count": 3843, "location": "warning- a few graphic photos", "profile_link_color": "4A913C", "profile_image_url": "http://pbs.twimg.com/profile_images/490506969791221760/N1bMfNgD_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2552698171/1447343287", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "xhertx", "lang": "en", "profile_background_tile": false, "favourites_count": 57511, "name": "XiXi Davey", "notifications": false, "url": null, "created_at": "Sat Jun 07 14:12:39 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:14 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [98, 120], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @ynetnews: Kerry to make statement on Iran nuclear talks - http://t.co/lcDIelUmQx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172179960328192, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 367709007, "indices": [3, 12], "id_str": "367709007", "screen_name": "ynetnews", "name": "Ynetnews"}], "hashtags": [], "urls": [{"url": "http://t.co/lcDIelUmQx", "indices": [62, 84], "expanded_url": "http://ift.tt/1UFkMRT", "display_url": "ift.tt/1UFkMRT"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 3, "id_str": "619172179960328192", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Kerry to make statement on Iran nuclear talks - http://t.co/lcDIelUmQx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172017137405952, "favorite_count": 1, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/lcDIelUmQx", "indices": [48, 70], "expanded_url": "http://ift.tt/1UFkMRT", "display_url": "ift.tt/1UFkMRT"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 3, "id_str": "619172017137405952", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 367709007, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1679844840/logo_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/xAiNMbYJbZ", "indices": [0, 22], "expanded_url": "http://www.ynetnews.com", "display_url": "ynetnews.com"}]}, "description": {"urls": []}}, "followers_count": 30524, "profile_sidebar_border_color": "C0DEED", "id_str": "367709007", "profile_background_color": "C0DEED", "listed_count": 1114, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 38308, "description": "Ynetnews: Breaking news updates from Israel, the Middle East and the Jewish World - the official Twitter page", "friends_count": 401, "location": "Tel Aviv, Israel", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1679844840/logo_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/367709007/1402571499", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "ynetnews", "lang": "en", "profile_background_tile": false, "favourites_count": 364, "name": "Ynetnews", "notifications": false, "url": "http://t.co/xAiNMbYJbZ", "created_at": "Sun Sep 04 12:40:06 +0000 2011", "contributors_enabled": false, "time_zone": "Jerusalem", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:51:27 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 42226593, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595898101/k1v8f8sh44ssaxvp28bx.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692365304995975168/xly9-72s_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 2114, "profile_sidebar_border_color": "C0DEED", "id_str": "42226593", "profile_background_color": "642D8B", "listed_count": 75, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 250349, "description": "Born Again, Conservative, pilot. It's time to take America back!", "friends_count": 2153, "location": "Ohio", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/692365304995975168/xly9-72s_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/42226593/1398268696", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595898101/k1v8f8sh44ssaxvp28bx.jpeg", "screen_name": "shirleycolleen", "lang": "en", "profile_background_tile": true, "favourites_count": 12161, "name": "Colleen Hunt", "notifications": false, "url": null, "created_at": "Sun May 24 15:21:14 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:06 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "I will be in #Ferguson today after 5pm. If anyone needs me to do anything at all for them before then contact me.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064232449114112, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [13, 22], "text": "Ferguson"}], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064232449114112", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 200471093, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/767424684/5d28dc58e1409be56e55e6ffc7c3ba23.jpeg", "verified": false, "profile_text_color": "9E9396", "profile_image_url_https": "https://pbs.twimg.com/profile_images/725043450580729856/Iw7UKzC7_normal.jpg", "profile_sidebar_fill_color": "751C3D", "entities": {"description": {"urls": []}}, "followers_count": 17058, "profile_sidebar_border_color": "000000", "id_str": "200471093", "profile_background_color": "611561", "listed_count": 445, "is_translation_enabled": false, "utc_offset": -21600, "statuses_count": 28126, "description": "black & woman. hard lover. complicated. deeply invested in black liberation. womanist to the core. organizer. my very existence is a protest. RN.", "friends_count": 970, "location": "St. Louis, MO", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/725043450580729856/Iw7UKzC7_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/200471093/1463198199", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/767424684/5d28dc58e1409be56e55e6ffc7c3ba23.jpeg", "screen_name": "bdoulaoblongata", "lang": "en", "profile_background_tile": false, "favourites_count": 1692, "name": "b", "notifications": false, "url": null, "created_at": "Sat Oct 09 11:35:18 +0000 2010", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @Yamiche: UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064235175399425, "favorite_count": 0, "source": "TweetCaster for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 89887215, "indices": [3, 11], "id_str": "89887215", "screen_name": "Yamiche", "name": "Yamiche Alcindor"}, {"id": 15754281, "indices": [90, 99], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY"}], "hashtags": [], "urls": [{"url": "http://t.co/xVOvdk1Ttz", "indices": [63, 85], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064235175399425", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064051330646016, "favorite_count": 12, "source": "iOS", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 15754281, "indices": [77, 86], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY"}], "hashtags": [], "urls": [{"url": "http://t.co/xVOvdk1Ttz", "indices": [50, 72], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064051330646016", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 89887215, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "profile_sidebar_fill_color": "EFEFEF", "entities": {"url": {"urls": [{"url": "https://t.co/Y4UpM3YlCz", "indices": [0, 23], "expanded_url": "http://yamichealcindor.com", "display_url": "yamichealcindor.com"}]}, "description": {"urls": []}}, "followers_count": 35266, "profile_sidebar_border_color": "EEEEEE", "id_str": "89887215", "profile_background_color": "131516", "listed_count": 1412, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 17738, "description": "@NYTimes reporter covering national politics & social justice issues. Formerly of @USATODAY. @Georgetown & @NYUNewsDoc alum. Email: yamiche@nytimes.com", "friends_count": 3727, "location": "New York, NY", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/89887215/1417998203", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Yamiche", "lang": "en", "profile_background_tile": true, "favourites_count": 1311, "name": "Yamiche Alcindor", "notifications": false, "url": "https://t.co/Y4UpM3YlCz", "created_at": "Sat Nov 14 06:37:11 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:33 +0000 2014", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 387416764, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/724018068347715585/JSVPKJtl_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 436, "profile_sidebar_border_color": "C0DEED", "id_str": "387416764", "profile_background_color": "C0DEED", "listed_count": 21, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 39025, "description": "\u00af\\_(\u30c4)_/\u00af\n\nJust an independent girly | RTS = endorsements, scorn or shock", "friends_count": 2464, "location": "United States Of America", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/724018068347715585/JSVPKJtl_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "independentgrly", "lang": "en", "profile_background_tile": false, "favourites_count": 6886, "name": "Independent Girly", "notifications": false, "url": null, "created_at": "Sun Oct 09 01:17:14 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "Help if U can our Marine held by Iran!!! http://t.co/MJtX9j84fO #Veterans #USMC #FreeAmirNow http://t.co/nGHlPnRQl7 @Montel_Williams #tcot", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172306338709504, "favorite_count": 1, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 28096105, "indices": [116, 132], "id_str": "28096105", "screen_name": "Montel_Williams", "name": "Montel Williams"}], "hashtags": [{"indices": [64, 73], "text": "Veterans"}, {"indices": [74, 79], "text": "USMC"}, {"indices": [80, 92], "text": "FreeAmirNow"}, {"indices": [133, 138], "text": "tcot"}], "urls": [{"url": "http://t.co/MJtX9j84fO", "indices": [41, 63], "expanded_url": "http://www.giveforward.com/freeamir", "display_url": "giveforward.com/freeamir"}], "media": [{"source_user_id": 361708743, "source_status_id_str": "596269794527092737", "expanded_url": "http://twitter.com/dutchmn007/status/596269794527092737/photo/1", "display_url": "pic.twitter.com/nGHlPnRQl7", "url": "http://t.co/nGHlPnRQl7", "media_url_https": "https://pbs.twimg.com/media/CEZgNzbVEAAqQgw.jpg", "source_user_id_str": "361708743", "source_status_id": 596269794527092737, "id_str": "596269790932570112", "sizes": {"small": {"h": 205, "resize": "fit", "w": 340}, "large": {"h": 398, "resize": "fit", "w": 660}, "medium": {"h": 362, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [93, 115], "type": "photo", "id": 596269790932570112, "media_url": "http://pbs.twimg.com/media/CEZgNzbVEAAqQgw.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 7, "id_str": "619172306338709504", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 361708743, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "verified": false, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000501176030/6150bad8d8393edcb82593ffefe07eef_normal.jpeg", "profile_sidebar_fill_color": "95E8EC", "entities": {"url": {"urls": [{"url": "https://t.co/xi67mPPqLa", "indices": [0, 23], "expanded_url": "http://www.marscherlordsfilm.com", "display_url": "marscherlordsfilm.com"}]}, "description": {"urls": [{"url": "https://t.co/fRP2M9PZZr", "indices": [71, 94], "expanded_url": "http://www.quarterdeckent.com", "display_url": "quarterdeckent.com"}, {"url": "https://t.co/PIwpzJn6Pe", "indices": [95, 118], "expanded_url": "http://www.imdb.com/name/nm4990021/?ref_=fn_al_nm_1", "display_url": "imdb.com/name/nm4990021\u2026"}]}}, "followers_count": 3023, "profile_sidebar_border_color": "FFFFFF", "id_str": "361708743", "profile_background_color": "0099B9", "listed_count": 161, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 19394, "description": "Actor, Mltry Hstrn, Author, Flmkr. Lrn the Lssns of Hstry or Rpt Them. https://t.co/fRP2M9PZZr https://t.co/PIwpzJn6Pe", "friends_count": 3341, "location": "SoCal", "profile_link_color": "0099B9", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000501176030/6150bad8d8393edcb82593ffefe07eef_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/361708743/1459290561", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "screen_name": "dutchmn007", "lang": "en", "profile_background_tile": false, "favourites_count": 14522, "name": "R. E. Wilhelm III", "notifications": false, "url": "https://t.co/xi67mPPqLa", "created_at": "Thu Aug 25 06:11:42 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:36 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 361708743, "source_status_id_str": "596269794527092737", "expanded_url": "http://twitter.com/dutchmn007/status/596269794527092737/photo/1", "display_url": "pic.twitter.com/nGHlPnRQl7", "url": "http://t.co/nGHlPnRQl7", "media_url_https": "https://pbs.twimg.com/media/CEZgNzbVEAAqQgw.jpg", "source_user_id_str": "361708743", "source_status_id": 596269794527092737, "id_str": "596269790932570112", "sizes": {"small": {"h": 205, "resize": "fit", "w": 340}, "large": {"h": 398, "resize": "fit", "w": 660}, "medium": {"h": 362, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [93, 115], "type": "photo", "id": 596269790932570112, "media_url": "http://pbs.twimg.com/media/CEZgNzbVEAAqQgw.jpg"}]}} {"contributors": null, "truncated": false, "text": "Agha Bozorg Theological school and Mosque, a masterpiece of Architecture! #Kashan #iran #mustseeiran http://t.co/76s3ckFEuX", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172312122814464, "favorite_count": 12, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [74, 81], "text": "Kashan"}, {"indices": [82, 87], "text": "iran"}, {"indices": [88, 100], "text": "mustseeiran"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/Travestyleblog/status/619172312122814464/photo/1", "display_url": "pic.twitter.com/76s3ckFEuX", "url": "http://t.co/76s3ckFEuX", "media_url_https": "https://pbs.twimg.com/media/CJe97pTXAAASfRv.jpg", "id_str": "619172306183716864", "sizes": {"small": {"h": 512, "resize": "fit", "w": 340}, "large": {"h": 1024, "resize": "fit", "w": 680}, "medium": {"h": 904, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [101, 123], "type": "photo", "id": 619172306183716864, "media_url": "http://pbs.twimg.com/media/CJe97pTXAAASfRv.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619172312122814464", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1594163078, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681912853217972224/uAvE2MLM_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"url": {"urls": [{"url": "http://t.co/KBrnsvpYLB", "indices": [0, 22], "expanded_url": "http://www.travestyle.com", "display_url": "travestyle.com"}]}, "description": {"urls": [{"url": "http://t.co/HytKfJkfDE", "indices": [18, 40], "expanded_url": "http://www.travestyle.com/", "display_url": "travestyle.com"}, {"url": "https://t.co/DTcMzsw2lo", "indices": [134, 157], "expanded_url": "https://www.facebook.com/travestyle", "display_url": "facebook.com/travestyle"}]}}, "followers_count": 418, "profile_sidebar_border_color": "C0DEED", "id_str": "1594163078", "profile_background_color": "C0DEED", "listed_count": 25, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 742, "description": "Travel blogger at http://t.co/HytKfJkfDE, Graphic designer by degree, life enthusiast and wannabe photographer. Check me on facebook: https://t.co/DTcMzsw2lo", "friends_count": 357, "location": "Tehran, Iran", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/681912853217972224/uAvE2MLM_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1594163078/1451415710", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Travestyleblog", "lang": "en", "profile_background_tile": false, "favourites_count": 368, "name": "Matin Lashkari", "notifications": false, "url": "http://t.co/KBrnsvpYLB", "created_at": "Sun Jul 14 20:05:05 +0000 2013", "contributors_enabled": false, "time_zone": "Lisbon", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "ro", "created_at": "Thu Jul 09 15:52:37 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/Travestyleblog/status/619172312122814464/photo/1", "display_url": "pic.twitter.com/76s3ckFEuX", "url": "http://t.co/76s3ckFEuX", "media_url_https": "https://pbs.twimg.com/media/CJe97pTXAAASfRv.jpg", "id_str": "619172306183716864", "sizes": {"small": {"h": 512, "resize": "fit", "w": 340}, "large": {"h": 1024, "resize": "fit", "w": 680}, "medium": {"h": 904, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [101, 123], "type": "photo", "id": 619172306183716864, "media_url": "http://pbs.twimg.com/media/CJe97pTXAAASfRv.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @thehill: JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172173568053248, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 1917731, "indices": [3, 11], "id_str": "1917731", "screen_name": "thehill", "name": "The Hill"}], "hashtags": [], "urls": [{"url": "http://t.co/0WZIQMNf50", "indices": [75, 97], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4"}], "media": [{"source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [98, 120], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619172173568053248", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171737033396224, "favorite_count": 4, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/0WZIQMNf50", "indices": [62, 84], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4"}], "media": [{"expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [85, 107], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619171737033396224", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1917731, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "profile_sidebar_fill_color": "EBEBEB", "entities": {"url": {"urls": [{"url": "http://t.co/t414UtTRv4", "indices": [0, 22], "expanded_url": "http://www.thehill.com", "display_url": "thehill.com"}]}, "description": {"urls": []}}, "followers_count": 747989, "profile_sidebar_border_color": "ADADAA", "id_str": "1917731", "profile_background_color": "9AE4E8", "listed_count": 16660, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 190708, "description": "The Hill is the premier source for policy and political news. Follow for tweets on what's happening in Washington, breaking news and retweets of our reporters.", "friends_count": 489, "location": "Washington, DC", "profile_link_color": "FF0021", "profile_image_url": "http://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1917731/1434034905", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "screen_name": "thehill", "lang": "en", "profile_background_tile": true, "favourites_count": 26, "name": "The Hill", "notifications": false, "url": "http://t.co/t414UtTRv4", "created_at": "Thu Mar 22 18:15:18 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:50:20 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [85, 107], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 21685295, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/672833109570682881/POl_VKy-_normal.png", "profile_sidebar_fill_color": "000000", "entities": {"url": {"urls": [{"url": "http://t.co/qn8IOQUxlR", "indices": [0, 22], "expanded_url": "http://j.mp/a92iw2", "display_url": "j.mp/a92iw2"}]}, "description": {"urls": []}}, "followers_count": 12650, "profile_sidebar_border_color": "000000", "id_str": "21685295", "profile_background_color": "000000", "listed_count": 548, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 24208, "description": "@MPRnews host (I'm the one w/o the book club); listen weekdays at 11am; 2006 TIME Person of the Year (Insty: weber_tom1)", "friends_count": 9028, "location": "St. Paul, MN", "profile_link_color": "4A913C", "profile_image_url": "http://pbs.twimg.com/profile_images/672833109570682881/POl_VKy-_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21685295/1398205935", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "webertom1", "lang": "en", "profile_background_tile": false, "favourites_count": 2700, "name": "Tom Weber", "notifications": false, "url": "http://t.co/qn8IOQUxlR", "created_at": "Mon Feb 23 19:45:36 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:04 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": {"small": {"h": 191, "resize": "fit", "w": 340}, "large": {"h": 363, "resize": "fit", "w": 645}, "medium": {"h": 338, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [98, 120], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg"}]}} {"contributors": null, "truncated": false, "text": "Amazing capture of Reghz canyon for those who in love with trikking canyons\n\nLocation: Darab ,Fars province-IRAN \nR\u2026 http://t.co/e4Jwub0jzb", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172208452182016, "favorite_count": 7, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [{"expanded_url": "http://twitter.com/san3tm/status/619172208452182016/photo/1", "display_url": "pic.twitter.com/e4Jwub0jzb", "url": "http://t.co/e4Jwub0jzb", "media_url_https": "https://pbs.twimg.com/media/CJe9186WsAAnKUu.jpg", "id_str": "619172208368332800", "sizes": {"large": {"h": 640, "resize": "fit", "w": 640}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [117, 139], "type": "photo", "id": 619172208368332800, "media_url": "http://pbs.twimg.com/media/CJe9186WsAAnKUu.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172208452182016", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 36913679, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "011219", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731721758542200832/kCAZRYTc_normal.jpg", "profile_sidebar_fill_color": "DDFFCC", "entities": {"description": {"urls": []}}, "followers_count": 6823, "profile_sidebar_border_color": "BDDCAD", "id_str": "36913679", "profile_background_color": "FFFFFF", "listed_count": 20, "is_translation_enabled": false, "utc_offset": 16200, "statuses_count": 44172, "description": "\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u062e. \u062f\u0627 \u0633\u06cc\u06af\u0627\u0631 \u0648\u06cc\u0633\u06a9\u06cc \u06a9\u0645\u06cc \u0639\u0634\u0642... \u0627\u062d\u0645\u0642 \u0686\u06cc\u0632\u06cc \u06a9\u0647 \u062e\u0631\u0627\u0628 \u0634\u062f\u0647 \u0631\u0648 \u062f\u0631\u0633 \u0646\u06a9\u0646 \u0645\u062b\u0644 \u0627\u0648\u0644\u0634 \u0646\u0645\u06cc\u0634\u0647 \u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f", "friends_count": 1564, "location": "", "profile_link_color": "02ABE8", "profile_image_url": "http://pbs.twimg.com/profile_images/731721758542200832/kCAZRYTc_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/36913679/1455013082", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "san3tm", "lang": "en", "profile_background_tile": false, "favourites_count": 123492, "name": "\u062f\u0627\u062f\u0627", "notifications": false, "url": null, "created_at": "Fri May 01 09:22:48 +0000 2009", "contributors_enabled": false, "time_zone": "Tehran", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/san3tm/status/619172208452182016/photo/1", "display_url": "pic.twitter.com/e4Jwub0jzb", "url": "http://t.co/e4Jwub0jzb", "media_url_https": "https://pbs.twimg.com/media/CJe9186WsAAnKUu.jpg", "id_str": "619172208368332800", "sizes": {"large": {"h": 640, "resize": "fit", "w": 640}, "small": {"h": 340, "resize": "fit", "w": 340}, "medium": {"h": 600, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [117, 139], "type": "photo", "id": 619172208368332800, "media_url": "http://pbs.twimg.com/media/CJe9186WsAAnKUu.jpg"}]}} {"contributors": null, "truncated": false, "text": "RT @justinsink: No deal today. Diplomats will need at least another day to strike a possible nuclear accord with Iran, officials tell @Indi\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172209857327104, "favorite_count": 0, "source": "Lissted", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 346197350, "indices": [3, 14], "id_str": "346197350", "screen_name": "justinsink", "name": "Justin Sink"}, {"id": 239857777, "indices": [134, 140], "id_str": "239857777", "screen_name": "Indira_L", "name": "Indira Lakshmanan"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "619172209857327104", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "No deal today. Diplomats will need at least another day to strike a possible nuclear accord with Iran, officials tell @Indira_L in Vienna", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619170363184939008, "favorite_count": 2, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 239857777, "indices": [118, 127], "id_str": "239857777", "screen_name": "Indira_L", "name": "Indira Lakshmanan"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "619170363184939008", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 346197350, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/312296219/-2.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/496053606479831041/eQq7Y3Td_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 4674, "profile_sidebar_border_color": "C0DEED", "id_str": "346197350", "profile_background_color": "C0DEED", "listed_count": 284, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 10596, "description": "I write about the White House for Bloomberg @business and tweet about Philly sports. E-mail me at jsink1 at bloomberg dot net.", "friends_count": 974, "location": "Washington, DC", "profile_link_color": "24B300", "profile_image_url": "http://pbs.twimg.com/profile_images/496053606479831041/eQq7Y3Td_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/346197350/1398218553", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/312296219/-2.png", "screen_name": "justinsink", "lang": "en", "profile_background_tile": false, "favourites_count": 1404, "name": "Justin Sink", "notifications": false, "url": null, "created_at": "Sun Jul 31 21:58:33 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:44:52 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2897136909, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/580716531165884416/tnFytCc7_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 369, "profile_sidebar_border_color": "C0DEED", "id_str": "2897136909", "profile_background_color": "C0DEED", "listed_count": 94, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 99025, "description": "Finding the best US tweets at the rate of around 400 a day. UK tweets can be found on the original @TweetsDistilled a/c. A @Lissted service.", "friends_count": 0, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/580716531165884416/tnFytCc7_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "USTweetsDistill", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Tweets Distilled US", "notifications": false, "url": null, "created_at": "Sat Nov 29 10:17:20 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:13 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @Thatindianbruh: 2 Eye Witnesses. 1 Story. Fuck everything that the media telling you bout the #Ferguson case. This is the facts. http:/\u2026", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064233438568450, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 90296594, "indices": [3, 18], "id_str": "90296594", "screen_name": "Thatindianbruh", "name": "Mr. Patel"}], "hashtags": [{"indices": [98, 107], "text": "Ferguson"}], "urls": [], "media": [{"source_user_id": 90296594, "source_status_id_str": "501051914218668032", "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "source_user_id_str": "90296594", "source_status_id": 501051914218668032, "id_str": "501051913505624066", "sizes": {"small": {"h": 492, "resize": "fit", "w": 340}, "large": {"h": 869, "resize": "fit", "w": 600}, "medium": {"h": 869, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10371, "id_str": "501064233438568450", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "2 Eye Witnesses. 1 Story. Fuck everything that the media telling you bout the #Ferguson case. This is the facts. http://t.co/NjN9AF7AFP", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501051914218668032, "favorite_count": 4867, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [78, 87], "text": "Ferguson"}], "urls": [], "media": [{"expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "id_str": "501051913505624066", "sizes": {"small": {"h": 492, "resize": "fit", "w": 340}, "large": {"h": 869, "resize": "fit", "w": 600}, "medium": {"h": 869, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [113, 135], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10371, "id_str": "501051914218668032", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 90296594, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676981908/5039c47ca9aaf1f1f1ace58c9c465d16.jpeg", "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666174215796715520/r531di_H_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": {"description": {"urls": []}}, "followers_count": 8733, "profile_sidebar_border_color": "000000", "id_str": "90296594", "profile_background_color": "1D1D1B", "listed_count": 142, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 56174, "description": "You know who I am.", "friends_count": 1137, "location": "ATL", "profile_link_color": "2BC1C4", "profile_image_url": "http://pbs.twimg.com/profile_images/666174215796715520/r531di_H_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/90296594/1459289391", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676981908/5039c47ca9aaf1f1f1ace58c9c465d16.jpeg", "screen_name": "Thatindianbruh", "lang": "en", "profile_background_tile": false, "favourites_count": 7163, "name": "Mr. Patel", "notifications": false, "url": null, "created_at": "Mon Nov 16 01:45:23 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:04:20 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "id_str": "501051913505624066", "sizes": {"small": {"h": 492, "resize": "fit", "w": 340}, "large": {"h": 869, "resize": "fit", "w": 600}, "medium": {"h": 869, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [113, 135], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg"}]}}, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 277073535, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/326306495/static_.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/412677408685170688/IjcWeGCL_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 708, "profile_sidebar_border_color": "C0DEED", "id_str": "277073535", "profile_background_color": "C0DEED", "listed_count": 4, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 27391, "description": "#69", "friends_count": 531, "location": "Da Brook", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/412677408685170688/IjcWeGCL_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/277073535/1462744632", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/326306495/static_.gif", "screen_name": "koalaexpresss", "lang": "en", "profile_background_tile": true, "favourites_count": 2295, "name": "Novak", "notifications": false, "url": null, "created_at": "Mon Apr 04 17:01:00 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": {"media": [{"source_user_id": 90296594, "source_status_id_str": "501051914218668032", "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "source_user_id_str": "90296594", "source_status_id": 501051914218668032, "id_str": "501051913505624066", "sizes": {"small": {"h": 492, "resize": "fit", "w": 340}, "large": {"h": 869, "resize": "fit", "w": 600}, "medium": {"h": 869, "resize": "fit", "w": 600}, "thumb": {"h": 150, "resize": "crop", "w": 150}}, "indices": [139, 140], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg"}]}} {"contributors": null, "truncated": false, "text": "Iran deal is right around the corner! Kool & The Gang - Celebration https://t.co/OarqWwTCnx via @YouTube", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172163912908801, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 10228272, "indices": [100, 108], "id_str": "10228272", "screen_name": "YouTube", "name": "YouTube"}], "hashtags": [], "urls": [{"url": "https://t.co/OarqWwTCnx", "indices": [72, 95], "expanded_url": "https://youtu.be/3GwjfUFyY6M", "display_url": "youtu.be/3GwjfUFyY6M"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172163912908801", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 3231982123, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/605103876841218048/jw6X-QIC_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": {"url": {"urls": [{"url": "http://t.co/sm6H7ZCNWv", "indices": [0, 22], "expanded_url": "http://www.paladin-defense.us/", "display_url": "paladin-defense.us"}]}, "description": {"urls": []}}, "followers_count": 375, "profile_sidebar_border_color": "000000", "id_str": "3231982123", "profile_background_color": "000000", "listed_count": 7, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 3805, "description": "Compassionate Realist, Veteran, Pro bono Director of Operations at Paladin Defense Group", "friends_count": 564, "location": "Savannah, GA", "profile_link_color": "850707", "profile_image_url": "http://pbs.twimg.com/profile_images/605103876841218048/jw6X-QIC_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3231982123/1433105696", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "JarBomb", "lang": "en", "profile_background_tile": false, "favourites_count": 3715, "name": "Jarami Feith", "notifications": false, "url": "http://t.co/sm6H7ZCNWv", "created_at": "Sun May 31 20:05:07 +0000 2015", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:02 +0000 2015", "in_reply_to_status_id_str": null, "place": null} {"contributors": null, "truncated": false, "text": "RT @ianbremmer: Kerry statement on Iran coming at 1pm. Expect a deal. And lots of controversy. \nFor the record, I'm in favor.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172331584376832, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"id": 60783724, "indices": [3, 14], "id_str": "60783724", "screen_name": "ianbremmer", "name": "ian bremmer"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 48, "id_str": "619172331584376832", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Kerry statement on Iran coming at 1pm. Expect a deal. And lots of controversy. \nFor the record, I'm in favor.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619164407583637504, "favorite_count": 29, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 48, "id_str": "619164407583637504", "favorited": false, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 60783724, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/533237233277755392/YuwtsYri_normal.jpeg", "profile_sidebar_fill_color": "C0DFEC", "entities": {"url": {"urls": [{"url": "https://t.co/RyT2ScT8cy", "indices": [0, 23], "expanded_url": "http://www.ianbremmer.com", "display_url": "ianbremmer.com"}]}, "description": {"urls": []}}, "followers_count": 177640, "profile_sidebar_border_color": "FFFFFF", "id_str": "60783724", "profile_background_color": "022330", "listed_count": 4984, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 18673, "description": "political scientist, author, prof at nyu, columnist at time, ostensible intellectual entrepreneur, president @eurasiagroup", "friends_count": 999, "location": "", "profile_link_color": "3489B3", "profile_image_url": "http://pbs.twimg.com/profile_images/533237233277755392/YuwtsYri_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/60783724/1431962642", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "screen_name": "ianbremmer", "lang": "en", "profile_background_tile": false, "favourites_count": 22, "name": "ian bremmer", "notifications": false, "url": "https://t.co/RyT2ScT8cy", "created_at": "Tue Jul 28 02:23:28 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:21:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2759742364, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689884054053883904/ym8uPEvb_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": {"description": {"urls": []}}, "followers_count": 115, "profile_sidebar_border_color": "C0DEED", "id_str": "2759742364", "profile_background_color": "C0DEED", "listed_count": 16, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 4841, "description": "author . editor . Graecophile . ardent libertarian . liberal weenie . the unexamined life is not worth living", "friends_count": 149, "location": "Athens", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/689884054053883904/ym8uPEvb_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2759742364/1453316719", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "erikathomas_me2", "lang": "en-gb", "profile_background_tile": false, "favourites_count": 547, "name": "erika thomas", "notifications": false, "url": null, "created_at": "Tue Sep 02 20:06:50 +0000 2014", "contributors_enabled": false, "time_zone": "Athens", "protected": false, "default_profile": true, "is_translator": false}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:42 +0000 2015", "in_reply_to_status_id_str": null, "place": null} jello-1.6.1/tests/fixtures/twitterdata.json000066400000000000000000036354001501617276000211060ustar00rootroot00000000000000[ { "contributors": null, "truncated": false, "text": "Gobernador dice que el toque de queda en #Ferguson por disturbios raciales podría durar días http://t.co/doAajeQkom", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064141332029440, "favorite_count": 0, "source": "Hootsuite", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 41, 50 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/doAajeQkom", "indices": [ 93, 115 ], "expanded_url": "http://ow.ly/ApIBD", "display_url": "ow.ly/ApIBD" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 3, "id_str": "501064141332029440", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 851336634, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/834791998/376566559c7f84a79248efd7a1b4b686.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000043443067/c3ab5f8bb3f917134b0d6f8c5cabaabb_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/fvHMZhwmP4", "indices": [ 0, 22 ], "expanded_url": "http://www.20minutos.com", "display_url": "20minutos.com" } ] }, "description": { "urls": [ { "url": "http://t.co/rPn1suMKxI", "indices": [ 137, 159 ], "expanded_url": "http://on.fb.me/14K1oux", "display_url": "on.fb.me/14K1oux" } ] } }, "followers_count": 15643, "profile_sidebar_border_color": "FFFFFF", "id_str": "851336634", "profile_background_color": "C0DEED", "listed_count": 185, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 26857, "description": "Somos la edición de @20m en Estados Unidos y queremos darte información sobre la comunidad latina. Nos interesa mucho tu opinión. En FB: http://t.co/rPn1suMKxI", "friends_count": 12636, "location": "Estados Unidos", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000043443067/c3ab5f8bb3f917134b0d6f8c5cabaabb_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/851336634/1365183919", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/834791998/376566559c7f84a79248efd7a1b4b686.jpeg", "screen_name": "20mUsa", "lang": "es", "profile_background_tile": true, "favourites_count": 34, "name": "20minutos USA", "notifications": false, "url": "http://t.co/fvHMZhwmP4", "created_at": "Fri Sep 28 16:21:14 +0000 2012", "contributors_enabled": false, "time_zone": "Athens", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:52:55 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @NerdyNegress: Mike Brown’s Family Asked To See Robbery Footage Before Police Released It To Media, But Were Ignored http://t.co/WJmBx4B…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064171707170816, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 295988417, "indices": [ 3, 16 ], "id_str": "295988417", "screen_name": "NerdyNegress", "name": "Nerdy Negress" } ], "hashtags": [ { "indices": [ 139, 140 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/WJmBx4BtQg", "indices": [ 120, 140 ], "expanded_url": "http://pulse.me/s/2gkEZ1", "display_url": "pulse.me/s/2gkEZ1" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "501064171707170816", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Mike Brown’s Family Asked To See Robbery Footage Before Police Released It To Media, But Were Ignored http://t.co/WJmBx4BtQg #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064110696857600, "favorite_count": 5, "source": "Pulse News", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 125, 134 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/WJmBx4BtQg", "indices": [ 102, 124 ], "expanded_url": "http://pulse.me/s/2gkEZ1", "display_url": "pulse.me/s/2gkEZ1" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "501064110696857600", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 295988417, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/692516370/13b17673a172776c6473f26a2563249b.jpeg", "verified": false, "profile_text_color": "5A657D", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714991721956904960/namFT73y_normal.jpg", "profile_sidebar_fill_color": "82C487", "entities": { "description": { "urls": [] } }, "followers_count": 6604, "profile_sidebar_border_color": "000000", "id_str": "295988417", "profile_background_color": "BBCACD", "listed_count": 158, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 24165, "description": "60ish Pragamatic Progressive | Architect | Fiber Artist | Professor | Yale graduate| I follow back | Obama3 | Vote Blue No Matter Who | Hillary OR Bernie!", "friends_count": 6907, "location": "", "profile_link_color": "4D9993", "profile_image_url": "http://pbs.twimg.com/profile_images/714991721956904960/namFT73y_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/295988417/1459302395", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/692516370/13b17673a172776c6473f26a2563249b.jpeg", "screen_name": "NerdyNegress", "lang": "en", "profile_background_tile": false, "favourites_count": 1008, "name": "Nerdy Negress", "notifications": false, "url": null, "created_at": "Tue May 10 00:45:03 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:47 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 53158947, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/623356951812911104/_mep97pQ.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/728626015413612544/xj616t-e_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "description": { "urls": [] } }, "followers_count": 5661, "profile_sidebar_border_color": "FFFFFF", "id_str": "53158947", "profile_background_color": "EDECE9", "listed_count": 186, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 256653, "description": "Blocked by #Liz_Cheney #mehganMcCain #ggreenwald #seanhannnity #chucktodd #joeNBC Mom of 2 soldiers #49ers #UGA #RetiredMilitary Criminal Justice; Legal Studies", "friends_count": 5462, "location": "None of your business", "profile_link_color": "981CEB", "profile_image_url": "http://pbs.twimg.com/profile_images/728626015413612544/xj616t-e_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/53158947/1462926425", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/623356951812911104/_mep97pQ.jpg", "screen_name": "MzDivah67", "lang": "en", "profile_background_tile": true, "favourites_count": 58053, "name": "Nicole", "notifications": false, "url": null, "created_at": "Thu Jul 02 19:18:52 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:02 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @NerdyNegress: Mike Brown’s Family Asked To See Robbery Footage Before Police Released It To Media, But Were Ignored http://t.co/WJmBx4B…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064180468682752, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 295988417, "indices": [ 3, 16 ], "id_str": "295988417", "screen_name": "NerdyNegress", "name": "Nerdy Negress" } ], "hashtags": [ { "indices": [ 139, 140 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/WJmBx4BtQg", "indices": [ 120, 140 ], "expanded_url": "http://pulse.me/s/2gkEZ1", "display_url": "pulse.me/s/2gkEZ1" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "501064180468682752", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Mike Brown’s Family Asked To See Robbery Footage Before Police Released It To Media, But Were Ignored http://t.co/WJmBx4BtQg #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064110696857600, "favorite_count": 5, "source": "Pulse News", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 125, 134 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/WJmBx4BtQg", "indices": [ 102, 124 ], "expanded_url": "http://pulse.me/s/2gkEZ1", "display_url": "pulse.me/s/2gkEZ1" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "501064110696857600", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 295988417, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/692516370/13b17673a172776c6473f26a2563249b.jpeg", "verified": false, "profile_text_color": "5A657D", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714991721956904960/namFT73y_normal.jpg", "profile_sidebar_fill_color": "82C487", "entities": { "description": { "urls": [] } }, "followers_count": 6604, "profile_sidebar_border_color": "000000", "id_str": "295988417", "profile_background_color": "BBCACD", "listed_count": 158, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 24165, "description": "60ish Pragamatic Progressive | Architect | Fiber Artist | Professor | Yale graduate| I follow back | Obama3 | Vote Blue No Matter Who | Hillary OR Bernie!", "friends_count": 6907, "location": "", "profile_link_color": "4D9993", "profile_image_url": "http://pbs.twimg.com/profile_images/714991721956904960/namFT73y_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/295988417/1459302395", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/692516370/13b17673a172776c6473f26a2563249b.jpeg", "screen_name": "NerdyNegress", "lang": "en", "profile_background_tile": false, "favourites_count": 1008, "name": "Nerdy Negress", "notifications": false, "url": null, "created_at": "Tue May 10 00:45:03 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:47 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 619587350, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/723267938741063680/DnLmpoOA_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 1208, "profile_sidebar_border_color": "000000", "id_str": "619587350", "profile_background_color": "000000", "listed_count": 112, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 31788, "description": "Writer, Goddess in the making, Blerd, Gun Owner, From BK to Oakland and back then back again... #BlackLivesMatter #BlackGirlMagic", "friends_count": 1317, "location": "", "profile_link_color": "981CEB", "profile_image_url": "http://pbs.twimg.com/profile_images/723267938741063680/DnLmpoOA_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/619587350/1386527808", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "screen_name": "BrookLyn1825", "lang": "en", "profile_background_tile": false, "favourites_count": 14262, "name": "BrookLyn", "notifications": false, "url": null, "created_at": "Wed Jun 27 02:02:38 +0000 2012", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:04 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Ferguson Becomes Newest War Zone http://t.co/dEewjjh6pF", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064188211765249, "favorite_count": 0, "source": "Pinterest", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/dEewjjh6pF", "indices": [ 33, 55 ], "expanded_url": "http://pinterest.com/pin/120893571222393085/", "display_url": "pinterest.com/pin/1208935712…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064188211765249", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 374346913, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/331046922/xa4f8a7e22c3d483e591a5947d6fb106.png", "verified": false, "profile_text_color": "1E1E60", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2936411601/9968a110d6934a75fcee031a27a9eb81_normal.jpeg", "profile_sidebar_fill_color": "D56E8D", "entities": { "url": { "urls": [ { "url": "http://t.co/WKRxaQXIoz", "indices": [ 0, 22 ], "expanded_url": "http://about.me/ChereseJackson", "display_url": "about.me/ChereseJackson" } ] }, "description": { "urls": [] } }, "followers_count": 3390, "profile_sidebar_border_color": "BA1144", "id_str": "374346913", "profile_background_color": "B28592", "listed_count": 69, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 19105, "description": "Life & Business Coach, Speaker, Author, Blogger, Writer and Chief Operating Officer of New Direction Coaching Associates. Married to @Mr_Empowerment", "friends_count": 1192, "location": "Virginia Beach", "profile_link_color": "2E131B", "profile_image_url": "http://pbs.twimg.com/profile_images/2936411601/9968a110d6934a75fcee031a27a9eb81_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/374346913/1401630772", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/331046922/xa4f8a7e22c3d483e591a5947d6fb106.png", "screen_name": "I_Mpower", "lang": "en", "profile_background_tile": true, "favourites_count": 32, "name": "Cherese Jackson", "notifications": false, "url": "http://t.co/WKRxaQXIoz", "created_at": "Fri Sep 16 04:53:44 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:06 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "US #USNews Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far http://t.co/GHidaUfTz2", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064194309906436, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 3, 10 ], "text": "USNews" } ], "urls": [ { "url": "http://t.co/GHidaUfTz2", "indices": [ 83, 105 ], "expanded_url": "http://dlvr.it/6dqmwD", "display_url": "dlvr.it/6dqmwD" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064194309906436", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2272978051, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/419265943382925312/EV9B9Gro_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/D6uQJzF3rs", "indices": [ 0, 22 ], "expanded_url": "http://www.epochtimes.de", "display_url": "epochtimes.de" } ] }, "description": { "urls": [] } }, "followers_count": 490, "profile_sidebar_border_color": "C0DEED", "id_str": "2272978051", "profile_background_color": "C0DEED", "listed_count": 237, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 369176, "description": "Interessantes und Wichtiges aus China und sonst aus der Welt", "friends_count": 975, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/419265943382925312/EV9B9Gro_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2272978051/1388795892", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Vorarlberg1", "lang": "de", "profile_background_tile": false, "favourites_count": 0, "name": "China", "notifications": false, "url": "http://t.co/D6uQJzF3rs", "created_at": "Thu Jan 02 12:54:36 +0000 2014", "contributors_enabled": false, "time_zone": "Vienna", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:07 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @BgRs: Want to help the people of #Ferguson? Want to contribute to #MikeBrown's family?\nHere is a list of things you can do: http://t.co…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064196931330049, "favorite_count": 0, "source": "Twitterrific", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 18989941, "indices": [ 3, 8 ], "id_str": "18989941", "screen_name": "BgRs", "name": "Bridgette" } ], "hashtags": [ { "indices": [ 37, 46 ], "text": "Ferguson" }, { "indices": [ 70, 80 ], "text": "MikeBrown" } ], "urls": [ { "url": "http://t.co/NYhm5s8SMo", "indices": [ 139, 140 ], "expanded_url": "http://breed7910.wordpress.com/2014/08/16/campaigns-for-mikebrown-ferguson/", "display_url": "breed7910.wordpress.com/2014/08/16/cam…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 225, "id_str": "501064196931330049", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Want to help the people of #Ferguson? Want to contribute to #MikeBrown's family?\nHere is a list of things you can do: http://t.co/NYhm5s8SMo", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501017032486178818, "favorite_count": 87, "source": "TweetCaster for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 27, 36 ], "text": "Ferguson" }, { "indices": [ 60, 70 ], "text": "MikeBrown" } ], "urls": [ { "url": "http://t.co/NYhm5s8SMo", "indices": [ 118, 140 ], "expanded_url": "http://breed7910.wordpress.com/2014/08/16/campaigns-for-mikebrown-ferguson/", "display_url": "breed7910.wordpress.com/2014/08/16/cam…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 225, "id_str": "501017032486178818", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 18989941, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/451372452455518208/abocY_e1.jpeg", "verified": false, "profile_text_color": "E6C561", "profile_image_url_https": "https://pbs.twimg.com/profile_images/733151263911612416/a2sA9oxJ_normal.jpg", "profile_sidebar_fill_color": "1A4963", "entities": { "url": { "urls": [ { "url": "https://t.co/eQUgnA3dYB", "indices": [ 0, 23 ], "expanded_url": "http://epbroadcast.podbean.com", "display_url": "epbroadcast.podbean.com" } ] }, "description": { "urls": [] } }, "followers_count": 1045, "profile_sidebar_border_color": "000000", "id_str": "18989941", "profile_background_color": "1A1717", "listed_count": 54, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 190743, "description": "Memphis born and bred. 1/4th of the #EPBPodcast (@elvispreslyblvd). There's only mountains and the sea. There's nothing greater, you and me.", "friends_count": 1019, "location": "The Bluff City", "profile_link_color": "0F0354", "profile_image_url": "http://pbs.twimg.com/profile_images/733151263911612416/a2sA9oxJ_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18989941/1461317182", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/451372452455518208/abocY_e1.jpeg", "screen_name": "BgRs", "lang": "en", "profile_background_tile": false, "favourites_count": 654, "name": "Bridgette", "notifications": false, "url": "https://t.co/eQUgnA3dYB", "created_at": "Wed Jan 14 19:04:57 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Sun Aug 17 14:45:43 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 278298244, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000143781828/KFbf2YeS.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/723262747652161536/q1ekuIjo_normal.jpg", "profile_sidebar_fill_color": "F6FFD1", "entities": { "url": { "urls": [ { "url": "https://t.co/KKthDBUDJB", "indices": [ 0, 23 ], "expanded_url": "http://bookishshelly.wordpress.com", "display_url": "bookishshelly.wordpress.com" } ] }, "description": { "urls": [] } }, "followers_count": 186, "profile_sidebar_border_color": "FFFFFF", "id_str": "278298244", "profile_background_color": "F7F3EF", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 2279, "description": "SAHM. Book blogger. ISFJ. Hufflepuff.", "friends_count": 689, "location": "California", "profile_link_color": "FA743E", "profile_image_url": "http://pbs.twimg.com/profile_images/723262747652161536/q1ekuIjo_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/278298244/1461268852", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000143781828/KFbf2YeS.jpeg", "screen_name": "bookishshelly", "lang": "en", "profile_background_tile": false, "favourites_count": 1975, "name": "Shelly Huang", "notifications": false, "url": "https://t.co/KKthDBUDJB", "created_at": "Thu Apr 07 00:45:43 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "US Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far: FERGUSON, Mo.—After an unarmed black... http://t.co/jPZd2aqt2C", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064197396914176, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/jPZd2aqt2C", "indices": [ 116, 138 ], "expanded_url": "http://dlvr.it/6dqmxX", "display_url": "dlvr.it/6dqmxX" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064197396914176", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1112443196, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3393688326/53425c37516b5e6c3da625306838580d_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/pScnN3sNl9", "indices": [ 0, 22 ], "expanded_url": "http://www.epochtimes.de/", "display_url": "epochtimes.de" } ] }, "description": { "urls": [] } }, "followers_count": 1356, "profile_sidebar_border_color": "C0DEED", "id_str": "1112443196", "profile_background_color": "C0DEED", "listed_count": 170, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 377014, "description": "", "friends_count": 805, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3393688326/53425c37516b5e6c3da625306838580d_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1112443196/1363555893", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "deegerwiilen", "lang": "de", "profile_background_tile": false, "favourites_count": 0, "name": "Erich Bachmann", "notifications": false, "url": "http://t.co/pScnN3sNl9", "created_at": "Tue Jan 22 19:37:05 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @MiamiLib: When do these \"patriots\" get tear gassed? #Ferguson #tcot #uniteblue #teaparty #gop http://t.co/nUYeZhx8km", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064197632167936, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 56, 65 ], "text": "Ferguson" }, { "indices": [ 66, 71 ], "text": "tcot" }, { "indices": [ 72, 82 ], "text": "uniteblue" }, { "indices": [ 83, 92 ], "text": "teaparty" }, { "indices": [ 93, 97 ], "text": "gop" } ], "urls": [], "media": [ { "source_user_id": 898533348, "source_status_id_str": "501062167303450626", "expanded_url": "http://twitter.com/MiamiLib/status/501062167303450626/photo/1", "display_url": "pic.twitter.com/nUYeZhx8km", "url": "http://t.co/nUYeZhx8km", "media_url_https": "https://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg", "source_user_id_str": "898533348", "source_status_id": 501062167303450626, "id_str": "501062167051767811", "sizes": { "small": { "h": 342, "resize": "fit", "w": 340 }, "large": { "h": 1000, "resize": "fit", "w": 994 }, "medium": { "h": 604, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 98, 120 ], "type": "photo", "id": 501062167051767811, "media_url": "http://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 134, "id_str": "501064197632167936", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "When do these \"patriots\" get tear gassed? #Ferguson #tcot #uniteblue #teaparty #gop http://t.co/nUYeZhx8km", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062167303450626, "favorite_count": 64, "source": "iOS", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 42, 51 ], "text": "Ferguson" }, { "indices": [ 52, 57 ], "text": "tcot" }, { "indices": [ 58, 68 ], "text": "uniteblue" }, { "indices": [ 69, 78 ], "text": "teaparty" }, { "indices": [ 79, 83 ], "text": "gop" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/MiamiLib/status/501062167303450626/photo/1", "display_url": "pic.twitter.com/nUYeZhx8km", "url": "http://t.co/nUYeZhx8km", "media_url_https": "https://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg", "id_str": "501062167051767811", "sizes": { "small": { "h": 342, "resize": "fit", "w": 340 }, "large": { "h": 1000, "resize": "fit", "w": 994 }, "medium": { "h": 604, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 84, 106 ], "type": "photo", "id": 501062167051767811, "media_url": "http://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 134, "id_str": "501062167303450626", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 898533348, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/531985095595266049/NU2hfGf9_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/ei2DEb71jh", "indices": [ 0, 23 ], "expanded_url": "http://www.facebook.com/LiberalsInAmerica", "display_url": "facebook.com/LiberalsInAmer…" } ] }, "description": { "urls": [] } }, "followers_count": 32881, "profile_sidebar_border_color": "C0DEED", "id_str": "898533348", "profile_background_color": "C0DEED", "listed_count": 437, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 53435, "description": "", "friends_count": 31030, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/531985095595266049/NU2hfGf9_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/898533348/1450669548", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "LibsInAmerica", "lang": "en", "profile_background_tile": false, "favourites_count": 1610, "name": "LiA", "notifications": false, "url": "https://t.co/ei2DEb71jh", "created_at": "Mon Oct 22 22:13:25 +0000 2012", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:45:04 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/MiamiLib/status/501062167303450626/photo/1", "display_url": "pic.twitter.com/nUYeZhx8km", "url": "http://t.co/nUYeZhx8km", "media_url_https": "https://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg", "id_str": "501062167051767811", "sizes": { "small": { "h": 342, "resize": "fit", "w": 340 }, "large": { "h": 1000, "resize": "fit", "w": 994 }, "medium": { "h": 604, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 84, 106 ], "type": "photo", "id": 501062167051767811, "media_url": "http://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 21811025, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/29594920/AlborzPerseid2009_tafreshi.jpg", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2836379157/570287ecfa2908af0a9aee714a358d6d_normal.jpeg", "profile_sidebar_fill_color": "7AC3EE", "entities": { "description": { "urls": [] } }, "followers_count": 1705, "profile_sidebar_border_color": "65B0DA", "id_str": "21811025", "profile_background_color": "642D8B", "listed_count": 51, "is_translation_enabled": false, "utc_offset": -9000, "statuses_count": 33408, "description": "Peace cannot be kept by force. It can only be achieved through understanding. - A Einstein Wife, Mother & Grandma. Love my pups! #progressive #uniteblue", "friends_count": 1573, "location": "", "profile_link_color": "428548", "profile_image_url": "http://pbs.twimg.com/profile_images/2836379157/570287ecfa2908af0a9aee714a358d6d_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21811025/1366597602", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/29594920/AlborzPerseid2009_tafreshi.jpg", "screen_name": "mmaureen7", "lang": "en", "profile_background_tile": false, "favourites_count": 1352, "name": "Maureen", "notifications": false, "url": null, "created_at": "Tue Feb 24 23:17:29 +0000 2009", "contributors_enabled": false, "time_zone": "Newfoundland", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 898533348, "source_status_id_str": "501062167303450626", "expanded_url": "http://twitter.com/MiamiLib/status/501062167303450626/photo/1", "display_url": "pic.twitter.com/nUYeZhx8km", "url": "http://t.co/nUYeZhx8km", "media_url_https": "https://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg", "source_user_id_str": "898533348", "source_status_id": 501062167303450626, "id_str": "501062167051767811", "sizes": { "small": { "h": 342, "resize": "fit", "w": 340 }, "large": { "h": 1000, "resize": "fit", "w": 994 }, "medium": { "h": 604, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 98, 120 ], "type": "photo", "id": 501062167051767811, "media_url": "http://pbs.twimg.com/media/BvQhYt2CEAMGBUm.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "“@ImNotTwitFamous: Tumblr makes some good point about #Ferguson http://t.co/ch7N9d53Fz”", "is_quote_status": false, "in_reply_to_status_id": 499992352505610240, "id": 501064198059597824, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 3385611074, "indices": [ 1, 17 ], "id_str": "3385611074", "screen_name": "ImNotTwitFamous", "name": "Josh" } ], "hashtags": [ { "indices": [ 54, 63 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/ch7N9d53Fz", "indices": [ 64, 86 ], "expanded_url": "http://twitter.com/ImNotTwitFamous/status/499992352505610240/photo/1", "display_url": "pic.twitter.com/ch7N9d53Fz" } ] }, "in_reply_to_screen_name": "resolve", "in_reply_to_user_id": 471487008, "retweet_count": 0, "id_str": "501064198059597824", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 2441030754, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/724345575081017344/v__k3JOl_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 433, "profile_sidebar_border_color": "C0DEED", "id_str": "2441030754", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 7374, "description": "Rip Granny❤. Hooping.", "friends_count": 322, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/724345575081017344/v__k3JOl_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2441030754/1463807158", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "KendallSupreme_", "lang": "en", "profile_background_tile": false, "favourites_count": 4454, "name": "Silky", "notifications": false, "url": null, "created_at": "Sun Apr 13 04:41:34 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "471487008", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": "499992352505610240", "place": null }, { "contributors": null, "truncated": false, "text": "RT @trymainelee: I had a great talk w/ Brooke Gladstone about Ferguson and the need for diversity in America's newsrooms. http://t.co/uEOYk…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064198513000450, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 93963456, "indices": [ 3, 15 ], "id_str": "93963456", "screen_name": "trymainelee", "name": "Trymaine Lee" }, { "id": 573764891, "indices": [ 139, 140 ], "id_str": "573764891", "screen_name": "OTMBrooke", "name": "Brooke Gladstone" } ], "hashtags": [], "urls": [ { "url": "http://t.co/uEOYkRAyBp", "indices": [ 122, 140 ], "expanded_url": "http://bit.ly/1nZe7hs", "display_url": "bit.ly/1nZe7hs" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501064198513000450", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "I had a great talk w/ Brooke Gladstone about Ferguson and the need for diversity in America's newsrooms. http://t.co/uEOYkRAyBp @OTMBrooke", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501027623863345152, "favorite_count": 10, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 573764891, "indices": [ 128, 138 ], "id_str": "573764891", "screen_name": "OTMBrooke", "name": "Brooke Gladstone" } ], "hashtags": [], "urls": [ { "url": "http://t.co/uEOYkRAyBp", "indices": [ 105, 127 ], "expanded_url": "http://bit.ly/1nZe7hs", "display_url": "bit.ly/1nZe7hs" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501027623863345152", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 93963456, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/650044276550815744/yPvVZW4n_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 32798, "profile_sidebar_border_color": "C0DEED", "id_str": "93963456", "profile_background_color": "C0DEED", "listed_count": 1260, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 6373, "description": "Journalist. Storyteller. Pulitzer Prize Winner. National Reporter @msnbc * 2016 New America Fellow * Proud Milton Hershey School alum trymaine.lee@nbcuni.com", "friends_count": 2019, "location": "New York, NY", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/650044276550815744/yPvVZW4n_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/93963456/1453542376", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "trymainelee", "lang": "en", "profile_background_tile": false, "favourites_count": 554, "name": "Trymaine Lee", "notifications": false, "url": null, "created_at": "Tue Dec 01 22:53:35 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 15:27:48 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 7243782, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/713919340668649472/20O8Z9Rl_normal.jpg", "profile_sidebar_fill_color": "E0FF92", "entities": { "description": { "urls": [] } }, "followers_count": 362, "profile_sidebar_border_color": "87BC44", "id_str": "7243782", "profile_background_color": "9AE4E8", "listed_count": 87, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 80075, "description": "I fit relevant descriptions of people I never heard of. / My clothing, suspicious; my movements, furtive.", "friends_count": 130, "location": "New York", "profile_link_color": "0000FF", "profile_image_url": "http://pbs.twimg.com/profile_images/713919340668649472/20O8Z9Rl_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/7243782/1459790748", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "carminemac", "lang": "en", "profile_background_tile": false, "favourites_count": 5722, "name": "Carmine", "notifications": false, "url": null, "created_at": "Wed Jul 04 05:49:59 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:08 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Police Deploy Tear Gas to Impose Ferguson Curfew http://t.co/du7lIdWvf2", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064198973960192, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/du7lIdWvf2", "indices": [ 49, 71 ], "expanded_url": "http://wp.me/p4Rl2x-4NB", "display_url": "wp.me/p4Rl2x-4NB" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064198973960192", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "Олег Славин", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Think about this from @ShaunKing -\"Resisting ASSAULT and resisting arrest are NOT the same thing.\" #Ferguson #PoliceBrutality", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064199142117378, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 755113, "indices": [ 22, 32 ], "id_str": "755113", "screen_name": "ShaunKing", "name": "Shaun King" } ], "hashtags": [ { "indices": [ 100, 109 ], "text": "Ferguson" }, { "indices": [ 110, 126 ], "text": "PoliceBrutality" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064199142117378", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": true, "id": 946497368, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 11, "profile_sidebar_border_color": "C0DEED", "id_str": "946497368", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 928, "description": "Indigenous. Human. Curious. Me.", "friends_count": 175, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Free2Pursue", "lang": "en", "profile_background_tile": false, "favourites_count": 265, "name": "AmericanWoman", "notifications": false, "url": null, "created_at": "Tue Nov 13 20:52:05 +0000 2012", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @chrisalexander_: I see Sharpton letting his inner rat bastard shine bright like a diamond. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064200035516416, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 20864257, "indices": [ 3, 19 ], "id_str": "20864257", "screen_name": "chrisalexander_", "name": "Alexander Hardy" } ], "hashtags": [ { "indices": [ 95, 104 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 17, "id_str": "501064200035516416", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "I see Sharpton letting his inner rat bastard shine bright like a diamond. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062362120876032, "favorite_count": 11, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 74, 83 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 17, "id_str": "501062362120876032", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 20864257, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/543712556/pana.jpg", "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/711408901464395776/6hol57AC_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": { "url": { "urls": [ { "url": "https://t.co/4eSuQVoJk8", "indices": [ 0, 23 ], "expanded_url": "http://www.thecoloredboy.com", "display_url": "thecoloredboy.com" } ] }, "description": { "urls": [] } }, "followers_count": 5300, "profile_sidebar_border_color": "181A1E", "id_str": "20864257", "profile_background_color": "1A1B1F", "listed_count": 142, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 96578, "description": "The Colored Boy. @abernathy @ebonymag @verysmartbros @Gawker @CNN @huffpogay @saintheron etc. i can fulfill your literary desires: alex@thecoloredboy.com", "friends_count": 1619, "location": "NYC", "profile_link_color": "1D60B3", "profile_image_url": "http://pbs.twimg.com/profile_images/711408901464395776/6hol57AC_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20864257/1427309539", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/543712556/pana.jpg", "screen_name": "chrisalexander_", "lang": "en", "profile_background_tile": false, "favourites_count": 9152, "name": "Alexander Hardy", "notifications": false, "url": "https://t.co/4eSuQVoJk8", "created_at": "Sat Feb 14 18:59:44 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:45:51 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2481812382, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/502101956240752640/qauzRZ6p_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 42, "profile_sidebar_border_color": "C0DEED", "id_str": "2481812382", "profile_background_color": "C0DEED", "listed_count": 1, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 2088, "description": "Disposible work pajamas. Recently informed that my biracial children will cause white genocide. #vajayjaypowersactivate❤️#garbagegang garbage tweets abound", "friends_count": 183, "location": "summer polar vortex", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/502101956240752640/qauzRZ6p_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2481812382/1405584896", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SadieODoyle", "lang": "en", "profile_background_tile": false, "favourites_count": 1672, "name": "Póg mo thóin", "notifications": false, "url": null, "created_at": "Wed May 07 10:16:01 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Please don't blame POTUS for Ferguson. He is not just a Black President, he is THE President and will address the problem as he sees fit.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064200186118145, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064200186118145", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 197018623, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/563117849036587008/C1fC0e7A_normal.jpeg", "profile_sidebar_fill_color": "F6F6F6", "entities": { "description": { "urls": [] } }, "followers_count": 466, "profile_sidebar_border_color": "EEEEEE", "id_str": "197018623", "profile_background_color": "ACDED6", "listed_count": 14, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 8411, "description": "Retired. My right to swing my arm stops where your nose begins", "friends_count": 962, "location": "Liberal progessive in Austin, ", "profile_link_color": "038543", "profile_image_url": "http://pbs.twimg.com/profile_images/563117849036587008/C1fC0e7A_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/197018623/1353172300", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "screen_name": "Ssragona", "lang": "en", "profile_background_tile": false, "favourites_count": 265, "name": "Saundra Ragona", "notifications": false, "url": null, "created_at": "Thu Sep 30 13:23:11 +0000 2010", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "US Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far: FERGUSON, Mo.—After an unarmed black... http://t.co/oY9mpYGJD9", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064200316125184, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/oY9mpYGJD9", "indices": [ 116, 138 ], "expanded_url": "http://dlvr.it/6dqmyt", "display_url": "dlvr.it/6dqmyt" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064200316125184", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1112479376, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3150033623/19a52eec6b3741236b61f78475ead526_normal.jpeg", "profile_sidebar_fill_color": "F6FFD1", "entities": { "url": { "urls": [ { "url": "http://t.co/g6mxH71DCq", "indices": [ 0, 22 ], "expanded_url": "http://www.epochtimes.de/", "display_url": "epochtimes.de" } ] }, "description": { "urls": [] } }, "followers_count": 595, "profile_sidebar_border_color": "FFF8AD", "id_str": "1112479376", "profile_background_color": "FFF04D", "listed_count": 123, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 346209, "description": "Menschlichkeit opfern für das Freihandelsabkommen - was für ein Vorbild!", "friends_count": 923, "location": "", "profile_link_color": "0099CC", "profile_image_url": "http://pbs.twimg.com/profile_images/3150033623/19a52eec6b3741236b61f78475ead526_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1112479376/1400089405", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif", "screen_name": "Schweizer_Kotau", "lang": "de", "profile_background_tile": false, "favourites_count": 99, "name": "Freihandelsabkommen", "notifications": false, "url": "http://t.co/g6mxH71DCq", "created_at": "Tue Jan 22 19:53:02 +0000 2013", "contributors_enabled": false, "time_zone": "Amsterdam", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @zellieimani: The STL PD has been releasing a constant stream of lies and misinformation. And it's not on accident. It's very deliberat…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064201041743872, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 325076723, "indices": [ 3, 15 ], "id_str": "325076723", "screen_name": "zellieimani", "name": "zellie" } ], "hashtags": [ { "indices": [ 139, 140 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 174, "id_str": "501064201041743872", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "The STL PD has been releasing a constant stream of lies and misinformation. And it's not on accident. It's very deliberate. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501061201141309440, "favorite_count": 93, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 125, 134 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 174, "id_str": "501061201141309440", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 325076723, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000179362439/90f034432122f61df63e471932fdfc62_normal.jpeg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "http://t.co/eC6kAS7KzW", "indices": [ 0, 22 ], "expanded_url": "http://www.black-culture.com", "display_url": "black-culture.com" } ] }, "description": { "urls": [] } }, "followers_count": 69197, "profile_sidebar_border_color": "EEEEEE", "id_str": "325076723", "profile_background_color": "131516", "listed_count": 1066, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 131222, "description": "All Black Everything. Teacher. Blogger. Activist. Brother. Son. Contact: zellie.imani@gmail.com", "friends_count": 2831, "location": "NJ", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000179362439/90f034432122f61df63e471932fdfc62_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/325076723/1387896720", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "zellieimani", "lang": "en", "profile_background_tile": true, "favourites_count": 5862, "name": "zellie", "notifications": false, "url": "http://t.co/eC6kAS7KzW", "created_at": "Mon Jun 27 18:06:47 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:41:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 389073720, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/699905597/27410dfcf5eeb98fb89ced70c2b83a5a.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731898769390768128/4waCITt6_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/XdcCElyPLj", "indices": [ 0, 23 ], "expanded_url": "http://mindingmine.com", "display_url": "mindingmine.com" } ] }, "description": { "urls": [] } }, "followers_count": 1222, "profile_sidebar_border_color": "FFFFFF", "id_str": "389073720", "profile_background_color": "131516", "listed_count": 11, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 62779, "description": "yeah it's pronounced like regular Taylor", "friends_count": 875, "location": "detroit ", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/731898769390768128/4waCITt6_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/389073720/1462211909", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/699905597/27410dfcf5eeb98fb89ced70c2b83a5a.jpeg", "screen_name": "telormac", "lang": "en", "profile_background_tile": true, "favourites_count": 22645, "name": "tè mama", "notifications": false, "url": "https://t.co/XdcCElyPLj", "created_at": "Tue Oct 11 20:22:36 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @locoernesto: I have yet to hear anything about #Ferguson from Miley or Bieber. Katy? Iggy? Everyone wants to be black until it's time t…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064201251880961, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 217663500, "indices": [ 3, 15 ], "id_str": "217663500", "screen_name": "locoernesto", "name": "Black Bill Gates" } ], "hashtags": [ { "indices": [ 51, 60 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5630, "id_str": "501064201251880961", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "I have yet to hear anything about #Ferguson from Miley or Bieber. Katy? Iggy? Everyone wants to be black until it's time to be black.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 499823642881302528, "favorite_count": 4859, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 34, 43 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5630, "id_str": "499823642881302528", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 217663500, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/666745622/44962d638b662e5a9d32419411c33721.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734270566983696384/UkvLLFyX_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "description": { "urls": [] } }, "followers_count": 878, "profile_sidebar_border_color": "FFFFFF", "id_str": "217663500", "profile_background_color": "131516", "listed_count": 3, "is_translation_enabled": false, "utc_offset": -36000, "statuses_count": 8684, "description": "have you stayed in your lane today?", "friends_count": 529, "location": "Instagram | @locoernesto", "profile_link_color": "161717", "profile_image_url": "http://pbs.twimg.com/profile_images/734270566983696384/UkvLLFyX_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/217663500/1463898751", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/666745622/44962d638b662e5a9d32419411c33721.jpeg", "screen_name": "locoernesto", "lang": "en", "profile_background_tile": true, "favourites_count": 12735, "name": "Black Bill Gates", "notifications": false, "url": null, "created_at": "Sat Nov 20 04:24:50 +0000 2010", "contributors_enabled": false, "time_zone": "Hawaii", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Aug 14 07:43:37 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 2188452301, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/535439809599131648/i2lacaDB.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/716708626530832386/W2dYJvl7_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 3803, "profile_sidebar_border_color": "000000", "id_str": "2188452301", "profile_background_color": "1A1B1F", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 69376, "description": "Snapchat: ayoo_micky", "friends_count": 1952, "location": "765", "profile_link_color": "1A1B1F", "profile_image_url": "http://pbs.twimg.com/profile_images/716708626530832386/W2dYJvl7_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2188452301/1463290682", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/535439809599131648/i2lacaDB.jpeg", "screen_name": "mickysowavy", "lang": "en", "profile_background_tile": false, "favourites_count": 23712, "name": "❤", "notifications": false, "url": null, "created_at": "Mon Nov 11 14:10:42 +0000 2013", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @YourAnonNews: #Ferguson pigs are out of control, using curfew as an excuse to pull people from parked vehicles and brutalize them http:…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064201256071168, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 279390084, "indices": [ 3, 16 ], "id_str": "279390084", "screen_name": "YourAnonNews", "name": "Anonymous" } ], "hashtags": [ { "indices": [ 18, 27 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/vNKRseUwuS", "indices": [ 139, 140 ], "expanded_url": "http://bit.ly/1pCu6Hy", "display_url": "bit.ly/1pCu6Hy" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 322, "id_str": "501064201256071168", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "#Ferguson pigs are out of control, using curfew as an excuse to pull people from parked vehicles and brutalize them http://t.co/vNKRseUwuS", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501051790696398853, "favorite_count": 178, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 0, 9 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/vNKRseUwuS", "indices": [ 116, 138 ], "expanded_url": "http://bit.ly/1pCu6Hy", "display_url": "bit.ly/1pCu6Hy" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 322, "id_str": "501051790696398853", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 279390084, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/468932380565057536/fs_8C5q-.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/715985177395261441/ad0f_tAp_normal.jpg", "profile_sidebar_fill_color": "FFFFFF", "entities": { "description": { "urls": [] } }, "followers_count": 1618169, "profile_sidebar_border_color": "FFFFFF", "id_str": "279390084", "profile_background_color": "000000", "listed_count": 16528, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 145114, "description": "Signal boost for Anonymous operations, resistance movements, & journalism. #Teridax2032", "friends_count": 1105, "location": "Right behind you.", "profile_link_color": "000000", "profile_image_url": "http://pbs.twimg.com/profile_images/715985177395261441/ad0f_tAp_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/279390084/1459539143", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/468932380565057536/fs_8C5q-.jpeg", "screen_name": "YourAnonNews", "lang": "en", "profile_background_tile": false, "favourites_count": 4036, "name": "Anonymous", "notifications": false, "url": null, "created_at": "Sat Apr 09 05:10:37 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:03:50 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 558774130, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/581887640/iouc02jy4zmdx75jkm1j.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522516695026388992/stTTaSBa_normal.jpeg", "profile_sidebar_fill_color": "C0DFEC", "entities": { "description": { "urls": [] } }, "followers_count": 202, "profile_sidebar_border_color": "A8C7F7", "id_str": "558774130", "profile_background_color": "0827F5", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 4053, "description": "A Foreign Breed,\nWith A Celibate Attitude : Artist/Singer/Songwriter \nStay Tuned... #TrillOnly", "friends_count": 296, "location": "Enigmatic Cloud 9", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/522516695026388992/stTTaSBa_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/558774130/1368153559", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/581887640/iouc02jy4zmdx75jkm1j.jpeg", "screen_name": "Katyria90", "lang": "en", "profile_background_tile": false, "favourites_count": 590, "name": "Katyria", "notifications": false, "url": null, "created_at": "Fri Apr 20 16:37:24 +0000 2012", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @Clarknt67: #MikeBrown law @wethepeople petition asking police to carry cameras surpassed 100K signatures yesterday #Ferguson https://t.…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064201503113216, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 97273575, "indices": [ 3, 13 ], "id_str": "97273575", "screen_name": "Clarknt67", "name": "Scott Wooledge" }, { "id": 369507958, "indices": [ 30, 42 ], "id_str": "369507958", "screen_name": "wethepeople", "name": "We the People" } ], "hashtags": [ { "indices": [ 15, 25 ], "text": "MikeBrown" }, { "indices": [ 119, 128 ], "text": "Ferguson" } ], "urls": [ { "url": "https://t.co/jY5T7JXA8W", "indices": [ 139, 140 ], "expanded_url": "https://petitions.whitehouse.gov/petition/mike-brown-law-requires-all-state-county-and-local-police-wear-camera/8tlS5czf", "display_url": "petitions.whitehouse.gov/petition/mike-…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 18, "id_str": "501064201503113216", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "#MikeBrown law @wethepeople petition asking police to carry cameras surpassed 100K signatures yesterday #Ferguson https://t.co/jY5T7JXA8W", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501043603180113920, "favorite_count": 7, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 369507958, "indices": [ 15, 27 ], "id_str": "369507958", "screen_name": "wethepeople", "name": "We the People" } ], "hashtags": [ { "indices": [ 0, 10 ], "text": "MikeBrown" }, { "indices": [ 104, 113 ], "text": "Ferguson" } ], "urls": [ { "url": "https://t.co/jY5T7JXA8W", "indices": [ 114, 137 ], "expanded_url": "https://petitions.whitehouse.gov/petition/mike-brown-law-requires-all-state-county-and-local-police-wear-camera/8tlS5czf", "display_url": "petitions.whitehouse.gov/petition/mike-…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 18, "id_str": "501043603180113920", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 97273575, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/443957429588348928/Yl1L35Ma.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731976346784677888/7MrAXxUL_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/N2qVyM9dpt", "indices": [ 0, 23 ], "expanded_url": "http://memeographs.com", "display_url": "memeographs.com" } ] }, "description": { "urls": [] } }, "followers_count": 8898, "profile_sidebar_border_color": "FFFFFF", "id_str": "97273575", "profile_background_color": "709397", "listed_count": 444, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 135089, "description": "The mind behind @memeographs. Topics: politics, TV, LGBT & human rights, liberal. I'm @CorvieTheBully's human assistant. Blocked by @joenbc & @RyanTAnd!", "friends_count": 4137, "location": "Brooklyn, Baby!", "profile_link_color": "FF3300", "profile_image_url": "http://pbs.twimg.com/profile_images/731976346784677888/7MrAXxUL_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/97273575/1446418293", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/443957429588348928/Yl1L35Ma.jpeg", "screen_name": "Clarknt67", "lang": "en", "profile_background_tile": false, "favourites_count": 66085, "name": "Scott Wooledge", "notifications": false, "url": "https://t.co/N2qVyM9dpt", "created_at": "Wed Dec 16 19:34:22 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 16:31:18 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2477475030, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/730567181109473280/iXMEEhEd_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/L74gbiskXB", "indices": [ 0, 22 ], "expanded_url": "http://www.citizenmodern.org", "display_url": "citizenmodern.org" } ] }, "description": { "urls": [] } }, "followers_count": 151, "profile_sidebar_border_color": "C0DEED", "id_str": "2477475030", "profile_background_color": "C0DEED", "listed_count": 7, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 2460, "description": "Entrepreneur, herbalist, futurist, anarcho-communist, vegan, activist.", "friends_count": 675, "location": "Little Rock, AR", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/730567181109473280/iXMEEhEd_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2477475030/1399429082", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "bennharr", "lang": "en", "profile_background_tile": false, "favourites_count": 1898, "name": "Ben Harrison", "notifications": false, "url": "http://t.co/L74gbiskXB", "created_at": "Sun May 04 22:31:56 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @MCHammer: Father the people are weary, I ask that you send healing,comfort and a renewing of the Spirit and allow them to rest tonight.…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064202295848960, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 6273552, "indices": [ 3, 12 ], "id_str": "6273552", "screen_name": "MCHammer", "name": "MC HAMMER" } ], "hashtags": [ { "indices": [ 139, 140 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 114, "id_str": "501064202295848960", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Father the people are weary, I ask that you send healing,comfort and a renewing of the Spirit and allow them to rest tonight.🙏 #Ferguson", "is_quote_status": false, "in_reply_to_status_id": 500869440347467776, "id": 500871035416109056, "favorite_count": 127, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 127, 136 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": "MCHammer", "in_reply_to_user_id": 6273552, "retweet_count": 114, "id_str": "500871035416109056", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 6273552, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/733398284442566657/bO2715cR_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/5wB2jdo6MX", "indices": [ 0, 23 ], "expanded_url": "http://www.alchemistmgmt.com", "display_url": "alchemistmgmt.com" } ] }, "description": { "urls": [] } }, "followers_count": 3624239, "profile_sidebar_border_color": "EEEEEE", "id_str": "6273552", "profile_background_color": "131516", "listed_count": 14733, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 60412, "description": "OAKLANDFIGHTCLUB IIIXX OPUS #WeGottaDoBetter #DontGo #BlackRose #StillWater #LoveIsLove #DubNation #RaiderNation #A's #MakeitWhip #BeMe #StreetsIsReady #Kurious", "friends_count": 68966, "location": "Bay Area #GoldenState ", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/733398284442566657/bO2715cR_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6273552/1456376063", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "MCHammer", "lang": "en", "profile_background_tile": true, "favourites_count": 28816, "name": "MC HAMMER", "notifications": false, "url": "https://t.co/5wB2jdo6MX", "created_at": "Wed May 23 22:50:33 +0000 2007", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "6273552", "lang": "en", "created_at": "Sun Aug 17 05:05:35 +0000 2014", "in_reply_to_status_id_str": "500869440347467776", "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 81674839, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/513826592020115456/Tml8bWAh_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 41, "profile_sidebar_border_color": "C0DEED", "id_str": "81674839", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 1284, "description": "", "friends_count": 284, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/513826592020115456/Tml8bWAh_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Blackberryccr", "lang": "en", "profile_background_tile": false, "favourites_count": 1221, "name": "Mrs. Big Dogg", "notifications": false, "url": null, "created_at": "Sun Oct 11 20:11:48 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @YourAnonGlobal: Darren Wilson is somewhere enjoying his liberty, while the community is under curfew and Mike Brown vilified. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064202380115971, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1381926373, "indices": [ 3, 18 ], "id_str": "1381926373", "screen_name": "YourAnonGlobal", "name": "Anonymous" } ], "hashtags": [ { "indices": [ 130, 139 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 190, "id_str": "501064202380115971", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Darren Wilson is somewhere enjoying his liberty, while the community is under curfew and Mike Brown vilified. #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501036443028819969, "favorite_count": 97, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 110, 119 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 190, "id_str": "501036443028819969", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1381926373, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/523889799711563777/7ksdSuLA.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/675024492301787143/Arw7TdJE_normal.png", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/n5iRP3jDxE", "indices": [ 0, 23 ], "expanded_url": "http://anonymousglobal-news.blogspot.com", "display_url": "anonymousglobal-news.blogspot.com" } ] }, "description": { "urls": [] } }, "followers_count": 123756, "profile_sidebar_border_color": "FFFFFF", "id_str": "1381926373", "profile_background_color": "131516", "listed_count": 929, "is_translation_enabled": false, "utc_offset": 32400, "statuses_count": 46596, "description": "Reporting on Anonymous & worldwide operations, news, IT, occupy movements, and freedom of speech from around the world. Back-up: @YourAnonGlobal2. SLY Team.", "friends_count": 1160, "location": "The Internet", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/675024492301787143/Arw7TdJE_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1381926373/1461260773", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/523889799711563777/7ksdSuLA.jpeg", "screen_name": "YourAnonGlobal", "lang": "ko", "profile_background_tile": true, "favourites_count": 4298, "name": "Anonymous", "notifications": false, "url": "https://t.co/n5iRP3jDxE", "created_at": "Fri Apr 26 13:27:49 +0000 2013", "contributors_enabled": false, "time_zone": "Seoul", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 16:02:51 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 15968617, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459773689115181057/yrnbu-n3_normal.jpeg", "profile_sidebar_fill_color": "F6F6F6", "entities": { "description": { "urls": [] } }, "followers_count": 6091, "profile_sidebar_border_color": "EEEEEE", "id_str": "15968617", "profile_background_color": "ACDED6", "listed_count": 329, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 230775, "description": "planetary activist Twitter Freedom Fighter one heart, one mind, one world. Human rights global. in memory of Mo Nabbous, Mandiba, & Grandfather Commanda", "friends_count": 5301, "location": "", "profile_link_color": "041585", "profile_image_url": "http://pbs.twimg.com/profile_images/459773689115181057/yrnbu-n3_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15968617/1398453656", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "screen_name": "bebird", "lang": "en", "profile_background_tile": false, "favourites_count": 44618, "name": "bebird", "notifications": false, "url": null, "created_at": "Sun Aug 24 13:12:49 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Ferguson Erupts Again as Protests Turn to Violence http://t.co/HyayJJTZK8", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064202794971136, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/HyayJJTZK8", "indices": [ 51, 73 ], "expanded_url": "http://wp.me/p4Rl2x-4NE", "display_url": "wp.me/p4Rl2x-4NE" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064202794971136", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "Олег Славин", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @thehill: Rep. John Lewis: Ferguson 'looked like it was in Baghdad' http://t.co/YFYA1N8spU by @PeterSullivan4", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064202904403970, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1917731, "indices": [ 3, 11 ], "id_str": "1917731", "screen_name": "thehill", "name": "The Hill" }, { "id": 369534928, "indices": [ 97, 112 ], "id_str": "369534928", "screen_name": "PeterSullivan4", "name": "Peter Sullivan" } ], "hashtags": [], "urls": [ { "url": "http://t.co/YFYA1N8spU", "indices": [ 71, 93 ], "expanded_url": "http://ow.ly/ApAEH", "display_url": "ow.ly/ApAEH" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 46, "id_str": "501064202904403970", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Rep. John Lewis: Ferguson 'looked like it was in Baghdad' http://t.co/YFYA1N8spU by @PeterSullivan4", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501038267715051521, "favorite_count": 9, "source": "Hootsuite", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 369534928, "indices": [ 84, 99 ], "id_str": "369534928", "screen_name": "PeterSullivan4", "name": "Peter Sullivan" } ], "hashtags": [], "urls": [ { "url": "http://t.co/YFYA1N8spU", "indices": [ 58, 80 ], "expanded_url": "http://ow.ly/ApAEH", "display_url": "ow.ly/ApAEH" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 46, "id_str": "501038267715051521", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1917731, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "profile_sidebar_fill_color": "EBEBEB", "entities": { "url": { "urls": [ { "url": "http://t.co/t414UtTRv4", "indices": [ 0, 22 ], "expanded_url": "http://www.thehill.com", "display_url": "thehill.com" } ] }, "description": { "urls": [] } }, "followers_count": 747989, "profile_sidebar_border_color": "ADADAA", "id_str": "1917731", "profile_background_color": "9AE4E8", "listed_count": 16660, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 190708, "description": "The Hill is the premier source for policy and political news. Follow for tweets on what's happening in Washington, breaking news and retweets of our reporters.", "friends_count": 489, "location": "Washington, DC", "profile_link_color": "FF0021", "profile_image_url": "http://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1917731/1434034905", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "screen_name": "thehill", "lang": "en", "profile_background_tile": true, "favourites_count": 26, "name": "The Hill", "notifications": false, "url": "http://t.co/t414UtTRv4", "created_at": "Thu Mar 22 18:15:18 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 16:10:06 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 356854246, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/326168892/Untitled-1.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1508349029/twitter_drmoore_normal.jpg", "profile_sidebar_fill_color": "FFFFFF", "entities": { "url": { "urls": [ { "url": "https://t.co/wEFhj9v0rp", "indices": [ 0, 23 ], "expanded_url": "https://u.osu.edu/moore.1408/", "display_url": "u.osu.edu/moore.1408/" } ] }, "description": { "urls": [] } }, "followers_count": 4888, "profile_sidebar_border_color": "FFFFFF", "id_str": "356854246", "profile_background_color": "A8A8A8", "listed_count": 278, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 60562, "description": "EHE Distinguished Professor and Executive Director, Todd Anthony Bell National Resource Center on the African American Male, The Ohio State University", "friends_count": 2314, "location": "Columbus, Ohio", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/1508349029/twitter_drmoore_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/356854246/1398356470", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/326168892/Untitled-1.jpg", "screen_name": "DrJLMooreIII", "lang": "en", "profile_background_tile": false, "favourites_count": 32385, "name": "James L. Moore III", "notifications": false, "url": "https://t.co/wEFhj9v0rp", "created_at": "Wed Aug 17 13:38:08 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "@queerdorable THANK YOU !!!! \n#Ferguson\n #StandWithFerguson\n #HandsUpDontShoot\n #JusticeForMikeBrown", "is_quote_status": false, "in_reply_to_status_id": 501063920187346945, "id": 501064203135102977, "favorite_count": 1, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 2984310527, "indices": [ 0, 13 ], "id_str": "2984310527", "screen_name": "queerdorable", "name": "saved" } ], "hashtags": [ { "indices": [ 30, 39 ], "text": "Ferguson" }, { "indices": [ 41, 59 ], "text": "StandWithFerguson" }, { "indices": [ 61, 78 ], "text": "HandsUpDontShoot" }, { "indices": [ 80, 100 ], "text": "JusticeForMikeBrown" } ], "urls": [] }, "in_reply_to_screen_name": "aestheticsless", "in_reply_to_user_id": 198641855, "retweet_count": 0, "id_str": "501064203135102977", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 17719592, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/758191631/184bc7d83fac0b1a92cd266fd87c1520.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/723387140281749509/jNLzq5hm_normal.jpg", "profile_sidebar_fill_color": "FFFFFF", "entities": { "url": { "urls": [ { "url": "http://t.co/tDKkfDnW2o", "indices": [ 0, 22 ], "expanded_url": "http://favstar.fm/users/kavn", "display_url": "favstar.fm/users/kavn" } ] }, "description": { "urls": [] } }, "followers_count": 4453, "profile_sidebar_border_color": "FFFFFF", "id_str": "17719592", "profile_background_color": "131516", "listed_count": 447, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 168011, "description": "Just me.", "friends_count": 4174, "location": "", "profile_link_color": "F0163A", "profile_image_url": "http://pbs.twimg.com/profile_images/723387140281749509/jNLzq5hm_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17719592/1458290036", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/758191631/184bc7d83fac0b1a92cd266fd87c1520.jpeg", "screen_name": "kavn", "lang": "en", "profile_background_tile": false, "favourites_count": 29417, "name": "kavn", "notifications": false, "url": "http://t.co/tDKkfDnW2o", "created_at": "Fri Nov 28 21:05:34 +0000 2008", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "198641855", "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": "501063920187346945", "place": null }, { "contributors": null, "truncated": false, "text": "RT @3ChicsPolitico: I don't apologize for my blackness... Y'all got that? #FergusonShooting #Ferguson. http://t.co/FzVA1M9GRN", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064203508412416, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 237606548, "indices": [ 3, 18 ], "id_str": "237606548", "screen_name": "3ChicsPolitico", "name": "3ChicsPolitico" } ], "hashtags": [ { "indices": [ 74, 91 ], "text": "FergusonShooting" }, { "indices": [ 92, 101 ], "text": "Ferguson" } ], "urls": [], "media": [ { "source_user_id": 237606548, "source_status_id_str": "500295570393542657", "expanded_url": "http://twitter.com/3ChicsPolitico/status/500295570393542657/photo/1", "display_url": "pic.twitter.com/FzVA1M9GRN", "url": "http://t.co/FzVA1M9GRN", "media_url_https": "https://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg", "source_user_id_str": "237606548", "source_status_id": 500295570393542657, "id_str": "500295567960838145", "sizes": { "large": { "h": 500, "resize": "fit", "w": 500 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 500, "resize": "fit", "w": 500 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 103, 125 ], "type": "photo", "id": 500295567960838145, "media_url": "http://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 617, "id_str": "501064203508412416", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "I don't apologize for my blackness... Y'all got that? #FergusonShooting #Ferguson. http://t.co/FzVA1M9GRN", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500295570393542657, "favorite_count": 443, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 54, 71 ], "text": "FergusonShooting" }, { "indices": [ 72, 81 ], "text": "Ferguson" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/3ChicsPolitico/status/500295570393542657/photo/1", "display_url": "pic.twitter.com/FzVA1M9GRN", "url": "http://t.co/FzVA1M9GRN", "media_url_https": "https://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg", "id_str": "500295567960838145", "sizes": { "large": { "h": 500, "resize": "fit", "w": 500 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 500, "resize": "fit", "w": 500 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 83, 105 ], "type": "photo", "id": 500295567960838145, "media_url": "http://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 617, "id_str": "500295570393542657", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 237606548, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000176927017/5UWWDyTH.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731710638355976193/zdcQQemN_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/MhJwa9lnC1", "indices": [ 0, 22 ], "expanded_url": "http://www.3chicspolitico.com", "display_url": "3chicspolitico.com" } ] }, "description": { "urls": [ { "url": "http://t.co/SL7BhuMyvB", "indices": [ 51, 73 ], "expanded_url": "http://3ChicsPolitico.com", "display_url": "3ChicsPolitico.com" } ] } }, "followers_count": 5782, "profile_sidebar_border_color": "FFFFFF", "id_str": "237606548", "profile_background_color": "C0DEED", "listed_count": 265, "is_translation_enabled": false, "utc_offset": -36000, "statuses_count": 193931, "description": "Ametia, Rikyrah & SouthernGirl2 invite you to join http://t.co/SL7BhuMyvB on grand adventures in the world of politics, culture, humor, music, & the spiritual", "friends_count": 1089, "location": "Best Place In America!", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/731710638355976193/zdcQQemN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/237606548/1401422776", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000176927017/5UWWDyTH.jpeg", "screen_name": "3ChicsPolitico", "lang": "en", "profile_background_tile": true, "favourites_count": 42068, "name": "3ChicsPolitico", "notifications": false, "url": "http://t.co/MhJwa9lnC1", "created_at": "Thu Jan 13 06:08:14 +0000 2011", "contributors_enabled": false, "time_zone": "Hawaii", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Fri Aug 15 14:58:53 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/3ChicsPolitico/status/500295570393542657/photo/1", "display_url": "pic.twitter.com/FzVA1M9GRN", "url": "http://t.co/FzVA1M9GRN", "media_url_https": "https://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg", "id_str": "500295567960838145", "sizes": { "large": { "h": 500, "resize": "fit", "w": 500 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 500, "resize": "fit", "w": 500 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 83, 105 ], "type": "photo", "id": 500295567960838145, "media_url": "http://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 364194053, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/655350941915287552/NWu9jfkh.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/708656133100146688/0bDf9bPX_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 2153, "profile_sidebar_border_color": "FFFFFF", "id_str": "364194053", "profile_background_color": "3B94D9", "listed_count": 116, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 213800, "description": "Conquer, Immortal, Kendra Saunders's personal street harasser, villain supreme, slayer of fake Egyptians, most evil beard in the DCTV Universe", "friends_count": 901, "location": "In all history, past & present", "profile_link_color": "020F14", "profile_image_url": "http://pbs.twimg.com/profile_images/708656133100146688/0bDf9bPX_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/364194053/1457799528", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/655350941915287552/NWu9jfkh.jpg", "screen_name": "ArrogantDemon", "lang": "en", "profile_background_tile": true, "favourites_count": 3212, "name": "Dr. Curtis Knox", "notifications": false, "url": null, "created_at": "Mon Aug 29 11:00:51 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 237606548, "source_status_id_str": "500295570393542657", "expanded_url": "http://twitter.com/3ChicsPolitico/status/500295570393542657/photo/1", "display_url": "pic.twitter.com/FzVA1M9GRN", "url": "http://t.co/FzVA1M9GRN", "media_url_https": "https://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg", "source_user_id_str": "237606548", "source_status_id": 500295570393542657, "id_str": "500295567960838145", "sizes": { "large": { "h": 500, "resize": "fit", "w": 500 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 500, "resize": "fit", "w": 500 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 103, 125 ], "type": "photo", "id": 500295567960838145, "media_url": "http://pbs.twimg.com/media/BvFoKxsCEAEk3WM.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @elonjames: With just donations from YOU we got to #Ferguson and provided better coverage than major news spaces. Real #BLACKMEDIA is he…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064204288540672, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1716581, "indices": [ 3, 13 ], "id_str": "1716581", "screen_name": "elonjames", "name": "Elon James White" } ], "hashtags": [ { "indices": [ 54, 63 ], "text": "Ferguson" }, { "indices": [ 122, 133 ], "text": "BLACKMEDIA" }, { "indices": [ 139, 140 ], "text": "TWIBnation" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 43, "id_str": "501064204288540672", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "With just donations from YOU we got to #Ferguson and provided better coverage than major news spaces. Real #BLACKMEDIA is here. #TWIBnation", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501053587422580736, "favorite_count": 32, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 39, 48 ], "text": "Ferguson" }, { "indices": [ 107, 118 ], "text": "BLACKMEDIA" }, { "indices": [ 128, 139 ], "text": "TWIBnation" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 43, "id_str": "501053587422580736", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 1716581, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/728891037108862976/zBW3Q2rq_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/GCl3FkrIQR", "indices": [ 0, 23 ], "expanded_url": "http://elonjameswhite.com", "display_url": "elonjameswhite.com" } ] }, "description": { "urls": [ { "url": "https://t.co/N0eThiOpQN", "indices": [ 29, 52 ], "expanded_url": "http://www.ThisWeekInBlackness.com", "display_url": "ThisWeekInBlackness.com" } ] } }, "followers_count": 61770, "profile_sidebar_border_color": "EEEEEE", "id_str": "1716581", "profile_background_color": "131516", "listed_count": 2546, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 108633, "description": "CEO, @TWIBNation. Publisher, https://t.co/N0eThiOpQN, Media Dir. @netroots_nation. Writer. Professionally funny. Press+Bookings: ejw.biz@twib.me", "friends_count": 670, "location": "Oakland, CA", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/728891037108862976/zBW3Q2rq_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1716581/1420076174", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "elonjames", "lang": "en", "profile_background_tile": true, "favourites_count": 8828, "name": "Elon James White", "notifications": false, "url": "https://t.co/GCl3FkrIQR", "created_at": "Wed Mar 21 05:53:23 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:10:59 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 161904722, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/546547179947831296/l0KEjrUY_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/G18zOYo157", "indices": [ 0, 22 ], "expanded_url": "http://www.bdsinsight.com", "display_url": "bdsinsight.com" } ] }, "description": { "urls": [ { "url": "http://t.co/wqSOWWZkY5", "indices": [ 131, 153 ], "expanded_url": "http://youtu.be/IrFio4krAdE", "display_url": "youtu.be/IrFio4krAdE" } ] } }, "followers_count": 553, "profile_sidebar_border_color": "C0DEED", "id_str": "161904722", "profile_background_color": "C0DEED", "listed_count": 25, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 5202, "description": "Work @saintanselm @bdsinsight Columnist @nhbr McNair/Fulbright alum Ed transforms; faith & family fortify Tweets mine not theirs http://t.co/wqSOWWZkY5", "friends_count": 1290, "location": "MHT & NYC", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/546547179947831296/l0KEjrUY_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/161904722/1354417201", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "profbrady", "lang": "en", "profile_background_tile": false, "favourites_count": 3670, "name": "Loretta L. C. Brady", "notifications": false, "url": "http://t.co/G18zOYo157", "created_at": "Fri Jul 02 02:48:25 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @BloombergNews: America's poor population is growing twice as fast in suburbs than in cities: http://t.co/c68E0RzdJh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064204661850113, "favorite_count": 0, "source": "RoundTeam", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/c68E0RzdJh", "indices": [ 97, 119 ], "expanded_url": "http://bloom.bg/1nXRRoo", "display_url": "bloom.bg/1nXRRoo" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 109, "id_str": "501064204661850113", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "America's poor population is growing twice as fast in suburbs than in cities: http://t.co/c68E0RzdJh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063904341266432, "favorite_count": 33, "source": "Hootsuite", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/c68E0RzdJh", "indices": [ 78, 100 ], "expanded_url": "http://bloom.bg/1nXRRoo", "display_url": "bloom.bg/1nXRRoo" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 109, "id_str": "501063904341266432", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 34713362, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/544322097833467904/1fjpNCr9.jpeg", "verified": true, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714946924105883648/4fgNVF4H_normal.jpg", "profile_sidebar_fill_color": "EEEEEE", "entities": { "url": { "urls": [ { "url": "http://t.co/YFISwy1upH", "indices": [ 0, 22 ], "expanded_url": "http://www.bloomberg.com", "display_url": "bloomberg.com" } ] }, "description": { "urls": [] } }, "followers_count": 3167475, "profile_sidebar_border_color": "DADADA", "id_str": "34713362", "profile_background_color": "101112", "listed_count": 39168, "is_translation_enabled": true, "utc_offset": -14400, "statuses_count": 150030, "description": "The first word in business news.", "friends_count": 754, "location": "New York and the World", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/714946924105883648/4fgNVF4H_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/34713362/1418609243", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/544322097833467904/1fjpNCr9.jpeg", "screen_name": "business", "lang": "en", "profile_background_tile": true, "favourites_count": 292, "name": "Bloomberg", "notifications": false, "url": "http://t.co/YFISwy1upH", "created_at": "Thu Apr 23 20:05:17 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:51:58 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": true, "id": 18270633, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_sidebar_fill_color": "FFFFFF", "entities": { "description": { "urls": [] } }, "followers_count": 559, "profile_sidebar_border_color": "EEEEEE", "id_str": "18270633", "profile_background_color": "B2DFDA", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 347666, "description": "", "friends_count": 289, "location": "", "profile_link_color": "93A644", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "screen_name": "ahhthatswhy", "lang": "en", "profile_background_tile": false, "favourites_count": 32, "name": "interestingnews", "notifications": false, "url": null, "created_at": "Sat Dec 20 18:56:46 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @Thatindianbruh: 2 Eye Witnesses. 1 Story. Fuck everything that the media telling you bout the #Ferguson case. This is the facts. http:/…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064204989001728, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 90296594, "indices": [ 3, 18 ], "id_str": "90296594", "screen_name": "Thatindianbruh", "name": "Mr. Patel" } ], "hashtags": [ { "indices": [ 98, 107 ], "text": "Ferguson" } ], "urls": [], "media": [ { "source_user_id": 90296594, "source_status_id_str": "501051914218668032", "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "source_user_id_str": "90296594", "source_status_id": 501051914218668032, "id_str": "501051913505624066", "sizes": { "small": { "h": 492, "resize": "fit", "w": 340 }, "large": { "h": 869, "resize": "fit", "w": 600 }, "medium": { "h": 869, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10371, "id_str": "501064204989001728", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "2 Eye Witnesses. 1 Story. Fuck everything that the media telling you bout the #Ferguson case. This is the facts. http://t.co/NjN9AF7AFP", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501051914218668032, "favorite_count": 4867, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 78, 87 ], "text": "Ferguson" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "id_str": "501051913505624066", "sizes": { "small": { "h": 492, "resize": "fit", "w": 340 }, "large": { "h": 869, "resize": "fit", "w": 600 }, "medium": { "h": 869, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 113, 135 ], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10371, "id_str": "501051914218668032", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 90296594, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676981908/5039c47ca9aaf1f1f1ace58c9c465d16.jpeg", "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666174215796715520/r531di_H_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": { "description": { "urls": [] } }, "followers_count": 8733, "profile_sidebar_border_color": "000000", "id_str": "90296594", "profile_background_color": "1D1D1B", "listed_count": 142, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 56174, "description": "You know who I am.", "friends_count": 1137, "location": "ATL", "profile_link_color": "2BC1C4", "profile_image_url": "http://pbs.twimg.com/profile_images/666174215796715520/r531di_H_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/90296594/1459289391", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676981908/5039c47ca9aaf1f1f1ace58c9c465d16.jpeg", "screen_name": "Thatindianbruh", "lang": "en", "profile_background_tile": false, "favourites_count": 7163, "name": "Mr. Patel", "notifications": false, "url": null, "created_at": "Mon Nov 16 01:45:23 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:04:20 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "id_str": "501051913505624066", "sizes": { "small": { "h": 492, "resize": "fit", "w": 340 }, "large": { "h": 869, "resize": "fit", "w": 600 }, "medium": { "h": 869, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 113, 135 ], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 144939767, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/751618102/97d5f6724863e9fa0c190504be74180d.jpeg", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722152450149466113/uQlbwX4P_normal.jpg", "profile_sidebar_fill_color": "7AC3EE", "entities": { "description": { "urls": [] } }, "followers_count": 1814, "profile_sidebar_border_color": "FFFFFF", "id_str": "144939767", "profile_background_color": "F8F5FA", "listed_count": 13, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 59911, "description": "18. ldn.", "friends_count": 1163, "location": "", "profile_link_color": "FF0088", "profile_image_url": "http://pbs.twimg.com/profile_images/722152450149466113/uQlbwX4P_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/144939767/1462310718", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/751618102/97d5f6724863e9fa0c190504be74180d.jpeg", "screen_name": "Laurenleah_", "lang": "en", "profile_background_tile": true, "favourites_count": 595, "name": "rich caramel", "notifications": false, "url": null, "created_at": "Mon May 17 18:21:48 +0000 2010", "contributors_enabled": false, "time_zone": "Amsterdam", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 90296594, "source_status_id_str": "501051914218668032", "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "source_user_id_str": "90296594", "source_status_id": 501051914218668032, "id_str": "501051913505624066", "sizes": { "small": { "h": 492, "resize": "fit", "w": 340 }, "large": { "h": 869, "resize": "fit", "w": 600 }, "medium": { "h": 869, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "Missouri Gov. distraught with Michael Brown video release. Says it made emotions raw, unfair to his family. http://t.co/CKccFakFe5 #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064205089665024, "favorite_count": 14, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 131, 140 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/CKccFakFe5", "indices": [ 108, 130 ], "expanded_url": "http://trib.al/8Qzi8RB", "display_url": "trib.al/8Qzi8RB" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 35, "id_str": "501064205089665024", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 2884771, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/251616259/20110510_twitter.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/565191389495844864/levM32NJ_normal.png", "profile_sidebar_fill_color": "F2F2F2", "entities": { "url": { "urls": [ { "url": "https://t.co/92gD7evE72", "indices": [ 0, 23 ], "expanded_url": "http://www.newsweek.com", "display_url": "newsweek.com" } ] }, "description": { "urls": [] } }, "followers_count": 2857589, "profile_sidebar_border_color": "FFFFFF", "id_str": "2884771", "profile_background_color": "EE2A26", "listed_count": 35820, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 74133, "description": "Newsweek brings you the top news and analysis on politics, science, technology, and culture.", "friends_count": 65, "location": "New York, NY", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/565191389495844864/levM32NJ_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/251616259/20110510_twitter.gif", "screen_name": "Newsweek", "lang": "en", "profile_background_tile": true, "favourites_count": 2194, "name": "Newsweek", "notifications": false, "url": "https://t.co/92gD7evE72", "created_at": "Thu Mar 29 19:51:11 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @bryancrumpler: This is America... THIS! #Ferguson Tired of all the BS stats on intrinsic criminality among blk ppl. #CrimeButNoTime htt…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064205400039424, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 935015863, "indices": [ 3, 17 ], "id_str": "935015863", "screen_name": "bryancrumpler", "name": "Bryan A. Crumpler" } ], "hashtags": [ { "indices": [ 44, 53 ], "text": "Ferguson" }, { "indices": [ 120, 135 ], "text": "CrimeButNoTime" } ], "urls": [], "media": [ { "source_user_id": 935015863, "source_status_id_str": "501011628448841728", "expanded_url": "http://twitter.com/bryancrumpler/status/501011628448841728/photo/1", "display_url": "pic.twitter.com/mXfDCk3363", "url": "http://t.co/mXfDCk3363", "media_url_https": "https://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg", "source_user_id_str": "935015863", "source_status_id": 501011628448841728, "id_str": "501011618734833664", "sizes": { "large": { "h": 720, "resize": "fit", "w": 720 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501011618734833664, "media_url": "http://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5419, "id_str": "501064205400039424", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "This is America... THIS! #Ferguson Tired of all the BS stats on intrinsic criminality among blk ppl. #CrimeButNoTime http://t.co/mXfDCk3363", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501011628448841728, "favorite_count": 2701, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 25, 34 ], "text": "Ferguson" }, { "indices": [ 101, 116 ], "text": "CrimeButNoTime" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/bryancrumpler/status/501011628448841728/photo/1", "display_url": "pic.twitter.com/mXfDCk3363", "url": "http://t.co/mXfDCk3363", "media_url_https": "https://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg", "id_str": "501011618734833664", "sizes": { "large": { "h": 720, "resize": "fit", "w": 720 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 117, 139 ], "type": "photo", "id": 501011618734833664, "media_url": "http://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5419, "id_str": "501011628448841728", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 935015863, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/706010261/7cea91606be43866289d80e36ee3959d.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2823671163/7f2afa1d7caa4614ac86819fffe76bb0_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/G42zMU8I", "indices": [ 0, 20 ], "expanded_url": "http://www.whosthatguy.com", "display_url": "whosthatguy.com" } ] }, "description": { "urls": [ { "url": "http://t.co/I05Bx3kNk7", "indices": [ 63, 85 ], "expanded_url": "http://crumpler.bandcamp.com", "display_url": "crumpler.bandcamp.com" }, { "url": "http://t.co/cbxcE8mSDP", "indices": [ 86, 108 ], "expanded_url": "http://soundcloud.com/crumpler", "display_url": "soundcloud.com/crumpler" } ] } }, "followers_count": 379, "profile_sidebar_border_color": "000000", "id_str": "935015863", "profile_background_color": "291B07", "listed_count": 12, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 1528, "description": "Clarinetist, Chamber Musician, Composer, Educator, Translator http://t.co/I05Bx3kNk7\nhttp://t.co/cbxcE8mSDP", "friends_count": 684, "location": "", "profile_link_color": "569CED", "profile_image_url": "http://pbs.twimg.com/profile_images/2823671163/7f2afa1d7caa4614ac86819fffe76bb0_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/935015863/1352396893", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/706010261/7cea91606be43866289d80e36ee3959d.jpeg", "screen_name": "bryancrumpler", "lang": "en", "profile_background_tile": false, "favourites_count": 947, "name": "Bryan A. Crumpler", "notifications": false, "url": "http://t.co/G42zMU8I", "created_at": "Thu Nov 08 17:29:06 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 14:24:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/bryancrumpler/status/501011628448841728/photo/1", "display_url": "pic.twitter.com/mXfDCk3363", "url": "http://t.co/mXfDCk3363", "media_url_https": "https://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg", "id_str": "501011618734833664", "sizes": { "large": { "h": 720, "resize": "fit", "w": 720 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 117, 139 ], "type": "photo", "id": 501011618734833664, "media_url": "http://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 61408763, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/641039269/iz6yxgfz5ewbq6avb4mk.jpeg", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/684414048163725312/BgBCZwUt_normal.jpg", "profile_sidebar_fill_color": "7AC3EE", "entities": { "description": { "urls": [] } }, "followers_count": 280, "profile_sidebar_border_color": "65B0DA", "id_str": "61408763", "profile_background_color": "05191C", "listed_count": 14, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 10334, "description": "Colombian, 19", "friends_count": 182, "location": "", "profile_link_color": "9A25E8", "profile_image_url": "http://pbs.twimg.com/profile_images/684414048163725312/BgBCZwUt_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/61408763/1355450454", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/641039269/iz6yxgfz5ewbq6avb4mk.jpeg", "screen_name": "KiaraVillegass", "lang": "en", "profile_background_tile": true, "favourites_count": 440, "name": "Kiara Villegas", "notifications": false, "url": null, "created_at": "Thu Jul 30 06:09:44 +0000 2009", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 935015863, "source_status_id_str": "501011628448841728", "expanded_url": "http://twitter.com/bryancrumpler/status/501011628448841728/photo/1", "display_url": "pic.twitter.com/mXfDCk3363", "url": "http://t.co/mXfDCk3363", "media_url_https": "https://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg", "source_user_id_str": "935015863", "source_status_id": 501011628448841728, "id_str": "501011618734833664", "sizes": { "large": { "h": 720, "resize": "fit", "w": 720 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501011618734833664, "media_url": "http://pbs.twimg.com/media/BvPzaasIgAA1hgF.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @NatJackEsq: I believe Ferguson's citizens when they say Police Chief Jackson's Police Department has a history of civil rights violatio…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064206666702848, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "501064206666702848", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "I believe Ferguson's citizens when they say Police Chief Jackson's Police Department has a history of civil rights violations. (1 of 2)", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062223096446976, "favorite_count": 6, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "501062223096446976", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 33747408, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692792034135031808/aPZT5MPm_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": { "description": { "urls": [] } }, "followers_count": 9938, "profile_sidebar_border_color": "829D5E", "id_str": "33747408", "profile_background_color": "352726", "listed_count": 157, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 14938, "description": "Author. Re-tweets may be endorsements or disparagements.Don't understand meaning of a tweet? Ask be4 misinterpreting. #BlackLivesMatter", "friends_count": 1123, "location": "Orlando, Florida ", "profile_link_color": "D02B55", "profile_image_url": "http://pbs.twimg.com/profile_images/692792034135031808/aPZT5MPm_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/33747408/1416460228", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "screen_name": "NatJackTweets", "lang": "en", "profile_background_tile": false, "favourites_count": 4520, "name": "Natalie Jackson", "notifications": false, "url": null, "created_at": "Tue Apr 21 01:04:48 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:45:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 349699173, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/846853763/ccd475f2caf55a6c8887f3ebe1b71bd8.png", "verified": false, "profile_text_color": "7A747D", "profile_image_url_https": "https://pbs.twimg.com/profile_images/516657556865818624/9p8wtlsd_normal.jpeg", "profile_sidebar_fill_color": "C8A8C5", "entities": { "description": { "urls": [] } }, "followers_count": 197, "profile_sidebar_border_color": "E5CFC8", "id_str": "349699173", "profile_background_color": "3E5E5C", "listed_count": 15, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 3243, "description": "Political analyst, thought leader and foodie. Making sense of the madness and in search of great food!", "friends_count": 327, "location": "Atlanta", "profile_link_color": "8D5085", "profile_image_url": "http://pbs.twimg.com/profile_images/516657556865818624/9p8wtlsd_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/349699173/1412015775", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/846853763/ccd475f2caf55a6c8887f3ebe1b71bd8.png", "screen_name": "junelegal", "lang": "en", "profile_background_tile": true, "favourites_count": 32, "name": "RealityCheck", "notifications": false, "url": null, "created_at": "Sat Aug 06 15:02:37 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:10 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @brookandthecity: People demand the presence of celebs opinions on Ferguson. They speak out, and if it's not what you want, you're \"outr…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064207274868736, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 19459404, "indices": [ 3, 19 ], "id_str": "19459404", "screen_name": "brookandthecity", "name": "Brook Lynne Carter" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501064207274868736", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "People demand the presence of celebs opinions on Ferguson. They speak out, and if it's not what you want, you're \"outraged\".", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501029750958465025, "favorite_count": 3, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501029750958465025", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 19459404, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/870327148/e0e01950f0d75fa46c1fdedb81783bee.jpeg", "verified": false, "profile_text_color": "E6105F", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668726102593028097/U0CEAAh5_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 27767, "profile_sidebar_border_color": "FFFFFF", "id_str": "19459404", "profile_background_color": "C6E2EE", "listed_count": 572, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 257110, "description": "Fake radio personality. Real bartender. True writer.", "friends_count": 936, "location": "Atlanta by way of the Bay Area", "profile_link_color": "999092", "profile_image_url": "http://pbs.twimg.com/profile_images/668726102593028097/U0CEAAh5_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19459404/1432224853", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/870327148/e0e01950f0d75fa46c1fdedb81783bee.jpeg", "screen_name": "brookandthecity", "lang": "en", "profile_background_tile": true, "favourites_count": 66, "name": "Brook Lynne Carter", "notifications": false, "url": null, "created_at": "Sat Jan 24 19:29:05 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 15:36:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 76223193, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/101897503/Twitpic.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652920849167740929/jJcqIbEI_normal.jpg", "profile_sidebar_fill_color": "F3F3F3", "entities": { "url": { "urls": [ { "url": "http://t.co/Z6XLbzy71u", "indices": [ 0, 22 ], "expanded_url": "http://thoughtsoftamar.WordPress.com", "display_url": "thoughtsoftamar.WordPress.com" } ] }, "description": { "urls": [] } }, "followers_count": 2386, "profile_sidebar_border_color": "DFDFDF", "id_str": "76223193", "profile_background_color": "EBEBEB", "listed_count": 50, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 289240, "description": "I'm high off of life, the flight is free! #EAGLES #Uptown #Teamchocolate #Team262 #TeamMastersDegree #TeamHighlyEducated IG/Snapchat::MsTamarShawnice", "friends_count": 885, "location": "Uptown", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/652920849167740929/jJcqIbEI_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/76223193/1414504121", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/101897503/Twitpic.jpg", "screen_name": "MsTamarShawnice", "lang": "en", "profile_background_tile": true, "favourites_count": 384, "name": "❤️️The Therapist♒️❤️", "notifications": false, "url": "http://t.co/Z6XLbzy71u", "created_at": "Tue Sep 22 02:13:39 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Federal autopsy of Michael Brown ordered as unrest in Ferguson rises - Los Angeles Times: ABC NewsFederal auto... http://t.co/E5SfUKngo0", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064207387742210, "favorite_count": 0, "source": "twitterfeed", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/E5SfUKngo0", "indices": [ 114, 136 ], "expanded_url": "http://bit.ly/1t7X2IC", "display_url": "bit.ly/1t7X2IC" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064207387742210", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2459920208, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/556346456181723136/Xx8jB-aQ.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/458999677396848640/8NG7ZYdF_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/lhPKjPsSrk", "indices": [ 0, 23 ], "expanded_url": "https://www.facebook.com/feedsynbot", "display_url": "facebook.com/feedsynbot" } ] }, "description": { "urls": [] } }, "followers_count": 1568, "profile_sidebar_border_color": "FFFFFF", "id_str": "2459920208", "profile_background_color": "C0DEED", "listed_count": 592, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 730610, "description": ":: feed syndication bot ::", "friends_count": 7, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/458999677396848640/8NG7ZYdF_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2459920208/1398284846", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/556346456181723136/Xx8jB-aQ.jpeg", "screen_name": "feedsynbot", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "feedsynbot", "notifications": false, "url": "https://t.co/lhPKjPsSrk", "created_at": "Wed Apr 23 15:52:01 +0000 2014", "contributors_enabled": false, "time_zone": "Athens", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @AnonyCrypt: A beautifully relevant quote let it speak for us all #Ferguson http://t.co/XzmbT0uzSB", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064207824351232, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 394969362, "indices": [ 3, 14 ], "id_str": "394969362", "screen_name": "AnonyCrypt", "name": "Anonymous|Operations" } ], "hashtags": [ { "indices": [ 69, 78 ], "text": "Ferguson" } ], "urls": [], "media": [ { "source_user_id": 394969362, "source_status_id_str": "500950781424848897", "expanded_url": "http://twitter.com/AnonyCrypt/status/500950781424848897/photo/1", "display_url": "pic.twitter.com/XzmbT0uzSB", "url": "http://t.co/XzmbT0uzSB", "media_url_https": "https://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg", "source_user_id_str": "394969362", "source_status_id": 500950781424848897, "id_str": "500950779872948225", "sizes": { "large": { "h": 690, "resize": "fit", "w": 534 }, "small": { "h": 439, "resize": "fit", "w": 340 }, "medium": { "h": 690, "resize": "fit", "w": 534 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 79, 101 ], "type": "photo", "id": 500950779872948225, "media_url": "http://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2113, "id_str": "501064207824351232", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "A beautifully relevant quote let it speak for us all #Ferguson http://t.co/XzmbT0uzSB", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500950781424848897, "favorite_count": 1476, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 53, 62 ], "text": "Ferguson" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/AnonyCrypt/status/500950781424848897/photo/1", "display_url": "pic.twitter.com/XzmbT0uzSB", "url": "http://t.co/XzmbT0uzSB", "media_url_https": "https://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg", "id_str": "500950779872948225", "sizes": { "large": { "h": 690, "resize": "fit", "w": 534 }, "small": { "h": 439, "resize": "fit", "w": 340 }, "medium": { "h": 690, "resize": "fit", "w": 534 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 63, 85 ], "type": "photo", "id": 500950779872948225, "media_url": "http://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2113, "id_str": "500950781424848897", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 394969362, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/633192308498821120/h5haJAzf.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683676060458692614/EqczuVme_normal.jpg", "profile_sidebar_fill_color": "F6F6F6", "entities": { "url": { "urls": [ { "url": "https://t.co/qYOpdMwVaA", "indices": [ 0, 23 ], "expanded_url": "https://anoninsiders.net", "display_url": "anoninsiders.net" } ] }, "description": { "urls": [] } }, "followers_count": 8656, "profile_sidebar_border_color": "000000", "id_str": "394969362", "profile_background_color": "131516", "listed_count": 196, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 12758, "description": "Official Twitter account for AnonInsiders and international Anonymous Operations.", "friends_count": 236, "location": "International", "profile_link_color": "DF0101", "profile_image_url": "http://pbs.twimg.com/profile_images/683676060458692614/EqczuVme_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/394969362/1420431061", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/633192308498821120/h5haJAzf.png", "screen_name": "AnonyCrypt", "lang": "en", "profile_background_tile": true, "favourites_count": 2004, "name": "Anonymous|Operations", "notifications": false, "url": "https://t.co/qYOpdMwVaA", "created_at": "Thu Oct 20 22:33:34 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 10:22:28 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/AnonyCrypt/status/500950781424848897/photo/1", "display_url": "pic.twitter.com/XzmbT0uzSB", "url": "http://t.co/XzmbT0uzSB", "media_url_https": "https://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg", "id_str": "500950779872948225", "sizes": { "large": { "h": 690, "resize": "fit", "w": 534 }, "small": { "h": 439, "resize": "fit", "w": 340 }, "medium": { "h": 690, "resize": "fit", "w": 534 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 63, 85 ], "type": "photo", "id": 500950779872948225, "media_url": "http://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 377869140, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "verified": false, "profile_text_color": "634047", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662651024910508032/ZmmpwHz-_normal.jpg", "profile_sidebar_fill_color": "E3E2DE", "entities": { "url": { "urls": [ { "url": "https://t.co/a1arb3DQi1", "indices": [ 0, 23 ], "expanded_url": "http://www.riotactmusic.co.uk", "display_url": "riotactmusic.co.uk" } ] }, "description": { "urls": [] } }, "followers_count": 138, "profile_sidebar_border_color": "D3D2CF", "id_str": "377869140", "profile_background_color": "EDECE9", "listed_count": 5, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 3305, "description": "One day I'll fall in love with someone like my ears did with Hip Hop. Drummer, MC @Riot_Act_uk. Love me some footy. LFC.", "friends_count": 101, "location": "England", "profile_link_color": "088253", "profile_image_url": "http://pbs.twimg.com/profile_images/662651024910508032/ZmmpwHz-_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/377869140/1435484817", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "screen_name": "BobbyClashBeat", "lang": "en", "profile_background_tile": false, "favourites_count": 1100, "name": "Bobby", "notifications": false, "url": "https://t.co/a1arb3DQi1", "created_at": "Thu Sep 22 07:41:37 +0000 2011", "contributors_enabled": false, "time_zone": "London", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 394969362, "source_status_id_str": "500950781424848897", "expanded_url": "http://twitter.com/AnonyCrypt/status/500950781424848897/photo/1", "display_url": "pic.twitter.com/XzmbT0uzSB", "url": "http://t.co/XzmbT0uzSB", "media_url_https": "https://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg", "source_user_id_str": "394969362", "source_status_id": 500950781424848897, "id_str": "500950779872948225", "sizes": { "large": { "h": 690, "resize": "fit", "w": 534 }, "small": { "h": 439, "resize": "fit", "w": 340 }, "medium": { "h": 690, "resize": "fit", "w": 534 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 79, 101 ], "type": "photo", "id": 500950779872948225, "media_url": "http://pbs.twimg.com/media/BvO8FIRIMAE96_9.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "Photos: Ferguson officer Darren Wilson earned police honor before fatal shooting http://t.co/fYRW1MPhl9", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064208277319680, "favorite_count": 0, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/fYRW1MPhl9", "indices": [ 81, 103 ], "expanded_url": "http://ift.tt/1rEOvdo", "display_url": "ift.tt/1rEOvdo" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064208277319680", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2335960920, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/432706003285450752/IHK6C475_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/86ve2qrUtH", "indices": [ 0, 22 ], "expanded_url": "http://news.google.com", "display_url": "news.google.com" } ] }, "description": { "urls": [] } }, "followers_count": 471, "profile_sidebar_border_color": "C0DEED", "id_str": "2335960920", "profile_background_color": "C0DEED", "listed_count": 64, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 122009, "description": "Breaking news, updates and tips from Google News.", "friends_count": 147, "location": "Mountain View, CA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/432706003285450752/IHK6C475_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "ggnewsus", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Google News US", "notifications": false, "url": "http://t.co/86ve2qrUtH", "created_at": "Mon Feb 10 02:29:55 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "US #US_News Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far: FERGUSON, Mo.—After an... http://t.co/xsO3TwGoms", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064208562135042, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 3, 11 ], "text": "US_News" } ], "urls": [ { "url": "http://t.co/xsO3TwGoms", "indices": [ 111, 133 ], "expanded_url": "http://dlvr.it/6dqn2r", "display_url": "dlvr.it/6dqn2r" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064208562135042", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 410566588, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1637070938/denim_3_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/OmlpZ603GY", "indices": [ 0, 22 ], "expanded_url": "http://www.lisanya.de", "display_url": "lisanya.de" } ] }, "description": { "urls": [] } }, "followers_count": 574, "profile_sidebar_border_color": "C0DEED", "id_str": "410566588", "profile_background_color": "C0DEED", "listed_count": 153, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 309577, "description": "Qi-Gong Thai-Chi Yoga Kampfsport Meditation Karate China Buddhismus Taoismus", "friends_count": 300, "location": "stuttgart", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1637070938/denim_3_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "WaltherKrickl", "lang": "de", "profile_background_tile": false, "favourites_count": 1, "name": "walther krickl", "notifications": false, "url": "http://t.co/OmlpZ603GY", "created_at": "Sat Nov 12 08:09:16 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @kimodonnel: The week in photos from #Ferguson: extraordinary journalism via @STLtoday\nhttp://t.co/fFnwv6HHVt", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064208789045248, "favorite_count": 0, "source": "Twitter for Android Tablets", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 14140694, "indices": [ 3, 14 ], "id_str": "14140694", "screen_name": "kimodonnel", "name": "Kim O'Donnel" }, { "id": 6039302, "indices": [ 80, 89 ], "id_str": "6039302", "screen_name": "stltoday", "name": "STLtoday" } ], "hashtags": [ { "indices": [ 40, 49 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/fFnwv6HHVt", "indices": [ 90, 112 ], "expanded_url": "http://bit.ly/1BqADdq", "display_url": "bit.ly/1BqADdq" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501064208789045248", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "The week in photos from #Ferguson: extraordinary journalism via @STLtoday\nhttp://t.co/fFnwv6HHVt", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501054002964856832, "favorite_count": 3, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 6039302, "indices": [ 64, 73 ], "id_str": "6039302", "screen_name": "stltoday", "name": "STLtoday" } ], "hashtags": [ { "indices": [ 24, 33 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/fFnwv6HHVt", "indices": [ 74, 96 ], "expanded_url": "http://bit.ly/1BqADdq", "display_url": "bit.ly/1BqADdq" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501054002964856832", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 14140694, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2004680091/miniheadshotz_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/gCEdCI4xO6", "indices": [ 0, 22 ], "expanded_url": "http://www.kimodonnel.com", "display_url": "kimodonnel.com" } ] }, "description": { "urls": [] } }, "followers_count": 5821, "profile_sidebar_border_color": "C0DEED", "id_str": "14140694", "profile_background_color": "C0DEED", "listed_count": 459, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 8392, "description": "Author, PNW VEG (Sasquatch), May 2017. Eco-food enthusiast, curious cook, wordsmith.", "friends_count": 3711, "location": "Seattle, Wash.", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/2004680091/miniheadshotz_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "kimodonnel", "lang": "en", "profile_background_tile": false, "favourites_count": 945, "name": "Kim O'Donnel", "notifications": false, "url": "http://t.co/gCEdCI4xO6", "created_at": "Thu Mar 13 16:52:34 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:12:38 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 122387181, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/757543110/Img18_-_Copy_-_Copy_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/xHom25jHbv", "indices": [ 0, 22 ], "expanded_url": "http://evangelismexplosion.org/wp-content/uploads/3219816-English-Tract.pdf", "display_url": "evangelismexplosion.org/wp-content/upl…" } ] }, "description": { "urls": [] } }, "followers_count": 375, "profile_sidebar_border_color": "C0DEED", "id_str": "122387181", "profile_background_color": "C0DEED", "listed_count": 13, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 8811, "description": "Conservative Christian Constitutionalist::::\nThe purpose of our written Constitution was to act as “chains to bind the mischief of government.” ~T. Jefferson", "friends_count": 1964, "location": "Guntersville Lake, AL", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/757543110/Img18_-_Copy_-_Copy_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/122387181/1369083152", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Mark_Rehm", "lang": "en", "profile_background_tile": false, "favourites_count": 25, "name": "Mark E. Rehm", "notifications": false, "url": "http://t.co/xHom25jHbv", "created_at": "Fri Mar 12 14:42:39 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @dierdrelewis: Mass murderers not injured while surrendering. #Ferguson http://t.co/ocsICFGPAb @Opferguson #justiceformikebrown #RIPMike…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064209551994881, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 51330975, "indices": [ 3, 16 ], "id_str": "51330975", "screen_name": "dierdrelewis", "name": "Trayvon Martin" }, { "id": 2721777926, "indices": [ 98, 109 ], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson" } ], "hashtags": [ { "indices": [ 65, 74 ], "text": "Ferguson" }, { "indices": [ 110, 130 ], "text": "justiceformikebrown" }, { "indices": [ 131, 140 ], "text": "RIPMikeBrown" } ], "urls": [], "media": [ { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034203795456", "sizes": { "large": { "h": 559, "resize": "fit", "w": 400 }, "small": { "h": 475, "resize": "fit", "w": 340 }, "medium": { "h": 559, "resize": "fit", "w": 400 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 501056034203795456, "media_url": "http://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 288, "id_str": "501064209551994881", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Mass murderers not injured while surrendering. #Ferguson http://t.co/ocsICFGPAb @Opferguson #justiceformikebrown #RIPMikeBrown", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501061000892645376, "favorite_count": 122, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 2721777926, "indices": [ 80, 91 ], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson" } ], "hashtags": [ { "indices": [ 47, 56 ], "text": "Ferguson" }, { "indices": [ 92, 112 ], "text": "justiceformikebrown" }, { "indices": [ 113, 126 ], "text": "RIPMikeBrown" } ], "urls": [], "media": [ { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034203795456", "sizes": { "large": { "h": 559, "resize": "fit", "w": 400 }, "small": { "h": 475, "resize": "fit", "w": 340 }, "medium": { "h": 559, "resize": "fit", "w": 400 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 57, 79 ], "type": "photo", "id": 501056034203795456, "media_url": "http://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 288, "id_str": "501061000892645376", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 51330975, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "verified": false, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/526618256375689216/0BMLlFNS_normal.png", "profile_sidebar_fill_color": "95E8EC", "entities": { "url": { "urls": [ { "url": "http://t.co/VCb7i3Lh9T", "indices": [ 0, 22 ], "expanded_url": "http://trayvonmartinfoundation.org", "display_url": "trayvonmartinfoundation.org" } ] }, "description": { "urls": [ { "url": "http://t.co/lkAAfk2rH5", "indices": [ 23, 45 ], "expanded_url": "http://trayvonmartinfoundation.org", "display_url": "trayvonmartinfoundation.org" } ] } }, "followers_count": 6785, "profile_sidebar_border_color": "5ED4DC", "id_str": "51330975", "profile_background_color": "0099B9", "listed_count": 302, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 140349, "description": "The Official Website | http://t.co/lkAAfk2rH5 |\r\nThe Trayvon Martin Foundation c/o The Miami Foundation 200 S Biscayne Boulevard Ste 505 Miami, FL 33131", "friends_count": 4943, "location": "", "profile_link_color": "0099B9", "profile_image_url": "http://pbs.twimg.com/profile_images/526618256375689216/0BMLlFNS_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/51330975/1398785602", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "screen_name": "dierdrelewis", "lang": "en", "profile_background_tile": false, "favourites_count": 2472, "name": "Trayvon Martin", "notifications": false, "url": "http://t.co/VCb7i3Lh9T", "created_at": "Sat Jun 27 03:24:34 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:40:26 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034203795456", "sizes": { "large": { "h": 559, "resize": "fit", "w": 400 }, "small": { "h": 475, "resize": "fit", "w": 340 }, "medium": { "h": 559, "resize": "fit", "w": 400 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 57, 79 ], "type": "photo", "id": 501056034203795456, "media_url": "http://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg" }, { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvFIMAICbkQ.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034170220546", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 270, "resize": "fit", "w": 480 }, "medium": { "h": 270, "resize": "fit", "w": 480 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 57, 79 ], "type": "photo", "id": 501056034170220546, "media_url": "http://pbs.twimg.com/media/BvQbzvFIMAICbkQ.jpg" }, { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvOIgAAbrFr.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034207989760", "sizes": { "large": { "h": 500, "resize": "fit", "w": 400 }, "small": { "h": 425, "resize": "fit", "w": 340 }, "medium": { "h": 500, "resize": "fit", "w": 400 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 57, 79 ], "type": "photo", "id": 501056034207989760, "media_url": "http://pbs.twimg.com/media/BvQbzvOIgAAbrFr.jpg" }, { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzwpIYAAaaCK.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034589663232", "sizes": { "small": { "h": 400, "resize": "fit", "w": 273 }, "large": { "h": 400, "resize": "fit", "w": 273 }, "medium": { "h": 400, "resize": "fit", "w": 273 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 57, 79 ], "type": "photo", "id": 501056034589663232, "media_url": "http://pbs.twimg.com/media/BvQbzwpIYAAaaCK.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 1944063499, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714864590044143616/XykomS15_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 549, "profile_sidebar_border_color": "C0DEED", "id_str": "1944063499", "profile_background_color": "C0DEED", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 8829, "description": "Rest is for billionaires", "friends_count": 426, "location": "Gym ", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/714864590044143616/XykomS15_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1944063499/1463298064", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "joe_abi12", "lang": "en", "profile_background_tile": false, "favourites_count": 15976, "name": "Joe", "notifications": false, "url": null, "created_at": "Mon Oct 07 12:58:25 +0000 2013", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034203795456", "sizes": { "large": { "h": 559, "resize": "fit", "w": 400 }, "small": { "h": 475, "resize": "fit", "w": 340 }, "medium": { "h": 559, "resize": "fit", "w": 400 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 501056034203795456, "media_url": "http://pbs.twimg.com/media/BvQbzvNIgAAljSD.jpg" }, { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvFIMAICbkQ.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034170220546", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 270, "resize": "fit", "w": 480 }, "medium": { "h": 270, "resize": "fit", "w": 480 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 501056034170220546, "media_url": "http://pbs.twimg.com/media/BvQbzvFIMAICbkQ.jpg" }, { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzvOIgAAbrFr.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034207989760", "sizes": { "large": { "h": 500, "resize": "fit", "w": 400 }, "small": { "h": 425, "resize": "fit", "w": 340 }, "medium": { "h": 500, "resize": "fit", "w": 400 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 501056034207989760, "media_url": "http://pbs.twimg.com/media/BvQbzvOIgAAbrFr.jpg" }, { "source_user_id": 166329578, "source_status_id_str": "501056036388995073", "expanded_url": "http://twitter.com/TheBaxterBean/status/501056036388995073/photo/1", "display_url": "pic.twitter.com/ocsICFGPAb", "url": "http://t.co/ocsICFGPAb", "media_url_https": "https://pbs.twimg.com/media/BvQbzwpIYAAaaCK.jpg", "source_user_id_str": "166329578", "source_status_id": 501056036388995073, "id_str": "501056034589663232", "sizes": { "small": { "h": 400, "resize": "fit", "w": 273 }, "large": { "h": 400, "resize": "fit", "w": 273 }, "medium": { "h": 400, "resize": "fit", "w": 273 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 501056034589663232, "media_url": "http://pbs.twimg.com/media/BvQbzwpIYAAaaCK.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "1 shot, 7 arrested in #Ferguson unrest as #police seek to enforce curfew - Aug 17 @ 1:52 PM ET http://t.co/n9BJDEojG3", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064209648848896, "favorite_count": 0, "source": "Crime News Updates", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 22, 31 ], "text": "Ferguson" }, { "indices": [ 42, 49 ], "text": "police" } ], "urls": [ { "url": "http://t.co/n9BJDEojG3", "indices": [ 95, 117 ], "expanded_url": "http://pulpnews.com/c/i.php?id=1657912410", "display_url": "pulpnews.com/c/i.php?id=165…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064209648848896", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 100986964, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/478687798245859330/xW-zJmuU.jpeg", "verified": false, "profile_text_color": "0066CC", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478705015041712128/BpM9m5yT_normal.jpeg", "profile_sidebar_fill_color": "FFFFFF", "entities": { "url": { "urls": [ { "url": "http://t.co/M6Ch3yBNB5", "indices": [ 0, 22 ], "expanded_url": "http://pulpnews.com", "display_url": "pulpnews.com" } ] }, "description": { "urls": [] } }, "followers_count": 4029, "profile_sidebar_border_color": "000000", "id_str": "100986964", "profile_background_color": "000000", "listed_count": 773, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 2289049, "description": "The Fastest Crime News Updates on the Planet! Are you a news-a-holic? We have your fix right here.", "friends_count": 921, "location": "USA", "profile_link_color": "CE0000", "profile_image_url": "http://pbs.twimg.com/profile_images/478705015041712128/BpM9m5yT_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/100986964/1402968635", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/478687798245859330/xW-zJmuU.jpeg", "screen_name": "PulpNews", "lang": "en", "profile_background_tile": true, "favourites_count": 37, "name": "PulpNews Crime", "notifications": false, "url": "http://t.co/M6Ch3yBNB5", "created_at": "Fri Jan 01 14:32:20 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Saddened by a future lost and worried about future losses #Ferguson #MichaelBrown", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064210395037696, "favorite_count": 1, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 58, 67 ], "text": "Ferguson" }, { "indices": [ 68, 81 ], "text": "MichaelBrown" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064210395037696", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 716950758, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/550164620359397377/1duQAuCE.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/643584312424574976/f9QypWaM_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "description": { "urls": [] } }, "followers_count": 236, "profile_sidebar_border_color": "000000", "id_str": "716950758", "profile_background_color": "DD2E44", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 1981, "description": "Sun Devil, sports fan, tan.", "friends_count": 346, "location": "AZ", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/643584312424574976/f9QypWaM_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/716950758/1456552160", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/550164620359397377/1duQAuCE.jpeg", "screen_name": "Amber_42", "lang": "en", "profile_background_tile": false, "favourites_count": 2151, "name": "Amber Nicole", "notifications": false, "url": null, "created_at": "Wed Jul 25 23:12:31 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @djenuff: Keke Palmer in Ferguson? - http://t.co/AQku88AjPF @kekepalmer by @toreshitup", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064210693230592, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 16621413, "indices": [ 3, 11 ], "id_str": "16621413", "screen_name": "djenuff", "name": "DJ Enuff" }, { "id": 29860364, "indices": [ 65, 76 ], "id_str": "29860364", "screen_name": "KekePalmer", "name": "Keke Palmer" } ], "hashtags": [], "urls": [ { "url": "http://t.co/AQku88AjPF", "indices": [ 41, 63 ], "expanded_url": "http://tinyurl.com/kzvxyzz", "display_url": "tinyurl.com/kzvxyzz" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "501064210693230592", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Keke Palmer in Ferguson? - http://t.co/AQku88AjPF @kekepalmer by @toreshitup", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501053964725780480, "favorite_count": 2, "source": "enuff word press", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 29860364, "indices": [ 52, 63 ], "id_str": "29860364", "screen_name": "KekePalmer", "name": "Keke Palmer" } ], "hashtags": [], "urls": [ { "url": "http://t.co/AQku88AjPF", "indices": [ 28, 50 ], "expanded_url": "http://tinyurl.com/kzvxyzz", "display_url": "tinyurl.com/kzvxyzz" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "501053964725780480", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 16621413, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/529613730384863232/VYcPcPIJ_normal.png", "profile_sidebar_fill_color": "C0DFEC", "entities": { "url": { "urls": [ { "url": "https://t.co/WUamN8F1D4", "indices": [ 0, 23 ], "expanded_url": "http://www.thatsenuff.com", "display_url": "thatsenuff.com" } ] }, "description": { "urls": [] } }, "followers_count": 363783, "profile_sidebar_border_color": "A8C7F7", "id_str": "16621413", "profile_background_color": "022330", "listed_count": 2232, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 133604, "description": "I love music. I dislike music business. #HeavyHitters #Hot97 #NewAt2 #ThatsEnuff #Shade45 #WBLS", "friends_count": 2253, "location": "Brooklyn, NY", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/529613730384863232/VYcPcPIJ_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16621413/1449244162", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "screen_name": "djenuff", "lang": "en", "profile_background_tile": false, "favourites_count": 658, "name": "DJ Enuff", "notifications": false, "url": "https://t.co/WUamN8F1D4", "created_at": "Mon Oct 06 22:21:06 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "et", "created_at": "Sun Aug 17 17:12:28 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 481606532, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000053175859/21557a7c84167d1e182cf65fb9e373fb.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/657295486383181824/2a9ksnBP_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/Ih5tPdsP1V", "indices": [ 0, 23 ], "expanded_url": "https://m.soundcloud.com/rob-stashiz", "display_url": "m.soundcloud.com/rob-stashiz" } ] }, "description": { "urls": [] } }, "followers_count": 1235, "profile_sidebar_border_color": "000000", "id_str": "481606532", "profile_background_color": "768085", "listed_count": 46, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 55586, "description": "Forward Is My Progress! Raw Deal Squad Ent., Mobile DJ For Bookings djcozrds@gmail.com", "friends_count": 1903, "location": "PHILLY", "profile_link_color": "B00000", "profile_image_url": "http://pbs.twimg.com/profile_images/657295486383181824/2a9ksnBP_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/481606532/1458237912", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000053175859/21557a7c84167d1e182cf65fb9e373fb.jpeg", "screen_name": "REEMTHEDREAM215", "lang": "en", "profile_background_tile": true, "favourites_count": 9382, "name": "DJ COZ ♌", "notifications": false, "url": "https://t.co/Ih5tPdsP1V", "created_at": "Thu Feb 02 23:54:25 +0000 2012", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "et", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @jack: I'm not from Ferguson. I was proudly born & raised in St. Louis City. All of St. Louis should come together as one for #Ferguson.…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064210840035329, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 12, "indices": [ 3, 8 ], "id_str": "12", "screen_name": "jack", "name": "Jack" }, { "id": 16332522, "indices": [ 143, 144 ], "id_str": "16332522", "screen_name": "MayorSlay", "name": "MayorSlay.com" } ], "hashtags": [ { "indices": [ 133, 142 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 758, "id_str": "501064210840035329", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "I'm not from Ferguson. I was proudly born & raised in St. Louis City. All of St. Louis should come together as one for #Ferguson. @MayorSlay", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501020862339112960, "favorite_count": 714, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 16332522, "indices": [ 134, 144 ], "id_str": "16332522", "screen_name": "MayorSlay", "name": "MayorSlay.com" } ], "hashtags": [ { "indices": [ 123, 132 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 758, "id_str": "501020862339112960", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 12, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/668328458519384064/FSAIjKRl_normal.jpg", "profile_sidebar_fill_color": "F3F3F3", "entities": { "description": { "urls": [] } }, "followers_count": 3586479, "profile_sidebar_border_color": "DFDFDF", "id_str": "12", "profile_background_color": "EBEBEB", "listed_count": 26228, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 19615, "description": "#withMalala!", "friends_count": 1969, "location": "California, USA", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/668328458519384064/FSAIjKRl_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "screen_name": "jack", "lang": "en", "profile_background_tile": false, "favourites_count": 12917, "name": "Jack", "notifications": false, "url": null, "created_at": "Tue Mar 21 20:50:14 +0000 2006", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 15:00:56 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 16787108, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/638457536186748933/s8s8uvqn.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718810242373390336/gkDMUu-y_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/FaUdABlYy9", "indices": [ 0, 23 ], "expanded_url": "http://www.heidicullinan.com", "display_url": "heidicullinan.com" } ] }, "description": { "urls": [] } }, "followers_count": 4398, "profile_sidebar_border_color": "FFFFFF", "id_str": "16787108", "profile_background_color": "F4F6F7", "listed_count": 194, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 57539, "description": "Author of LGBTQ romance, keeper of many allergies, defier of labels, professional amazon. She/her. #TrueBuckaroo", "friends_count": 638, "location": "Iowa", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/718810242373390336/gkDMUu-y_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16787108/1459369586", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/638457536186748933/s8s8uvqn.jpg", "screen_name": "heidicullinan", "lang": "en", "profile_background_tile": false, "favourites_count": 25670, "name": "Heidi Cullinan", "notifications": false, "url": "https://t.co/FaUdABlYy9", "created_at": "Wed Oct 15 16:58:56 +0000 2008", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:11 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @mg_lasquadra: This->Hamptons Po Chief Walks Off With $400K Worth Of Unused Sick Days\n\nGuy in #Ferguson gets killed 4 a box of cigs\n\nhtt…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064212547137536, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 278143425, "indices": [ 3, 16 ], "id_str": "278143425", "screen_name": "mg_lasquadra", "name": "Patrick-apolis" } ], "hashtags": [ { "indices": [ 100, 109 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/uM7C8yJ8fK", "indices": [ 142, 143 ], "expanded_url": "http://gothamist.com/2014/08/17/hamptons_police_chief_walks_off_wit.php", "display_url": "gothamist.com/2014/08/17/ham…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "501064212547137536", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "This->Hamptons Po Chief Walks Off With $400K Worth Of Unused Sick Days\n\nGuy in #Ferguson gets killed 4 a box of cigs\n\nhttp://t.co/uM7C8yJ8fK", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063871692812288, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 82, 91 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/uM7C8yJ8fK", "indices": [ 121, 143 ], "expanded_url": "http://gothamist.com/2014/08/17/hamptons_police_chief_walks_off_wit.php", "display_url": "gothamist.com/2014/08/17/ham…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "501063871692812288", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 278143425, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731499132989276164/p8H4sdXP_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 121, "profile_sidebar_border_color": "C0DEED", "id_str": "278143425", "profile_background_color": "C0DEED", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 2923, "description": "The mg Company Limited Super Sport Model - 612, since 1960 “It’s not the years, honey. It’s the mileage.”", "friends_count": 126, "location": "Bike City USA - Minneapolis", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/731499132989276164/p8H4sdXP_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/278143425/1355000636", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "mg_lasquadra", "lang": "en", "profile_background_tile": false, "favourites_count": 643, "name": "Patrick-apolis", "notifications": false, "url": null, "created_at": "Wed Apr 06 18:00:22 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:51:50 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 226176050, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/553055804/Miami_Beach_night.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671534779096031232/MmoCQAIl_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/iVrKwI1RR8", "indices": [ 0, 23 ], "expanded_url": "http://KommercialKings.com", "display_url": "KommercialKings.com" } ] }, "description": { "urls": [] } }, "followers_count": 8381, "profile_sidebar_border_color": "C0DEED", "id_str": "226176050", "profile_background_color": "C0DEED", "listed_count": 19, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 13966, "description": "Kommercial Kings - The Hottest, Professional Kommercials in the World! For inquiries call 954-931-3745 or email: KommercialKings1@gmail.com", "friends_count": 2090, "location": "Global", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/671534779096031232/MmoCQAIl_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/226176050/1385319309", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/553055804/Miami_Beach_night.jpg", "screen_name": "KommercialKings", "lang": "en", "profile_background_tile": true, "favourites_count": 797, "name": "KommercialKings", "notifications": false, "url": "https://t.co/iVrKwI1RR8", "created_at": "Mon Dec 13 14:27:06 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @conchienchia: .@NelsonBocaranda y que diràn los apatridas como tù d esta forma d combatir disturbios sociales en #Ferguson? http://t.co…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064213843169280, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 415855797, "indices": [ 3, 16 ], "id_str": "415855797", "screen_name": "conchienchia", "name": "Chino' Viamonte" }, { "id": 23719107, "indices": [ 19, 35 ], "id_str": "23719107", "screen_name": "nelsonbocaranda", "name": "Nelson Bocaranda S." } ], "hashtags": [ { "indices": [ 117, 126 ], "text": "Ferguson" } ], "urls": [], "media": [ { "source_user_id": 415855797, "source_status_id_str": "501064028039684096", "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "source_user_id_str": "415855797", "source_status_id": 501064028039684096, "id_str": "501064025825087488", "sizes": { "large": { "h": 319, "resize": "fit", "w": 457 }, "small": { "h": 237, "resize": "fit", "w": 340 }, "medium": { "h": 319, "resize": "fit", "w": 457 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 33, "id_str": "501064213843169280", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": ".@NelsonBocaranda y que diràn los apatridas como tù d esta forma d combatir disturbios sociales en #Ferguson? http://t.co/nIBbnLO5Gh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064028039684096, "favorite_count": 3, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 23719107, "indices": [ 1, 17 ], "id_str": "23719107", "screen_name": "nelsonbocaranda", "name": "Nelson Bocaranda S." } ], "hashtags": [ { "indices": [ 99, 108 ], "text": "Ferguson" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "id_str": "501064025825087488", "sizes": { "large": { "h": 319, "resize": "fit", "w": 457 }, "small": { "h": 237, "resize": "fit", "w": 340 }, "medium": { "h": 319, "resize": "fit", "w": 457 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 110, 132 ], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 33, "id_str": "501064028039684096", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 415855797, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722956968630079488/yf_NfQjM_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 17785, "profile_sidebar_border_color": "C0DEED", "id_str": "415855797", "profile_background_color": "C0DEED", "listed_count": 67, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 29943, "description": "primero, ser humano, despuesAbogado,militante revolucionario,agroproductor, 18 años comprometido con el proyecto SIMÓN BOLIVAR.", "friends_count": 19522, "location": "algún lugar de venezuela", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/722956968630079488/yf_NfQjM_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/415855797/1461201322", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "conchienchia", "lang": "es", "profile_background_tile": false, "favourites_count": 65, "name": "Chino' Viamonte", "notifications": false, "url": null, "created_at": "Fri Nov 18 22:24:49 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:52:28 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "id_str": "501064025825087488", "sizes": { "large": { "h": 319, "resize": "fit", "w": 457 }, "small": { "h": 237, "resize": "fit", "w": 340 }, "medium": { "h": 319, "resize": "fit", "w": 457 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 110, 132 ], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 113457313, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/252427474/vistaaerea7.JPG", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/706548836337111040/RlfN7IE9_normal.jpg", "profile_sidebar_fill_color": "97AFBD", "entities": { "description": { "urls": [ { "url": "https://t.co/Ms1g16bsMz", "indices": [ 30, 53 ], "expanded_url": "http://www.acreditate.com.ve", "display_url": "acreditate.com.ve" } ] } }, "followers_count": 1120, "profile_sidebar_border_color": "111517", "id_str": "113457313", "profile_background_color": "642D8B", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 10363, "description": "Trabajo,Trabajo y Mas Trabajo https://t.co/Ms1g16bsMz", "friends_count": 1952, "location": "San Cristobal Edo. Tachira", "profile_link_color": "292323", "profile_image_url": "http://pbs.twimg.com/profile_images/706548836337111040/RlfN7IE9_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/113457313/1457402778", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/252427474/vistaaerea7.JPG", "screen_name": "jersonotagle", "lang": "es", "profile_background_tile": true, "favourites_count": 845, "name": "Jerson Rodriguez.", "notifications": false, "url": null, "created_at": "Thu Feb 11 20:41:44 +0000 2010", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 415855797, "source_status_id_str": "501064028039684096", "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "source_user_id_str": "415855797", "source_status_id": 501064028039684096, "id_str": "501064025825087488", "sizes": { "large": { "h": 319, "resize": "fit", "w": 457 }, "small": { "h": 237, "resize": "fit", "w": 340 }, "medium": { "h": 319, "resize": "fit", "w": 457 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "US Michael Brown Ferguson Mo. Shooting, Riots, Curfew: What We Know So Far: FERGUSON, Mo.—After an unarmed black... http://t.co/KUw5dJfNeN", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064213951823873, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/KUw5dJfNeN", "indices": [ 116, 138 ], "expanded_url": "http://dlvr.it/6dqn5l", "display_url": "dlvr.it/6dqn5l" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064213951823873", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 223630412, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1220773654/img_0164-small_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/WbY1Y4yDbN", "indices": [ 0, 22 ], "expanded_url": "http://www.epochtimes.de", "display_url": "epochtimes.de" } ] }, "description": { "urls": [] } }, "followers_count": 295, "profile_sidebar_border_color": "000000", "id_str": "223630412", "profile_background_color": "C0DEED", "listed_count": 120, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 339153, "description": "lässt hier China-News einlaufen", "friends_count": 153, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1220773654/img_0164-small_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/223630412/1363539081", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "wangadir", "lang": "de", "profile_background_tile": false, "favourites_count": 6, "name": "Erich Bachmann", "notifications": false, "url": "http://t.co/WbY1Y4yDbN", "created_at": "Mon Dec 06 22:34:19 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @PaulbernalUK: This, from @zeynep, linking net neutrality and a ‘free’ internet with #Ferguson, is outstanding. https://t.co/vmOa8qyNpy", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064214211870720, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 15082486, "indices": [ 3, 16 ], "id_str": "15082486", "screen_name": "PaulbernalUK", "name": "Paul Bernal" }, { "id": 65375759, "indices": [ 29, 36 ], "id_str": "65375759", "screen_name": "zeynep", "name": "Zeynep Tufekci" } ], "hashtags": [ { "indices": [ 88, 97 ], "text": "Ferguson" } ], "urls": [ { "url": "https://t.co/vmOa8qyNpy", "indices": [ 115, 138 ], "expanded_url": "https://medium.com/message/ferguson-is-also-a-net-neutrality-issue-6d2f3db51eb0", "display_url": "medium.com/message/fergus…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501064214211870720", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "This, from @zeynep, linking net neutrality and a ‘free’ internet with #Ferguson, is outstanding. https://t.co/vmOa8qyNpy", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063461989007360, "favorite_count": 13, "source": "OS X", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 65375759, "indices": [ 11, 18 ], "id_str": "65375759", "screen_name": "zeynep", "name": "Zeynep Tufekci" } ], "hashtags": [ { "indices": [ 70, 79 ], "text": "Ferguson" } ], "urls": [ { "url": "https://t.co/vmOa8qyNpy", "indices": [ 97, 120 ], "expanded_url": "https://medium.com/message/ferguson-is-also-a-net-neutrality-issue-6d2f3db51eb0", "display_url": "medium.com/message/fergus…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "501063461989007360", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 15082486, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000726921533/0b2bebf1b649e8173cb55c1e5bcb7fb2_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/drqmU7uinM", "indices": [ 0, 23 ], "expanded_url": "http://paulbernal.wordpress.com/", "display_url": "paulbernal.wordpress.com" } ] }, "description": { "urls": [] } }, "followers_count": 13649, "profile_sidebar_border_color": "C0DEED", "id_str": "15082486", "profile_background_color": "C0DEED", "listed_count": 608, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 213914, "description": "UEA Law Lecturer: privacy & human rights… author of 'Internet Privacy Rights'... politics, satire, even poetry at times. Normally naive. Generally ignorant.", "friends_count": 10129, "location": "Cambridge and Norwich", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000726921533/0b2bebf1b649e8173cb55c1e5bcb7fb2_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15082486/1398332203", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "PaulbernalUK", "lang": "en", "profile_background_tile": false, "favourites_count": 120, "name": "Paul Bernal", "notifications": false, "url": "https://t.co/drqmU7uinM", "created_at": "Wed Jun 11 06:55:58 +0000 2008", "contributors_enabled": false, "time_zone": "London", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:50:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 82658160, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/889167924/6e05a48d548fcc6a2ebda6658d7ea447.jpeg", "verified": false, "profile_text_color": "2280A9", "profile_image_url_https": "https://pbs.twimg.com/profile_images/649052181862084612/CEocHGH0_normal.png", "profile_sidebar_fill_color": "020812", "entities": { "description": { "urls": [] } }, "followers_count": 472, "profile_sidebar_border_color": "2280A9", "id_str": "82658160", "profile_background_color": "020812", "listed_count": 17, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 26316, "description": "A hodge-podge of contradictions all bundled up into one fiesty little package.", "friends_count": 666, "location": "Elk Grove, CA", "profile_link_color": "17406C", "profile_image_url": "http://pbs.twimg.com/profile_images/649052181862084612/CEocHGH0_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/82658160/1428733846", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/889167924/6e05a48d548fcc6a2ebda6658d7ea447.jpeg", "screen_name": "rvan73", "lang": "en", "profile_background_tile": false, "favourites_count": 42791, "name": "TheatreKid", "notifications": false, "url": null, "created_at": "Thu Oct 15 16:46:12 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Missouri Governor Imposes Midnight Curfew in Ferguson http://t.co/8iFzMZ7knh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064214467731457, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/8iFzMZ7knh", "indices": [ 54, 76 ], "expanded_url": "http://wp.me/p4Rl2x-4NS", "display_url": "wp.me/p4Rl2x-4NS" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064214467731457", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "Олег Славин", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:12 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @scottbix: Ferguson police officers beat this man – then charged him for getting blood on their uniforms http://t.co/QqHqAVuxuz http://t…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064215160172545, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 148116121, "indices": [ 3, 12 ], "id_str": "148116121", "screen_name": "scottbix", "name": "Scott Bixby" } ], "hashtags": [], "urls": [ { "url": "http://t.co/QqHqAVuxuz", "indices": [ 108, 130 ], "expanded_url": "http://thebea.st/1l8uDRK", "display_url": "thebea.st/1l8uDRK" } ], "media": [ { "source_user_id": 148116121, "source_status_id_str": "500311689544208385", "expanded_url": "http://twitter.com/scottbix/status/500311689544208385/photo/1", "display_url": "pic.twitter.com/jpwEQOceLQ", "url": "http://t.co/jpwEQOceLQ", "media_url_https": "https://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg", "source_user_id_str": "148116121", "source_status_id": 500311689544208385, "id_str": "500311688764080129", "sizes": { "large": { "h": 500, "resize": "fit", "w": 800 }, "small": { "h": 213, "resize": "fit", "w": 340 }, "medium": { "h": 375, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 500311688764080129, "media_url": "http://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13559, "id_str": "501064215160172545", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Ferguson police officers beat this man – then charged him for getting blood on their uniforms http://t.co/QqHqAVuxuz http://t.co/jpwEQOceLQ", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500311689544208385, "favorite_count": 4927, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/QqHqAVuxuz", "indices": [ 94, 116 ], "expanded_url": "http://thebea.st/1l8uDRK", "display_url": "thebea.st/1l8uDRK" } ], "media": [ { "expanded_url": "http://twitter.com/scottbix/status/500311689544208385/photo/1", "display_url": "pic.twitter.com/jpwEQOceLQ", "url": "http://t.co/jpwEQOceLQ", "media_url_https": "https://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg", "id_str": "500311688764080129", "sizes": { "large": { "h": 500, "resize": "fit", "w": 800 }, "small": { "h": 213, "resize": "fit", "w": 340 }, "medium": { "h": 375, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 117, 139 ], "type": "photo", "id": 500311688764080129, "media_url": "http://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13559, "id_str": "500311689544208385", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 148116121, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466672362264358912/F4wovF9d.jpeg", "verified": true, "profile_text_color": "17406C", "profile_image_url_https": "https://pbs.twimg.com/profile_images/671504247746260992/8NcwPFLx_normal.jpg", "profile_sidebar_fill_color": "020812", "entities": { "url": { "urls": [ { "url": "https://t.co/5XNFqVwoku", "indices": [ 0, 23 ], "expanded_url": "https://instagram.com/scottbix", "display_url": "instagram.com/scottbix" } ] }, "description": { "urls": [] } }, "followers_count": 14850, "profile_sidebar_border_color": "FFFFFF", "id_str": "148116121", "profile_background_color": "000000", "listed_count": 488, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 29020, "description": "National Reporter, the Guardian. Nerd King of Nerd Mountain.", "friends_count": 666, "location": "New York", "profile_link_color": "2FC2EF", "profile_image_url": "http://pbs.twimg.com/profile_images/671504247746260992/8NcwPFLx_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/148116121/1425919103", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466672362264358912/F4wovF9d.jpeg", "screen_name": "scottbix", "lang": "en", "profile_background_tile": false, "favourites_count": 4864, "name": "Scott Bixby", "notifications": false, "url": "https://t.co/5XNFqVwoku", "created_at": "Tue May 25 22:01:27 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Fri Aug 15 16:02:56 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/scottbix/status/500311689544208385/photo/1", "display_url": "pic.twitter.com/jpwEQOceLQ", "url": "http://t.co/jpwEQOceLQ", "media_url_https": "https://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg", "id_str": "500311688764080129", "sizes": { "large": { "h": 500, "resize": "fit", "w": 800 }, "small": { "h": 213, "resize": "fit", "w": 340 }, "medium": { "h": 375, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 117, 139 ], "type": "photo", "id": 500311688764080129, "media_url": "http://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 1653718716, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/504285035667525633/kna9jhfJ.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/717770160849993729/0pbVPMlN_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 315, "profile_sidebar_border_color": "FFFFFF", "id_str": "1653718716", "profile_background_color": "FFF04D", "listed_count": 13, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 24185, "description": "SoundsLikeAPersonalProblem \n\nHoly Ghost Champagne//\nLinzemi", "friends_count": 163, "location": "East Ham, London", "profile_link_color": "6DC0DB", "profile_image_url": "http://pbs.twimg.com/profile_images/717770160849993729/0pbVPMlN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1653718716/1459766676", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/504285035667525633/kna9jhfJ.jpeg", "screen_name": "OAnnie8", "lang": "en", "profile_background_tile": true, "favourites_count": 3616, "name": "I know not what 2 do", "notifications": false, "url": null, "created_at": "Wed Aug 07 19:54:39 +0000 2013", "contributors_enabled": false, "time_zone": "London", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 148116121, "source_status_id_str": "500311689544208385", "expanded_url": "http://twitter.com/scottbix/status/500311689544208385/photo/1", "display_url": "pic.twitter.com/jpwEQOceLQ", "url": "http://t.co/jpwEQOceLQ", "media_url_https": "https://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg", "source_user_id_str": "148116121", "source_status_id": 500311689544208385, "id_str": "500311688764080129", "sizes": { "large": { "h": 500, "resize": "fit", "w": 800 }, "small": { "h": 213, "resize": "fit", "w": 340 }, "medium": { "h": 375, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 500311688764080129, "media_url": "http://pbs.twimg.com/media/BvF21IXCQAE9lyP.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "‘Am I Next?': Ferguson’s Protests Through the Eyes of a Teenager http://t.co/GwBbBKeJwx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064215759568897, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/GwBbBKeJwx", "indices": [ 65, 87 ], "expanded_url": "http://wp.me/p4Rl2x-4NN", "display_url": "wp.me/p4Rl2x-4NN" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064215759568897", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "Олег Славин", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @NateParker: \"Freedom is never voluntarily given by the oppressor; it must be demanded by the oppressed.\" #MLK #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064215990648832, "favorite_count": 0, "source": "Twitter for Windows Phone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 111384708, "indices": [ 3, 14 ], "id_str": "111384708", "screen_name": "NateParker", "name": "Nate Parker" } ], "hashtags": [ { "indices": [ 109, 113 ], "text": "MLK" }, { "indices": [ 114, 123 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 34, "id_str": "501064215990648832", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "\"Freedom is never voluntarily given by the oppressor; it must be demanded by the oppressed.\" #MLK #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062629910401024, "favorite_count": 32, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 93, 97 ], "text": "MLK" }, { "indices": [ 98, 107 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 34, "id_str": "501062629910401024", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 111384708, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/684053670/ddd839f6c5cd30b9c0030cb838af678a.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2392585238/image_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/vlxiBNNghn", "indices": [ 0, 22 ], "expanded_url": "http://www.imdb.com/name/nm1676649/", "display_url": "imdb.com/name/nm1676649/" } ] }, "description": { "urls": [] } }, "followers_count": 34241, "profile_sidebar_border_color": "000000", "id_str": "111384708", "profile_background_color": "000000", "listed_count": 270, "is_translation_enabled": false, "utc_offset": -36000, "statuses_count": 1860, "description": "Activist, Filmmaker We are the leaders we've been waiting for... let's get to work!", "friends_count": 180, "location": "Los Angeles", "profile_link_color": "000000", "profile_image_url": "http://pbs.twimg.com/profile_images/2392585238/image_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/684053670/ddd839f6c5cd30b9c0030cb838af678a.jpeg", "screen_name": "NateParker", "lang": "en", "profile_background_tile": false, "favourites_count": 23, "name": "Nate Parker", "notifications": false, "url": "http://t.co/vlxiBNNghn", "created_at": "Thu Feb 04 18:53:15 +0000 2010", "contributors_enabled": false, "time_zone": "Hawaii", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:46:54 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 32537879, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/818409244/a7f4e45fc4961373d8b0cae60d869297.jpeg", "verified": false, "profile_text_color": "E82121", "profile_image_url_https": "https://pbs.twimg.com/profile_images/691873476479705088/1f0RKMyc_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": { "description": { "urls": [] } }, "followers_count": 199, "profile_sidebar_border_color": "FFFFFF", "id_str": "32537879", "profile_background_color": "344AA1", "listed_count": 7, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 5729, "description": "IN GOD I TRUST! WonderWomanMind means I CAN DO ANYTING. I LIVE TO WRITE. I Love football and I am a Chicago Bears /Los Angeles Lakers Fan.", "friends_count": 835, "location": "Chicago, IL", "profile_link_color": "EB0909", "profile_image_url": "http://pbs.twimg.com/profile_images/691873476479705088/1f0RKMyc_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/32537879/1439188603", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/818409244/a7f4e45fc4961373d8b0cae60d869297.jpeg", "screen_name": "WonderWomanMind", "lang": "en", "profile_background_tile": true, "favourites_count": 3815, "name": "Alexis Hudson", "notifications": false, "url": null, "created_at": "Fri Apr 17 19:39:56 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @dierdrelewis: Curfew in #Ferguson will be in place for second night, volunteers provide lunch: http://t.co/ExTufgiaF9 via @STLtoday @Op…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064216241897472, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 51330975, "indices": [ 3, 16 ], "id_str": "51330975", "screen_name": "dierdrelewis", "name": "Trayvon Martin" }, { "id": 6039302, "indices": [ 126, 135 ], "id_str": "6039302", "screen_name": "stltoday", "name": "STLtoday" }, { "id": 2721777926, "indices": [ 136, 140 ], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson" } ], "hashtags": [ { "indices": [ 28, 37 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/ExTufgiaF9", "indices": [ 99, 121 ], "expanded_url": "http://ln.is/bit.ly/PmN6m", "display_url": "ln.is/bit.ly/PmN6m" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 6, "id_str": "501064216241897472", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Curfew in #Ferguson will be in place for second night, volunteers provide lunch: http://t.co/ExTufgiaF9 via @STLtoday @Opferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062270072672256, "favorite_count": 2, "source": "Linkis.com", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 6039302, "indices": [ 108, 117 ], "id_str": "6039302", "screen_name": "stltoday", "name": "STLtoday" }, { "id": 2721777926, "indices": [ 118, 129 ], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson" } ], "hashtags": [ { "indices": [ 10, 19 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/ExTufgiaF9", "indices": [ 81, 103 ], "expanded_url": "http://ln.is/bit.ly/PmN6m", "display_url": "ln.is/bit.ly/PmN6m" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 6, "id_str": "501062270072672256", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 51330975, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "verified": false, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/526618256375689216/0BMLlFNS_normal.png", "profile_sidebar_fill_color": "95E8EC", "entities": { "url": { "urls": [ { "url": "http://t.co/VCb7i3Lh9T", "indices": [ 0, 22 ], "expanded_url": "http://trayvonmartinfoundation.org", "display_url": "trayvonmartinfoundation.org" } ] }, "description": { "urls": [ { "url": "http://t.co/lkAAfk2rH5", "indices": [ 23, 45 ], "expanded_url": "http://trayvonmartinfoundation.org", "display_url": "trayvonmartinfoundation.org" } ] } }, "followers_count": 6785, "profile_sidebar_border_color": "5ED4DC", "id_str": "51330975", "profile_background_color": "0099B9", "listed_count": 302, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 140349, "description": "The Official Website | http://t.co/lkAAfk2rH5 |\r\nThe Trayvon Martin Foundation c/o The Miami Foundation 200 S Biscayne Boulevard Ste 505 Miami, FL 33131", "friends_count": 4943, "location": "", "profile_link_color": "0099B9", "profile_image_url": "http://pbs.twimg.com/profile_images/526618256375689216/0BMLlFNS_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/51330975/1398785602", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "screen_name": "dierdrelewis", "lang": "en", "profile_background_tile": false, "favourites_count": 2472, "name": "Trayvon Martin", "notifications": false, "url": "http://t.co/VCb7i3Lh9T", "created_at": "Sat Jun 27 03:24:34 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:45:29 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 43053129, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/521566121875357696/KJZAbmg7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 1400, "profile_sidebar_border_color": "C0DEED", "id_str": "43053129", "profile_background_color": "C0DEED", "listed_count": 128, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 49249, "description": "CA liberal.EQUAL RIGHTS for all.War&factory farming=Bleh! College Degree/Pyschology &Child Dev. Sect'y International Foot Care Alliance Corp.Board of Directors", "friends_count": 3682, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/521566121875357696/KJZAbmg7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/43053129/1401256333", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "slytwain", "lang": "en", "profile_background_tile": false, "favourites_count": 11864, "name": "Sylvee Shay", "notifications": false, "url": null, "created_at": "Thu May 28 05:16:27 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Justice Department Orders Second Autopsy of Michael Brown, Missouri Gov. Criticizes Ferguson PD: U.S. Attorney... http://t.co/Yk9fbpbe5F", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064216522932227, "favorite_count": 0, "source": "twitterfeed", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/Yk9fbpbe5F", "indices": [ 114, 136 ], "expanded_url": "http://on.mash.to/1pttofi", "display_url": "on.mash.to/1pttofi" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064216522932227", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 297137496, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3672573851/35e5a6b9fe6a7946a62790164cea1797_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/ZbSDKsIPVN", "indices": [ 0, 22 ], "expanded_url": "http://motionmini.com", "display_url": "motionmini.com" } ] }, "description": { "urls": [] } }, "followers_count": 3345, "profile_sidebar_border_color": "C0DEED", "id_str": "297137496", "profile_background_color": "C0DEED", "listed_count": 21, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 6549, "description": "Founder & CEO of Motion Mini, Inc.", "friends_count": 70, "location": "Boston, MA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3672573851/35e5a6b9fe6a7946a62790164cea1797_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/297137496/1384417068", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "MazenAlkhamis", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Mazen Alkhamis", "notifications": false, "url": "http://t.co/ZbSDKsIPVN", "created_at": "Thu May 12 00:36:33 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @kilmacolm1: Council has arranged for Port Glasgow Town Hall to be available tomorrow for the Ferguson workforce to meet if they can't m…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064216930160640, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501064216930160640", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Council has arranged for Port Glasgow Town Hall to be available tomorrow for the Ferguson workforce to meet if they can't meet in the yard.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062344311853056, "favorite_count": 3, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501062344311853056", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 289038576, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/612331623477059584/2wm98Lfl_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/AuFvPp0f3U", "indices": [ 0, 22 ], "expanded_url": "http://councillorstephenmccabe.blogspot.com/", "display_url": "councillorstephenmccabe.blogspot.com" } ] }, "description": { "urls": [] } }, "followers_count": 2457, "profile_sidebar_border_color": "C0DEED", "id_str": "289038576", "profile_background_color": "C0DEED", "listed_count": 73, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 88381, "description": "Labour Councillor representing Port Glasgow, Kilmacolm and Quarrier's Village. Leader of Inverclyde Council Labour Group. Proud to be Scottish and British.", "friends_count": 1595, "location": "Kilmacolm", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/612331623477059584/2wm98Lfl_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "CllrSMcCabe", "lang": "en", "profile_background_tile": false, "favourites_count": 41963, "name": "Stephen McCabe", "notifications": false, "url": "http://t.co/AuFvPp0f3U", "created_at": "Wed Apr 27 22:26:41 +0000 2011", "contributors_enabled": false, "time_zone": "London", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:45:46 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 559857235, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/702658276207566848/FqBa3QiE_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 1230, "profile_sidebar_border_color": "C0DEED", "id_str": "559857235", "profile_background_color": "C0DEED", "listed_count": 27, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 13316, "description": "Labour Councillor for Kilpatrick Ward on West Dunbartonshire Council, married & father. Convenor of Planning & Licensing RT's my own views", "friends_count": 1732, "location": "Hardgate, Clydebank", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/702658276207566848/FqBa3QiE_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/559857235/1432075741", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "LawryONeill", "lang": "en", "profile_background_tile": false, "favourites_count": 8055, "name": "Lawrence O'Neill", "notifications": false, "url": null, "created_at": "Sat Apr 21 20:44:58 +0000 2012", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @ABC: Missouri governor \"thunderstruck\" by images of Ferguson police: http://t.co/XZGZjym9R6", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064217667960832, "favorite_count": 0, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 28785486, "indices": [ 3, 7 ], "id_str": "28785486", "screen_name": "ABC", "name": "ABC News" } ], "hashtags": [], "urls": [ { "url": "http://t.co/XZGZjym9R6", "indices": [ 73, 95 ], "expanded_url": "http://abcn.ws/1rJhBIo", "display_url": "abcn.ws/1rJhBIo" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 60, "id_str": "501064217667960832", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Missouri governor \"thunderstruck\" by images of Ferguson police: http://t.co/XZGZjym9R6", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501056127061078016, "favorite_count": 38, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/XZGZjym9R6", "indices": [ 64, 86 ], "expanded_url": "http://abcn.ws/1rJhBIo", "display_url": "abcn.ws/1rJhBIo" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 60, "id_str": "501056127061078016", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 28785486, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441965491024719872/pAv-lzCZ.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/658688193651277824/Kv_cNNub_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/v7GWW7ho1l", "indices": [ 0, 23 ], "expanded_url": "http://ABCNews.com", "display_url": "ABCNews.com" } ] }, "description": { "urls": [ { "url": "https://t.co/ewMNZ54axm", "indices": [ 59, 82 ], "expanded_url": "https://www.facebook.com/abcnews", "display_url": "facebook.com/abcnews" } ] } }, "followers_count": 5984023, "profile_sidebar_border_color": "FFFFFF", "id_str": "28785486", "profile_background_color": "6E8EB5", "listed_count": 42717, "is_translation_enabled": true, "utc_offset": -14400, "statuses_count": 131172, "description": "See the whole picture with @ABC News. Join us on Facebook: https://t.co/ewMNZ54axm", "friends_count": 901, "location": "New York City / Worldwide", "profile_link_color": "336699", "profile_image_url": "http://pbs.twimg.com/profile_images/658688193651277824/Kv_cNNub_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/28785486/1437184265", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441965491024719872/pAv-lzCZ.jpeg", "screen_name": "ABC", "lang": "en", "profile_background_tile": false, "favourites_count": 494, "name": "ABC News", "notifications": false, "url": "https://t.co/v7GWW7ho1l", "created_at": "Sat Apr 04 12:40:32 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:21:04 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2369225023, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/440193666049507328/P1TxbMb8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/l5smiuH8vc", "indices": [ 0, 23 ], "expanded_url": "http://facebook.com/carlafaithskog", "display_url": "facebook.com/carlafaithskog" } ] }, "description": { "urls": [] } }, "followers_count": 10816, "profile_sidebar_border_color": "C0DEED", "id_str": "2369225023", "profile_background_color": "C0DEED", "listed_count": 179, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 12315, "description": "A proud nurse and mother hoping to touch someone's life in a positive way!", "friends_count": 7874, "location": "Alberta, Canada", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/440193666049507328/P1TxbMb8_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2369225023/1422627748", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SkogCarla", "lang": "en", "profile_background_tile": false, "favourites_count": 2029, "name": "Carla Skog", "notifications": false, "url": "https://t.co/l5smiuH8vc", "created_at": "Sun Mar 02 18:12:10 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @rhm1947: En fotos: \"Zona de guerra\" en Ferguson por asesinato de joven afroamericano Mike Brown http://t.co/2ukQOxh8xE", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064218343661568, "favorite_count": 0, "source": "Twitter for BlackBerry®", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 108505438, "indices": [ 3, 11 ], "id_str": "108505438", "screen_name": "rhm1947", "name": "Roberto Hernández M." } ], "hashtags": [], "urls": [ { "url": "http://t.co/2ukQOxh8xE", "indices": [ 100, 122 ], "expanded_url": "http://www.librered.net/?p=34735", "display_url": "librered.net/?p=34735" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 63, "id_str": "501064218343661568", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "En fotos: \"Zona de guerra\" en Ferguson por asesinato de joven afroamericano Mike Brown http://t.co/2ukQOxh8xE", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500959245529907203, "favorite_count": 3, "source": "Twitter for Websites", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/2ukQOxh8xE", "indices": [ 87, 109 ], "expanded_url": "http://www.librered.net/?p=34735", "display_url": "librered.net/?p=34735" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 63, "id_str": "500959245529907203", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 108505438, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1136691851/L1180437_normal.JPG", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 271319, "profile_sidebar_border_color": "C0DEED", "id_str": "108505438", "profile_background_color": "C0DEED", "listed_count": 1199, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 205964, "description": "", "friends_count": 1401, "location": "Venezuela", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1136691851/L1180437_normal.JPG", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "rhm1947", "lang": "es", "profile_background_tile": false, "favourites_count": 13463, "name": "Roberto Hernández M.", "notifications": false, "url": null, "created_at": "Tue Jan 26 04:16:40 +0000 2010", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 10:56:06 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 109472069, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/825417240/3fb7b7436b9e2c0a545bdfa72484a1de.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3566293427/b75d710aefbc8b77e362dda9aa778ddf_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 2229, "profile_sidebar_border_color": "FFFFFF", "id_str": "109472069", "profile_background_color": "C0DEED", "listed_count": 3, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 16447, "description": "Abogado, Socialista, humanista, ANTIIMPERIALISTA y CHAVISTA!! Asesorías Jurídicas BB Pin -- 2292DB92", "friends_count": 2496, "location": "Maracaibo Edo. Zulia", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3566293427/b75d710aefbc8b77e362dda9aa778ddf_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/109472069/1365279322", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/825417240/3fb7b7436b9e2c0a545bdfa72484a1de.jpeg", "screen_name": "JoseRamiroabreu", "lang": "es", "profile_background_tile": true, "favourites_count": 653, "name": "Jose Ramiro Abreu", "notifications": false, "url": null, "created_at": "Fri Jan 29 04:40:22 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @Rajaiabukhalil: #Ferguson should be an awakening point to Americans. A reminder that opression is everywhere in the world & their gover…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064219467341824, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 250580585, "indices": [ 3, 18 ], "id_str": "250580585", "screen_name": "Rajaiabukhalil", "name": "Rajai Abukhalil" } ], "hashtags": [ { "indices": [ 20, 29 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 68, "id_str": "501064219467341824", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "#Ferguson should be an awakening point to Americans. A reminder that opression is everywhere in the world & their government is part of it.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501058322682761217, "favorite_count": 44, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 0, 9 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 68, "id_str": "501058322682761217", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 250580585, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/556517017/317473_10150341075223249_21259948248_7946232_248184601_n.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/619671046665297920/NwrFzp54_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/t8RYQX9v34", "indices": [ 0, 22 ], "expanded_url": "http://www.rajaiabukhalil.wordpress.com/", "display_url": "rajaiabukhalil.wordpress.com" } ] }, "description": { "urls": [] } }, "followers_count": 3766, "profile_sidebar_border_color": "C0DEED", "id_str": "250580585", "profile_background_color": "C0DEED", "listed_count": 171, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 7776, "description": "‏‏‏إحمل بلادك اينما ذهبت، وكن نرجسياً اذا لزِم الأمر Palestinian Doctor & Activist. Co-founder of Physicians for Palestine\r\nRajaiabukhalil@gmail.com", "friends_count": 273, "location": "Jerusalem, Falasteen - Berlin ", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/619671046665297920/NwrFzp54_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/250580585/1353179670", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/556517017/317473_10150341075223249_21259948248_7946232_248184601_n.jpg", "screen_name": "Rajaiabukhalil", "lang": "en", "profile_background_tile": true, "favourites_count": 1863, "name": "Rajai Abukhalil", "notifications": false, "url": "http://t.co/t8RYQX9v34", "created_at": "Fri Feb 11 11:24:43 +0000 2011", "contributors_enabled": false, "time_zone": "Jerusalem", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:29:48 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 246672896, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/736547811/b543e6dc2e0014dbb57b455a5a158693.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/643844837926637568/1GVSe-GP_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/57VXAxNDZl", "indices": [ 0, 22 ], "expanded_url": "http://www.TheLionessPurrs.com", "display_url": "TheLionessPurrs.com" } ] }, "description": { "urls": [] } }, "followers_count": 225, "profile_sidebar_border_color": "FFFFFF", "id_str": "246672896", "profile_background_color": "C0DEED", "listed_count": 6, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 21886, "description": "I'm just an innocent little pussy cat after all. Peace, Love, and Orgasms. *purrs*", "friends_count": 215, "location": "Orgasmic State", "profile_link_color": "D07A7B", "profile_image_url": "http://pbs.twimg.com/profile_images/643844837926637568/1GVSe-GP_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/246672896/1355642500", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/736547811/b543e6dc2e0014dbb57b455a5a158693.jpeg", "screen_name": "MistyPrest", "lang": "en", "profile_background_tile": true, "favourites_count": 2701, "name": "Lye N. Ess", "notifications": false, "url": "http://t.co/57VXAxNDZl", "created_at": "Thu Feb 03 07:10:59 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:13 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @Maxamegalon2000: .@Twitter Co-Founder Marches With Protesters In #Ferguson http://t.co/fB2D6NkYc0", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064219677044738, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 14165481, "indices": [ 3, 19 ], "id_str": "14165481", "screen_name": "Maxamegalon2000", "name": "Maxamegalon2000" }, { "id": 783214, "indices": [ 22, 30 ], "id_str": "783214", "screen_name": "twitter", "name": "Twitter" } ], "hashtags": [ { "indices": [ 69, 78 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/fB2D6NkYc0", "indices": [ 79, 101 ], "expanded_url": "http://bit.ly/1pti7M5", "display_url": "bit.ly/1pti7M5" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501064219677044738", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": ".@Twitter Co-Founder Marches With Protesters In #Ferguson http://t.co/fB2D6NkYc0", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063925988077568, "favorite_count": 3, "source": "Buffer", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 783214, "indices": [ 1, 9 ], "id_str": "783214", "screen_name": "twitter", "name": "Twitter" } ], "hashtags": [ { "indices": [ 48, 57 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/fB2D6NkYc0", "indices": [ 58, 80 ], "expanded_url": "http://bit.ly/1pti7M5", "display_url": "bit.ly/1pti7M5" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501063925988077568", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 14165481, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478000166654332928/0pKC5DDp_normal.jpeg", "profile_sidebar_fill_color": "FFCC00", "entities": { "url": { "urls": [ { "url": "https://t.co/G0qdo2qV0G", "indices": [ 0, 23 ], "expanded_url": "http://www.kuchlercotton.com/?service=jeffrey-szczewski", "display_url": "kuchlercotton.com/?service=jeffr…" } ] }, "description": { "urls": [] } }, "followers_count": 553, "profile_sidebar_border_color": "000000", "id_str": "14165481", "profile_background_color": "003366", "listed_count": 66, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 84270, "description": "I'm a criminal defense attorney at @KuchlerCottonSC, but unless I've told you as much, I'm not your attorney. Retweets are not endorsements; neither are tweets.", "friends_count": 732, "location": "Milwaukee, WI", "profile_link_color": "A18100", "profile_image_url": "http://pbs.twimg.com/profile_images/478000166654332928/0pKC5DDp_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14165481/1385403800", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Maxamegalon2000", "lang": "en", "profile_background_tile": false, "favourites_count": 2, "name": "Maxamegalon2000", "notifications": false, "url": "https://t.co/G0qdo2qV0G", "created_at": "Mon Mar 17 20:05:37 +0000 2008", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:03 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 45640882, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692125644575117313/GZOsCO0n_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [ { "url": "https://t.co/oxoGGkehjJ", "indices": [ 113, 136 ], "expanded_url": "http://jadybates.com", "display_url": "jadybates.com" } ] } }, "followers_count": 435, "profile_sidebar_border_color": "C0DEED", "id_str": "45640882", "profile_background_color": "C0DEED", "listed_count": 34, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 7037, "description": "M.A. Conflict Resolution - THERE ARE WILD & BEAUTIFUL THINGS IN US. Entreprenuer. Photographer. #RipCity #RCTID {https://t.co/oxoGGkehjJ}", "friends_count": 735, "location": "Portland, OR", "profile_link_color": "71D3F7", "profile_image_url": "http://pbs.twimg.com/profile_images/692125644575117313/GZOsCO0n_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/45640882/1463706470", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "jadybates", "lang": "en", "profile_background_tile": false, "favourites_count": 18576, "name": "Jady Bates", "notifications": false, "url": null, "created_at": "Mon Jun 08 19:03:28 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Ferguson Protestors Mark a Week Since Brown Shooting http://t.co/gj4LII7De2", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064220121632768, "favorite_count": 0, "source": "WordPress.com", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/gj4LII7De2", "indices": [ 53, 75 ], "expanded_url": "http://wp.me/p4Rl2x-4NX", "display_url": "wp.me/p4Rl2x-4NX" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064220121632768", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2569107372, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 35, "profile_sidebar_border_color": "C0DEED", "id_str": "2569107372", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 35975, "description": "", "friends_count": 132, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/478744247361740800/FMIJcsd7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2569107372/1402976509", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SlavinOleg", "lang": "tr", "profile_background_tile": false, "favourites_count": 7, "name": "Олег Славин", "notifications": false, "url": null, "created_at": "Sun Jun 15 14:33:41 +0000 2014", "contributors_enabled": false, "time_zone": "Arizona", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @JoyAnnReid: Please don't come to my thread to attack the shooting victim in the Ferguson case. You will be blocked on sight. Thanks.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064220415229953, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 49698134, "indices": [ 3, 14 ], "id_str": "49698134", "screen_name": "JoyAnnReid", "name": "Joy Reid" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 149, "id_str": "501064220415229953", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Please don't come to my thread to attack the shooting victim in the Ferguson case. You will be blocked on sight. Thanks.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501061124499202049, "favorite_count": 269, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 149, "id_str": "501061124499202049", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 49698134, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/499193057632194561/wZ4JLf9-.jpeg", "verified": true, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/724471800835481600/q_zmM-S7_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": { "url": { "urls": [ { "url": "https://t.co/HJGTROqdlr", "indices": [ 0, 23 ], "expanded_url": "http://joyannreid.com/", "display_url": "joyannreid.com" } ] }, "description": { "urls": [] } }, "followers_count": 205114, "profile_sidebar_border_color": "000000", "id_str": "49698134", "profile_background_color": "1A1B1F", "listed_count": 3519, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 79291, "description": "Not for your candidate. Not for your candidate's opponent. Author of 'Fracture: Barack Obama, the Clintons, and the Racial Divide.' Love my #reiders!", "friends_count": 3151, "location": "NYC", "profile_link_color": "0042A6", "profile_image_url": "http://pbs.twimg.com/profile_images/724471800835481600/q_zmM-S7_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/49698134/1451878747", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/499193057632194561/wZ4JLf9-.jpeg", "screen_name": "JoyAnnReid", "lang": "en", "profile_background_tile": true, "favourites_count": 3718, "name": "Joy Reid", "notifications": false, "url": "https://t.co/HJGTROqdlr", "created_at": "Mon Jun 22 17:29:54 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:40:56 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 283857061, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/661502262284566528/_amYSlDL_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": { "description": { "urls": [] } }, "followers_count": 1579, "profile_sidebar_border_color": "829D5E", "id_str": "283857061", "profile_background_color": "352726", "listed_count": 38, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 236096, "description": "blacklivesmatter. don't question my tweets I'm random. my thoughts come in spurts.", "friends_count": 910, "location": "502", "profile_link_color": "D02B55", "profile_image_url": "http://pbs.twimg.com/profile_images/661502262284566528/_amYSlDL_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/283857061/1436461687", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "screen_name": "502kissababy", "lang": "en", "profile_background_tile": false, "favourites_count": 2914, "name": "golden girl", "notifications": false, "url": null, "created_at": "Mon Apr 18 04:42:26 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @AnaCabrera: The curfew for #Ferguson, Missouri will be in place again tonight from 12am through 5am CT Monday, according to Missouri S…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064222340423681, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 31565351, "indices": [ 3, 14 ], "id_str": "31565351", "screen_name": "AnaCabrera", "name": "Ana Cabrera" } ], "hashtags": [ { "indices": [ 31, 40 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 116, "id_str": "501064222340423681", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "The curfew for #Ferguson, Missouri will be in place again tonight from 12am through 5am CT Monday, according to Missouri State Hwy Patrol.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062655185276928, "favorite_count": 75, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 15, 24 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 116, "id_str": "501062655185276928", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 31565351, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/801784208/8118496d3b3e18b05b968ccb053bdfda.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000670838044/d6ac7616d4af77f128ca0bfe6201131e_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 16215, "profile_sidebar_border_color": "FFFFFF", "id_str": "31565351", "profile_background_color": "C0DEED", "listed_count": 360, "is_translation_enabled": false, "utc_offset": -21600, "statuses_count": 11475, "description": "CNN Correspondent, Mom, Wife, Runner, Traveler, Gardener, Dog lover, Skier, Aspiring Chef and Baker, Huge Denver Broncos Fan. RT ≠ endorsements.", "friends_count": 2853, "location": "Denver, CO", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000670838044/d6ac7616d4af77f128ca0bfe6201131e_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31565351/1366035013", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/801784208/8118496d3b3e18b05b968ccb053bdfda.jpeg", "screen_name": "AnaCabrera", "lang": "en", "profile_background_tile": false, "favourites_count": 5437, "name": "Ana Cabrera", "notifications": false, "url": null, "created_at": "Wed Apr 15 23:52:44 +0000 2009", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:47:00 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 339903277, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000730517632/56098ba65220108d0439b014da5fe6b2_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/oMcCix6iEb", "indices": [ 0, 23 ], "expanded_url": "http://www.marykay.com/kimallenmichael", "display_url": "marykay.com/kimallenmichael" } ] }, "description": { "urls": [] } }, "followers_count": 632, "profile_sidebar_border_color": "C0DEED", "id_str": "339903277", "profile_background_color": "C0DEED", "listed_count": 64, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 97612, "description": "News and relevant information with an occasional soap box!", "friends_count": 333, "location": "Orlando, FL", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000730517632/56098ba65220108d0439b014da5fe6b2_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "KimCheeMichael", "lang": "en", "profile_background_tile": false, "favourites_count": 47, "name": "KimAllen", "notifications": false, "url": "https://t.co/oMcCix6iEb", "created_at": "Thu Jul 21 21:01:09 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @allahpundit: Mark Steyn: Ferguson and the police http://t.co/0r0Y35QRsx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064222772445187, "favorite_count": 0, "source": "Talon (Classic)", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 19173787, "indices": [ 3, 15 ], "id_str": "19173787", "screen_name": "allahpundit", "name": "Allahpundit" } ], "hashtags": [], "urls": [ { "url": "http://t.co/0r0Y35QRsx", "indices": [ 53, 75 ], "expanded_url": "http://www.steynonline.com/6524/cigars-but-not-close", "display_url": "steynonline.com/6524/cigars-bu…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "501064222772445187", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Mark Steyn: Ferguson and the police http://t.co/0r0Y35QRsx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500993000864903169, "favorite_count": 2, "source": "Tweetbot for Mac", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/0r0Y35QRsx", "indices": [ 36, 58 ], "expanded_url": "http://www.steynonline.com/6524/cigars-but-not-close", "display_url": "steynonline.com/6524/cigars-bu…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "500993000864903169", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 19173787, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/517357865627971584/J9NgQV0T_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/96qZFWpg1h", "indices": [ 0, 23 ], "expanded_url": "http://hotair.com", "display_url": "hotair.com" } ] }, "description": { "urls": [] } }, "followers_count": 49103, "profile_sidebar_border_color": "C0DEED", "id_str": "19173787", "profile_background_color": "C0DEED", "listed_count": 2234, "is_translation_enabled": false, "utc_offset": 16200, "statuses_count": 104532, "description": "Who cares?", "friends_count": 263, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/517357865627971584/J9NgQV0T_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "allahpundit", "lang": "en", "profile_background_tile": false, "favourites_count": 3, "name": "Allahpundit", "notifications": false, "url": "https://t.co/96qZFWpg1h", "created_at": "Mon Jan 19 05:36:46 +0000 2009", "contributors_enabled": false, "time_zone": "Tehran", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 13:10:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 22668719, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/694515394/20b53a850232c9225593e6f575c8b852.jpeg", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/550971208087244801/zPOcHxkj_normal.png", "profile_sidebar_fill_color": "99CC33", "entities": { "url": { "urls": [ { "url": "http://t.co/T2axwEZQcf", "indices": [ 0, 22 ], "expanded_url": "http://furaffinity.net/user/meni/", "display_url": "furaffinity.net/user/meni/" } ] }, "description": { "urls": [] } }, "followers_count": 294, "profile_sidebar_border_color": "FFFFFF", "id_str": "22668719", "profile_background_color": "352726", "listed_count": 15, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 20347, "description": "A nocturnal hyena. INFJ. Wanderer, right of center, gay & enigma. Current interests: Cars, Books, Japanese, Hearthstone", "friends_count": 205, "location": "McAllen, TX", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/550971208087244801/zPOcHxkj_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/22668719/1431511997", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/694515394/20b53a850232c9225593e6f575c8b852.jpeg", "screen_name": "nodehyena", "lang": "en", "profile_background_tile": true, "favourites_count": 8876, "name": "node", "notifications": false, "url": "http://t.co/T2axwEZQcf", "created_at": "Tue Mar 03 19:57:45 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @rolandsmartin: Don't be shocked if the protesters in #Ferguson now target St. Louis County Prosecutor Bob McCulloch. His comments are r…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064222923440130, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 16116288, "indices": [ 3, 17 ], "id_str": "16116288", "screen_name": "rolandsmartin", "name": "rolandsmartin" } ], "hashtags": [ { "indices": [ 57, 66 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 65, "id_str": "501064222923440130", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Don't be shocked if the protesters in #Ferguson now target St. Louis County Prosecutor Bob McCulloch. His comments are reprehensible.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500264419176513536, "favorite_count": 43, "source": "Facebook", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 38, 47 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 65, "id_str": "500264419176513536", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 16116288, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/643374815630331904/aqsjFemx.jpg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/651685222929592320/PaMC5Fya_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/cqNjiUZLX2", "indices": [ 0, 22 ], "expanded_url": "http://www.rolandsmartin.com/blog", "display_url": "rolandsmartin.com/blog" } ] }, "description": { "urls": [] } }, "followers_count": 384866, "profile_sidebar_border_color": "000000", "id_str": "16116288", "profile_background_color": "000000", "listed_count": 4269, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 263574, "description": "Host/managing editor of TV One's daily morning show, NewsOne Now; senior analyst, Tom Joyner Morning Show; author; international speaker; CEO, Nu Vision Media", "friends_count": 2382, "location": "Washington, D.C.", "profile_link_color": "D6000B", "profile_image_url": "http://pbs.twimg.com/profile_images/651685222929592320/PaMC5Fya_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16116288/1442227754", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/643374815630331904/aqsjFemx.jpg", "screen_name": "rolandsmartin", "lang": "en", "profile_background_tile": false, "favourites_count": 684, "name": "rolandsmartin", "notifications": false, "url": "http://t.co/cqNjiUZLX2", "created_at": "Wed Sep 03 17:35:09 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Fri Aug 15 12:55:06 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 122450450, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme11/bg.gif", "verified": false, "profile_text_color": "362720", "profile_image_url_https": "https://pbs.twimg.com/profile_images/459362983580147712/sV3CjBWH_normal.jpeg", "profile_sidebar_fill_color": "E5507E", "entities": { "description": { "urls": [] } }, "followers_count": 95, "profile_sidebar_border_color": "CC3366", "id_str": "122450450", "profile_background_color": "FF6699", "listed_count": 3, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 3820, "description": "Gladiator, Devil Dog, Hell Cat & Assassin....against all things oppressive!", "friends_count": 700, "location": "So $aint Louis!", "profile_link_color": "B40B43", "profile_image_url": "http://pbs.twimg.com/profile_images/459362983580147712/sV3CjBWH_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/122450450/1398355643", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme11/bg.gif", "screen_name": "MsKita4", "lang": "en", "profile_background_tile": true, "favourites_count": 638, "name": "Ms. Kita", "notifications": false, "url": null, "created_at": "Fri Mar 12 19:11:38 +0000 2010", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @MuhammadAnisah: I looked in the faces of those police. You could see the hate in their eyes, #Ferguson #Farrakhan #TheTroubledWorld #NO…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064224936714240, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1244379746, "indices": [ 3, 18 ], "id_str": "1244379746", "screen_name": "MuhammadAnisah", "name": "Anisah Muhammad" } ], "hashtags": [ { "indices": [ 97, 106 ], "text": "Ferguson" }, { "indices": [ 107, 117 ], "text": "Farrakhan" }, { "indices": [ 118, 135 ], "text": "TheTroubledWorld" }, { "indices": [ 136, 140 ], "text": "NOISundays" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501064224936714240", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "I looked in the faces of those police. You could see the hate in their eyes, #Ferguson #Farrakhan #TheTroubledWorld #NOISundays", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062577552904193, "favorite_count": 3, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 77, 86 ], "text": "Ferguson" }, { "indices": [ 87, 97 ], "text": "Farrakhan" }, { "indices": [ 98, 115 ], "text": "TheTroubledWorld" }, { "indices": [ 116, 127 ], "text": "NOISundays" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 4, "id_str": "501062577552904193", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1244379746, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000180278138/3I1R9iq0.jpeg", "verified": false, "profile_text_color": "00AEFF", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734549612556476417/4n-OGP1R_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": { "url": { "urls": [ { "url": "http://t.co/W8PBAKtxLg", "indices": [ 0, 22 ], "expanded_url": "http://original7.wordpress.com", "display_url": "original7.wordpress.com" } ] }, "description": { "urls": [ { "url": "https://t.co/mTAg8cBd6y", "indices": [ 89, 112 ], "expanded_url": "http://www.amazon.com/Escaping-Chains-Collection-published-Newspaper/dp/1507671318", "display_url": "amazon.com/Escaping-Chain…" } ] } }, "followers_count": 2138, "profile_sidebar_border_color": "000000", "id_str": "1244379746", "profile_background_color": "1A1B1F", "listed_count": 22, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 34236, "description": "#FarrakhanTwitterArmy | #TheTime | #JusticeOrElse | #EconomicBlueprint | Writer | Author https://t.co/mTAg8cBd6y | Poet | Follower of #Farrakhan", "friends_count": 1253, "location": "Alabama", "profile_link_color": "4A913C", "profile_image_url": "http://pbs.twimg.com/profile_images/734549612556476417/4n-OGP1R_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1244379746/1463966744", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000180278138/3I1R9iq0.jpeg", "screen_name": "MuhammadAnisah", "lang": "en", "profile_background_tile": true, "favourites_count": 3738, "name": "Anisah Muhammad", "notifications": false, "url": "http://t.co/W8PBAKtxLg", "created_at": "Tue Mar 05 18:44:03 +0000 2013", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:46:42 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2457488137, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/726799420650590209/IMUUZdtd_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 1014, "profile_sidebar_border_color": "C0DEED", "id_str": "2457488137", "profile_background_color": "C0DEED", "listed_count": 9, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 13496, "description": "Young God \n#Farrakhan \n#Justiceorelse", "friends_count": 1440, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/726799420650590209/IMUUZdtd_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2457488137/1451233145", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Shakur_Hakim", "lang": "en", "profile_background_tile": false, "favourites_count": 13848, "name": "_young_musa", "notifications": false, "url": null, "created_at": "Tue Apr 22 02:30:01 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @Yamiche: UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064225096499201, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 89887215, "indices": [ 3, 11 ], "id_str": "89887215", "screen_name": "Yamiche", "name": "Yamiche Alcindor" }, { "id": 15754281, "indices": [ 90, 99 ], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY" } ], "hashtags": [], "urls": [ { "url": "http://t.co/xVOvdk1Ttz", "indices": [ 63, 85 ], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064225096499201", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064051330646016, "favorite_count": 12, "source": "iOS", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 15754281, "indices": [ 77, 86 ], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY" } ], "hashtags": [], "urls": [ { "url": "http://t.co/xVOvdk1Ttz", "indices": [ 50, 72 ], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064051330646016", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 89887215, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/Y4UpM3YlCz", "indices": [ 0, 23 ], "expanded_url": "http://yamichealcindor.com", "display_url": "yamichealcindor.com" } ] }, "description": { "urls": [] } }, "followers_count": 35266, "profile_sidebar_border_color": "EEEEEE", "id_str": "89887215", "profile_background_color": "131516", "listed_count": 1412, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 17738, "description": "@NYTimes reporter covering national politics & social justice issues. Formerly of @USATODAY. @Georgetown & @NYUNewsDoc alum. Email: yamiche@nytimes.com", "friends_count": 3727, "location": "New York, NY", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/89887215/1417998203", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Yamiche", "lang": "en", "profile_background_tile": true, "favourites_count": 1311, "name": "Yamiche Alcindor", "notifications": false, "url": "https://t.co/Y4UpM3YlCz", "created_at": "Sat Nov 14 06:37:11 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:33 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 20892936, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/686413384821129216/7OsAzYlA.jpg", "verified": false, "profile_text_color": "11299E", "profile_image_url_https": "https://pbs.twimg.com/profile_images/720404417586020352/7GPGwiqW_normal.jpg", "profile_sidebar_fill_color": "010005", "entities": { "url": { "urls": [ { "url": "https://t.co/TTgfruqf4L", "indices": [ 0, 23 ], "expanded_url": "http://JazziJohnson.com", "display_url": "JazziJohnson.com" } ] }, "description": { "urls": [] } }, "followers_count": 1313, "profile_sidebar_border_color": "000000", "id_str": "20892936", "profile_background_color": "ACDED6", "listed_count": 37, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 102625, "description": "26 | Writer, Editor & Curator | #TheOffBeat Host | SMM | @TheNewSchool Alum | #AlopeciaAwareness", "friends_count": 1011, "location": "Saturn's Return", "profile_link_color": "52164A", "profile_image_url": "http://pbs.twimg.com/profile_images/720404417586020352/7GPGwiqW_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20892936/1413302762", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/686413384821129216/7OsAzYlA.jpg", "screen_name": "ThebubbleMAMI", "lang": "en", "profile_background_tile": true, "favourites_count": 3616, "name": "Jazzi Johnson", "notifications": false, "url": "https://t.co/TTgfruqf4L", "created_at": "Sun Feb 15 04:37:08 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @AnaCabrera: The curfew for #Ferguson, Missouri will be in place again tonight from 12am through 5am CT Monday, according to Missouri S…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064225142624256, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 31565351, "indices": [ 3, 14 ], "id_str": "31565351", "screen_name": "AnaCabrera", "name": "Ana Cabrera" } ], "hashtags": [ { "indices": [ 31, 40 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 116, "id_str": "501064225142624256", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "The curfew for #Ferguson, Missouri will be in place again tonight from 12am through 5am CT Monday, according to Missouri State Hwy Patrol.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062655185276928, "favorite_count": 75, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 15, 24 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 116, "id_str": "501062655185276928", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 31565351, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/801784208/8118496d3b3e18b05b968ccb053bdfda.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000670838044/d6ac7616d4af77f128ca0bfe6201131e_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 16215, "profile_sidebar_border_color": "FFFFFF", "id_str": "31565351", "profile_background_color": "C0DEED", "listed_count": 360, "is_translation_enabled": false, "utc_offset": -21600, "statuses_count": 11475, "description": "CNN Correspondent, Mom, Wife, Runner, Traveler, Gardener, Dog lover, Skier, Aspiring Chef and Baker, Huge Denver Broncos Fan. RT ≠ endorsements.", "friends_count": 2853, "location": "Denver, CO", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000670838044/d6ac7616d4af77f128ca0bfe6201131e_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31565351/1366035013", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/801784208/8118496d3b3e18b05b968ccb053bdfda.jpeg", "screen_name": "AnaCabrera", "lang": "en", "profile_background_tile": false, "favourites_count": 5437, "name": "Ana Cabrera", "notifications": false, "url": null, "created_at": "Wed Apr 15 23:52:44 +0000 2009", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:47:00 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": true, "id": 2579883909, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 104, "profile_sidebar_border_color": "C0DEED", "id_str": "2579883909", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 64, "description": "", "friends_count": 708, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "boskomlomo", "lang": "en", "profile_background_tile": false, "favourites_count": 9, "name": "bosko mlomo", "notifications": false, "url": null, "created_at": "Tue Jun 03 09:07:48 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "I support the people of #Ferguson. #demilitarize", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064225314185216, "favorite_count": 0, "source": "Twitter for Windows Phone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 24, 33 ], "text": "Ferguson" }, { "indices": [ 35, 48 ], "text": "demilitarize" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064225314185216", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 191573388, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/678490443/530305ee54dcd37a33244a09f7f62844.jpeg", "verified": false, "profile_text_color": "80346B", "profile_image_url_https": "https://pbs.twimg.com/profile_images/488505579766161408/2s_HyxsW_normal.jpeg", "profile_sidebar_fill_color": "CB077F", "entities": { "description": { "urls": [] } }, "followers_count": 88, "profile_sidebar_border_color": "FFFFFF", "id_str": "191573388", "profile_background_color": "281A2C", "listed_count": 4, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 2019, "description": "nurse in training. no sugar coating here. aspiring autodidact.", "friends_count": 51, "location": "Pacific Northwest. 307 Native.", "profile_link_color": "A431DE", "profile_image_url": "http://pbs.twimg.com/profile_images/488505579766161408/2s_HyxsW_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/191573388/1405303781", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/678490443/530305ee54dcd37a33244a09f7f62844.jpeg", "screen_name": "cactusjuicekb", "lang": "en", "profile_background_tile": false, "favourites_count": 387, "name": "KNEL", "notifications": false, "url": null, "created_at": "Thu Sep 16 19:56:34 +0000 2010", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @sdwhite: @ryanjreilly Are you really that fucking stupid? I mean DAMN man! #Ferguson #idiotmedia http://t.co/K7ZttCFFUm", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064225926561794, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 10368612, "indices": [ 3, 11 ], "id_str": "10368612", "screen_name": "sdwhite", "name": "Scott" }, { "id": 7768402, "indices": [ 13, 25 ], "id_str": "7768402", "screen_name": "ryanjreilly", "name": "Ryan J. Reilly" } ], "hashtags": [ { "indices": [ 80, 89 ], "text": "Ferguson" }, { "indices": [ 90, 101 ], "text": "idiotmedia" } ], "urls": [], "media": [ { "source_user_id": 10368612, "source_status_id_str": "501050702744285184", "expanded_url": "http://twitter.com/sdwhite/status/501050702744285184/photo/1", "display_url": "pic.twitter.com/K7ZttCFFUm", "url": "http://t.co/K7ZttCFFUm", "media_url_https": "https://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg", "source_user_id_str": "10368612", "source_status_id": 501050702744285184, "id_str": "501050701943156738", "sizes": { "small": { "h": 605, "resize": "fit", "w": 340 }, "large": { "h": 1822, "resize": "fit", "w": 1024 }, "medium": { "h": 1068, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 102, 124 ], "type": "photo", "id": 501050701943156738, "media_url": "http://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "501064225926561794", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "@ryanjreilly Are you really that fucking stupid? I mean DAMN man! #Ferguson #idiotmedia http://t.co/K7ZttCFFUm", "is_quote_status": false, "in_reply_to_status_id": 500981295359741952, "id": 501050702744285184, "favorite_count": 1, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 7768402, "indices": [ 0, 12 ], "id_str": "7768402", "screen_name": "ryanjreilly", "name": "Ryan J. Reilly" } ], "hashtags": [ { "indices": [ 67, 76 ], "text": "Ferguson" }, { "indices": [ 77, 88 ], "text": "idiotmedia" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/sdwhite/status/501050702744285184/photo/1", "display_url": "pic.twitter.com/K7ZttCFFUm", "url": "http://t.co/K7ZttCFFUm", "media_url_https": "https://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg", "id_str": "501050701943156738", "sizes": { "small": { "h": 605, "resize": "fit", "w": 340 }, "large": { "h": 1822, "resize": "fit", "w": 1024 }, "medium": { "h": 1068, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 89, 111 ], "type": "photo", "id": 501050701943156738, "media_url": "http://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg" } ] }, "in_reply_to_screen_name": "ryanjreilly", "in_reply_to_user_id": 7768402, "retweet_count": 1, "id_str": "501050702744285184", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 10368612, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/586373626/qney3uizbr5rcllun5uw.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000497600338/2e075885c4878b98a1850fe635dd247b_normal.jpeg", "profile_sidebar_fill_color": "C0DFEC", "entities": { "url": { "urls": [ { "url": "http://t.co/IDseHYlFWt", "indices": [ 0, 22 ], "expanded_url": "http://sdw.im", "display_url": "sdw.im" } ] }, "description": { "urls": [] } }, "followers_count": 1450, "profile_sidebar_border_color": "A8C7F7", "id_str": "10368612", "profile_background_color": "022330", "listed_count": 61, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 27692, "description": "Patriot Harley Rider Retired Police Officer Second Amendment Heelers, Texas Heeler, Blue Heeler, Australian Cattle Dog Just a good ole country boy with guns...", "friends_count": 187, "location": "Augusta, GA USA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000497600338/2e075885c4878b98a1850fe635dd247b_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10368612/1418565396", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/586373626/qney3uizbr5rcllun5uw.jpeg", "screen_name": "sdwhite", "lang": "en", "profile_background_tile": false, "favourites_count": 37, "name": "Scott", "notifications": false, "url": "http://t.co/IDseHYlFWt", "created_at": "Mon Nov 19 00:33:55 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "7768402", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 16:59:31 +0000 2014", "in_reply_to_status_id_str": "500981295359741952", "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/sdwhite/status/501050702744285184/photo/1", "display_url": "pic.twitter.com/K7ZttCFFUm", "url": "http://t.co/K7ZttCFFUm", "media_url_https": "https://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg", "id_str": "501050701943156738", "sizes": { "small": { "h": 605, "resize": "fit", "w": 340 }, "large": { "h": 1822, "resize": "fit", "w": 1024 }, "medium": { "h": 1068, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 89, 111 ], "type": "photo", "id": 501050701943156738, "media_url": "http://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 33005799, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/84845711/LETR_logo_wo_shadow.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/517918504641499136/QeETbvAg_normal.jpeg", "profile_sidebar_fill_color": "DDFFCC", "entities": { "description": { "urls": [] } }, "followers_count": 274, "profile_sidebar_border_color": "BDDCAD", "id_str": "33005799", "profile_background_color": "9AE4E8", "listed_count": 20, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 994, "description": "Julie Van Dielen: Virtual Assistant for LE Instructors. Researcher, observer, armchair anthropologist. Obviously, RTs / Faves not necessarily endorsements.", "friends_count": 534, "location": "St. Louis MO", "profile_link_color": "0048B3", "profile_image_url": "http://pbs.twimg.com/profile_images/517918504641499136/QeETbvAg_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/84845711/LETR_logo_wo_shadow.jpg", "screen_name": "LETrainingAsst", "lang": "en", "profile_background_tile": true, "favourites_count": 722, "name": "LETR", "notifications": false, "url": null, "created_at": "Sat Apr 18 20:43:27 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 10368612, "source_status_id_str": "501050702744285184", "expanded_url": "http://twitter.com/sdwhite/status/501050702744285184/photo/1", "display_url": "pic.twitter.com/K7ZttCFFUm", "url": "http://t.co/K7ZttCFFUm", "media_url_https": "https://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg", "source_user_id_str": "10368612", "source_status_id": 501050702744285184, "id_str": "501050701943156738", "sizes": { "small": { "h": 605, "resize": "fit", "w": 340 }, "large": { "h": 1822, "resize": "fit", "w": 1024 }, "medium": { "h": 1068, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 102, 124 ], "type": "photo", "id": 501050701943156738, "media_url": "http://pbs.twimg.com/media/BvQW9W_IMAIcLKz.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @Chris_1791: Eye Witness Audio of Mike Brown Shooting States: “Brown Doubled Back Toward POlice”…Kept rushing cop http://t.co/p6Vgo23bUK…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064226816143361, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 312149882, "indices": [ 3, 14 ], "id_str": "312149882", "screen_name": "Chris_1791", "name": "Chris" } ], "hashtags": [ { "indices": [ 139, 140 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/p6Vgo23bUK", "indices": [ 117, 139 ], "expanded_url": "http://theconservativetreehouse.com/2014/08/15/exceptional-catch-the-jj-witness-video-eye-witness-audio-of-mike-brown-shooting-sharing-brown-doubled-back-toward-police/", "display_url": "theconservativetreehouse.com/2014/08/15/exc…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13, "id_str": "501064226816143361", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Eye Witness Audio of Mike Brown Shooting States: “Brown Doubled Back Toward POlice”…Kept rushing cop http://t.co/p6Vgo23bUK #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063445446672384, "favorite_count": 10, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 124, 133 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/p6Vgo23bUK", "indices": [ 101, 123 ], "expanded_url": "http://theconservativetreehouse.com/2014/08/15/exceptional-catch-the-jj-witness-video-eye-witness-audio-of-mike-brown-shooting-sharing-brown-doubled-back-toward-police/", "display_url": "theconservativetreehouse.com/2014/08/15/exc…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13, "id_str": "501063445446672384", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 312149882, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/725063162467217408/jfon06uc_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/ATN42EhhoT", "indices": [ 0, 23 ], "expanded_url": "http://owsusefulidiots.blogspot.com/", "display_url": "owsusefulidiots.blogspot.com" } ] }, "description": { "urls": [] } }, "followers_count": 71615, "profile_sidebar_border_color": "EEEEEE", "id_str": "312149882", "profile_background_color": "131516", "listed_count": 1205, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 636320, "description": "100% American. 63% Irish Ancestry. Roman Catholic BS/MS Princeton U. PhD Univ of Penn Computer Science. 2A. Pro-Life. Expert contrarian.", "friends_count": 28814, "location": "Philadelphia, PA USA", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/725063162467217408/jfon06uc_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/312149882/1461703235", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Chris_1791", "lang": "en", "profile_background_tile": true, "favourites_count": 1101, "name": "Chris", "notifications": false, "url": "https://t.co/ATN42EhhoT", "created_at": "Mon Jun 06 17:20:55 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:50:09 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1597610311, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/531257140732641280/YVjRs7Gk.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000141038704/756d87befc3e7bf6bff379084d9913e5_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 1049, "profile_sidebar_border_color": "FFFFFF", "id_str": "1597610311", "profile_background_color": "FA743E", "listed_count": 12, "is_translation_enabled": false, "utc_offset": -21600, "statuses_count": 3503, "description": "Daughter of the American Revolution. Blockade Runner's Sammich Maker\n•Primpin•Mayhem•HandLoads•Jesus", "friends_count": 1231, "location": "", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000141038704/756d87befc3e7bf6bff379084d9913e5_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1597610311/1460344383", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/531257140732641280/YVjRs7Gk.jpeg", "screen_name": "MollyLibSlayer", "lang": "en", "profile_background_tile": true, "favourites_count": 2538, "name": "Molly Anne", "notifications": false, "url": null, "created_at": "Tue Jul 16 05:23:19 +0000 2013", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @DoggedlyBlue: The world is watching us! @MedicalQuack @vinceperritano RT @vinceperritano: #Ferguson made front pages in Turkey http://…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064227302674433, "favorite_count": 0, "source": "Twitter for Android Tablets", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1729022250, "indices": [ 3, 16 ], "id_str": "1729022250", "screen_name": "DoggedlyBlue", "name": "PowerHounds" }, { "id": 15248550, "indices": [ 44, 57 ], "id_str": "15248550", "screen_name": "MedicalQuack", "name": "MedicalQuack" }, { "id": 1253175822, "indices": [ 58, 73 ], "id_str": "1253175822", "screen_name": "vinceperritano", "name": "Vince" }, { "id": 1253175822, "indices": [ 77, 92 ], "id_str": "1253175822", "screen_name": "vinceperritano", "name": "Vince" } ], "hashtags": [ { "indices": [ 94, 103 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/WNSLwHuSf7", "indices": [ 139, 140 ], "expanded_url": "http://twitter.com/vinceperritano/status/500659660366811137/photo/1", "display_url": "pic.twitter.com/WNSLwHuSf7" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 13, "id_str": "501064227302674433", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "The world is watching us! @MedicalQuack @vinceperritano RT @vinceperritano: #Ferguson made front pages in Turkey http://t.co/WNSLwHuSf7", "is_quote_status": false, "in_reply_to_status_id": 500829713041199105, "id": 501037323384283137, "favorite_count": 4, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 15248550, "indices": [ 26, 39 ], "id_str": "15248550", "screen_name": "MedicalQuack", "name": "MedicalQuack" }, { "id": 1253175822, "indices": [ 40, 55 ], "id_str": "1253175822", "screen_name": "vinceperritano", "name": "Vince" }, { "id": 1253175822, "indices": [ 59, 74 ], "id_str": "1253175822", "screen_name": "vinceperritano", "name": "Vince" } ], "hashtags": [ { "indices": [ 76, 85 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/WNSLwHuSf7", "indices": [ 114, 136 ], "expanded_url": "http://twitter.com/vinceperritano/status/500659660366811137/photo/1", "display_url": "pic.twitter.com/WNSLwHuSf7" } ] }, "in_reply_to_screen_name": "MedicalQuack", "in_reply_to_user_id": 15248550, "retweet_count": 13, "id_str": "501037323384283137", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1729022250, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000067018516/0cec4f6118b41cb1a53008543be33bf5.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000411210355/ba9497dc483d1ac0448572f6178d764c_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/4oQxpSRJ93", "indices": [ 0, 23 ], "expanded_url": "https://www.facebook.com/Hounds-For-Hillary-689574601144473", "display_url": "facebook.com/Hounds-For-Hil…" } ] }, "description": { "urls": [] } }, "followers_count": 7284, "profile_sidebar_border_color": "FFFFFF", "id_str": "1729022250", "profile_background_color": "C0DEED", "listed_count": 113, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 5575, "description": "Nose2ground evidence+reason seeker.Prowls with @CryinAllTheTime + @BlueVA_Hound hunting RWNJ lies.We r loyal follows #Inequality #CIR #NotOneMore #green #maddow", "friends_count": 8312, "location": "Houndsville Blue USA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000411210355/ba9497dc483d1ac0448572f6178d764c_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1729022250/1378312788", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000067018516/0cec4f6118b41cb1a53008543be33bf5.jpeg", "screen_name": "DoggedlyBlue", "lang": "en", "profile_background_tile": false, "favourites_count": 19, "name": "PowerHounds", "notifications": false, "url": "https://t.co/4oQxpSRJ93", "created_at": "Wed Sep 04 15:14:10 +0000 2013", "contributors_enabled": false, "time_zone": "Indiana (East)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "15248550", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 16:06:21 +0000 2014", "in_reply_to_status_id_str": "500829713041199105", "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1214192959, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000100940262/42d048b0873eda006597addf106a62a8.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/431492837872386048/trGva93W_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 2112, "profile_sidebar_border_color": "FFFFFF", "id_str": "1214192959", "profile_background_color": "C0DEED", "listed_count": 48, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 21196, "description": "Mother of polar opposites. The one at the South Pole has a better life, still surrounded by a land mass. The one at the North Pole bobs up and down a lot.", "friends_count": 2107, "location": "Between Rural & Urban MN", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/431492837872386048/trGva93W_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1214192959/1399232812", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000100940262/42d048b0873eda006597addf106a62a8.jpeg", "screen_name": "Molly1Jo", "lang": "en", "profile_background_tile": true, "favourites_count": 9968, "name": "Molly Jo Miller", "notifications": false, "url": null, "created_at": "Sun Feb 24 01:47:39 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @PzFeed: One shot and seven injured overnight in Ferguson. Curfew will be in place for the second night. AP http://t.co/ubsMwGcYzv", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064227344646144, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 2838219291, "indices": [ 3, 10 ], "id_str": "2838219291", "screen_name": "PzFeed", "name": "PzFeed Advertising" } ], "hashtags": [], "urls": [], "media": [ { "source_user_id": 292777349, "source_status_id_str": "501057297498775553", "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "source_user_id_str": "292777349", "source_status_id": 501057297498775553, "id_str": "501057296781553667", "sizes": { "large": { "h": 670, "resize": "fit", "w": 1024 }, "small": { "h": 222, "resize": "fit", "w": 340 }, "medium": { "h": 392, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 111, 133 ], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 322, "id_str": "501064227344646144", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "One shot and seven injured overnight in Ferguson. Curfew will be in place for the second night. AP http://t.co/ubsMwGcYzv", "is_quote_status": false, "in_reply_to_status_id": 500888292770861056, "id": 501057297498775553, "favorite_count": 111, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [ { "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "id_str": "501057296781553667", "sizes": { "large": { "h": 670, "resize": "fit", "w": 1024 }, "small": { "h": 222, "resize": "fit", "w": 340 }, "medium": { "h": 392, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 99, 121 ], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg" } ] }, "in_reply_to_screen_name": "pzf", "in_reply_to_user_id": 292777349, "retweet_count": 322, "id_str": "501057297498775553", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 292777349, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676529721274945540/1RQ39euJ_normal.jpg", "profile_sidebar_fill_color": "EADEAA", "entities": { "url": { "urls": [ { "url": "https://t.co/Q8HIb8qQbq", "indices": [ 0, 23 ], "expanded_url": "http://PzFeed.com", "display_url": "PzFeed.com" } ] }, "description": { "urls": [] } }, "followers_count": 297251, "profile_sidebar_border_color": "FFFFFF", "id_str": "292777349", "profile_background_color": "8B542B", "listed_count": 3819, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 44216, "description": "A global news channel bringing you breaking news as it happens and the most talked about stories, pictures and videos from around the world.", "friends_count": 12461, "location": "tips@PzFeed.com", "profile_link_color": "9D582E", "profile_image_url": "http://pbs.twimg.com/profile_images/676529721274945540/1RQ39euJ_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/292777349/1410983400", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "screen_name": "pzf", "lang": "en", "profile_background_tile": false, "favourites_count": 314, "name": "Breaking News Feed", "notifications": false, "url": "https://t.co/Q8HIb8qQbq", "created_at": "Wed May 04 06:32:13 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "292777349", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:25:43 +0000 2014", "in_reply_to_status_id_str": "500888292770861056", "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "id_str": "501057296781553667", "sizes": { "large": { "h": 670, "resize": "fit", "w": 1024 }, "small": { "h": 222, "resize": "fit", "w": 340 }, "medium": { "h": 392, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 99, 121 ], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 298329334, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/617160270041886720/8uuF8iUc.jpg", "verified": false, "profile_text_color": "353535", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731607968911790080/OmcLWlGD_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 2069, "profile_sidebar_border_color": "000000", "id_str": "298329334", "profile_background_color": "ABB8C2", "listed_count": 22, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 188689, "description": "I'm having some Don King issues dammit.", "friends_count": 985, "location": "", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/731607968911790080/OmcLWlGD_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/298329334/1461593078", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/617160270041886720/8uuF8iUc.jpg", "screen_name": "xMurderCWrote", "lang": "en", "profile_background_tile": true, "favourites_count": 8108, "name": "C.", "notifications": false, "url": null, "created_at": "Sat May 14 03:50:28 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 292777349, "source_status_id_str": "501057297498775553", "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "source_user_id_str": "292777349", "source_status_id": 501057297498775553, "id_str": "501057296781553667", "sizes": { "large": { "h": 670, "resize": "fit", "w": 1024 }, "small": { "h": 222, "resize": "fit", "w": 340 }, "medium": { "h": 392, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 111, 133 ], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @Salon: The latest from #Ferguson: 7 protestors arrested, 1 critically wounded http://t.co/zn9nmslR3d", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064227688558592, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 16955991, "indices": [ 3, 9 ], "id_str": "16955991", "screen_name": "Salon", "name": "Salon.com" } ], "hashtags": [ { "indices": [ 27, 36 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/zn9nmslR3d", "indices": [ 82, 104 ], "expanded_url": "http://slnm.us/F2lrads", "display_url": "slnm.us/F2lrads" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 43, "id_str": "501064227688558592", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "The latest from #Ferguson: 7 protestors arrested, 1 critically wounded http://t.co/zn9nmslR3d", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501023759260987393, "favorite_count": 10, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 16, 25 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/zn9nmslR3d", "indices": [ 71, 93 ], "expanded_url": "http://slnm.us/F2lrads", "display_url": "slnm.us/F2lrads" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 43, "id_str": "501023759260987393", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 16955991, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/512628326733586432/CZCFcWP_.jpeg", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2157824008/Salon.Logo.Square.small_normal.jpg", "profile_sidebar_fill_color": "EEEEEE", "entities": { "url": { "urls": [ { "url": "http://t.co/kpNqjDEGL3", "indices": [ 0, 22 ], "expanded_url": "http://www.Salon.com", "display_url": "Salon.com" } ] }, "description": { "urls": [ { "url": "http://t.co/arAhFcxlTr", "indices": [ 111, 133 ], "expanded_url": "http://www.facebook.com/salon", "display_url": "facebook.com/salon" } ] } }, "followers_count": 609575, "profile_sidebar_border_color": "FFFFFF", "id_str": "16955991", "profile_background_color": "CC0000", "listed_count": 15173, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 116485, "description": "Providing fearless political journalism and cultural analysis since the dawn of the digital era. We're also at http://t.co/arAhFcxlTr", "friends_count": 6050, "location": "", "profile_link_color": "CC0000", "profile_image_url": "http://pbs.twimg.com/profile_images/2157824008/Salon.Logo.Square.small_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/512628326733586432/CZCFcWP_.jpeg", "screen_name": "Salon", "lang": "en", "profile_background_tile": true, "favourites_count": 1148, "name": "Salon.com", "notifications": false, "url": "http://t.co/kpNqjDEGL3", "created_at": "Fri Oct 24 20:13:31 +0000 2008", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 15:12:27 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 1305908575, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/511426525170638848/DWSITWQk.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/720922803793305600/u4XQ0cmd_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/2MXyfj1Itt", "indices": [ 0, 23 ], "expanded_url": "http://allpoetry.com", "display_url": "allpoetry.com" } ] }, "description": { "urls": [] } }, "followers_count": 2925, "profile_sidebar_border_color": "FFFFFF", "id_str": "1305908575", "profile_background_color": "3A754F", "listed_count": 415, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 88163, "description": "human being/writer/poet/progressive lib", "friends_count": 2913, "location": "California, USA", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/720922803793305600/u4XQ0cmd_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1305908575/1452153619", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/511426525170638848/DWSITWQk.jpeg", "screen_name": "bleedingheartmx", "lang": "en", "profile_background_tile": true, "favourites_count": 38588, "name": "rigoberto duarte", "notifications": false, "url": "https://t.co/2MXyfj1Itt", "created_at": "Tue Mar 26 23:18:44 +0000 2013", "contributors_enabled": false, "time_zone": "America/Los_Angeles", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:15 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "@ewg118 once you have the wikidata id in hand you look for GND (P227) and ISNI (P213) in the JSON e.g. https://t.co/F1AKY8vSv7 @ryanfb", "is_quote_status": false, "in_reply_to_status_id": 615968208865005569, "id": 615973042443956225, "favorite_count": 0, "source": "Tweetbot for Mac", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 34019920, "indices": [ 0, 7 ], "id_str": "34019920", "screen_name": "ewg118", "name": "Ethan Gruber" }, { "id": 14298448, "indices": [ 127, 134 ], "id_str": "14298448", "screen_name": "ryanfb", "name": "Ryan Baumann" } ], "hashtags": [], "urls": [ { "url": "https://t.co/F1AKY8vSv7", "indices": [ 103, 126 ], "expanded_url": "https://gist.github.com/edsu/0a29527dc52cf9e439b4", "display_url": "gist.github.com/edsu/0a29527dc…" } ] }, "in_reply_to_screen_name": "ewg118", "in_reply_to_user_id": 34019920, "retweet_count": 0, "id_str": "615973042443956225", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 14331818, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/690939312179957760/bhU1I0aa.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686487544188526592/k4u-YEpT_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "url": { "urls": [ { "url": "http://t.co/KCVMLqoUma", "indices": [ 0, 22 ], "expanded_url": "http://inkdroid.org", "display_url": "inkdroid.org" } ] }, "description": { "urls": [] } }, "followers_count": 4220, "profile_sidebar_border_color": "000000", "id_str": "14331818", "profile_background_color": "9AE4E8", "listed_count": 356, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 23530, "description": "I'm a software developer at @umd_mith & study archives on & of the web at @iSchoolUMD", "friends_count": 2203, "location": "Silver Spring, MD", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/686487544188526592/k4u-YEpT_normal.jpg", "following": true, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14331818/1452465995", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/690939312179957760/bhU1I0aa.jpg", "screen_name": "edsu", "lang": "en", "profile_background_tile": false, "favourites_count": 7560, "name": "Ed Summers", "notifications": false, "url": "http://t.co/KCVMLqoUma", "created_at": "Tue Apr 08 12:43:41 +0000 2008", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "34019920", "possibly_sensitive": false, "lang": "en", "created_at": "Tue Jun 30 19:59:52 +0000 2015", "in_reply_to_status_id_str": "615968208865005569", "place": { "full_name": "College Park, MD", "url": "https://api.twitter.com/1.1/geo/id/e4c17912c815124d.json", "country": "United States", "place_type": "city", "bounding_box": { "type": "Polygon", "coordinates": [ [ [ -76.9655961, 38.971053 ], [ -76.903378, 38.971053 ], [ -76.903378, 39.022888 ], [ -76.9655961, 39.022888 ] ] ] }, "contained_within": [], "country_code": "US", "attributes": {}, "id": "e4c17912c815124d", "name": "College Park" } }, { "contributors": null, "truncated": false, "text": "Source: Obama says reaching an #Iran deal is below 50/50 http://t.co/vR9wAjeHaz #News #health #politics", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172328149118976, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 31, 36 ], "text": "Iran" }, { "indices": [ 80, 85 ], "text": "News" }, { "indices": [ 86, 93 ], "text": "health" }, { "indices": [ 94, 103 ], "text": "politics" } ], "urls": [ { "url": "http://t.co/vR9wAjeHaz", "indices": [ 57, 79 ], "expanded_url": "http://goo.gl/fZKWsN", "display_url": "goo.gl/fZKWsN" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10, "id_str": "619172328149118976", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 2830090062, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/514810305705041920/hnzIPM7v_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/gbteP5hOmI", "indices": [ 0, 23 ], "expanded_url": "http://mojahedin.org", "display_url": "mojahedin.org" } ] }, "description": { "urls": [] } }, "followers_count": 37, "profile_sidebar_border_color": "C0DEED", "id_str": "2830090062", "profile_background_color": "C0DEED", "listed_count": 35, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 35237, "description": "Democracy for Iran", "friends_count": 45, "location": "London, England", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/514810305705041920/hnzIPM7v_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "stahl_soraya", "lang": "en", "profile_background_tile": false, "favourites_count": 4481, "name": "Soraya Stahl", "notifications": false, "url": "https://t.co/gbteP5hOmI", "created_at": "Wed Sep 24 16:13:18 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:41 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @CBSNews: U.S. rethinks giving excess military gear to local police after Ferguson, Mo., unrest - http://t.co/QsRK5NpbbT http://t.co/kLP…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064231488200704, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 15012486, "indices": [ 3, 11 ], "id_str": "15012486", "screen_name": "CBSNews", "name": "CBS News" } ], "hashtags": [], "urls": [ { "url": "http://t.co/QsRK5NpbbT", "indices": [ 101, 123 ], "expanded_url": "http://cbsn.ws/1pUgAxU", "display_url": "cbsn.ws/1pUgAxU" } ], "media": [ { "source_user_id": 15012486, "source_status_id_str": "500981251114020864", "expanded_url": "http://twitter.com/CBSNews/status/500981251114020864/photo/1", "display_url": "pic.twitter.com/kLPKlqWlDp", "url": "http://t.co/kLPKlqWlDp", "media_url_https": "https://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg", "source_user_id_str": "15012486", "source_status_id": 500981251114020864, "id_str": "500981250958835712", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 346, "resize": "fit", "w": 617 }, "medium": { "h": 336, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 124, 140 ], "type": "photo", "id": 500981250958835712, "media_url": "http://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 369, "id_str": "501064231488200704", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "U.S. rethinks giving excess military gear to local police after Ferguson, Mo., unrest - http://t.co/QsRK5NpbbT http://t.co/kLPKlqWlDp", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500981251114020864, "favorite_count": 175, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/QsRK5NpbbT", "indices": [ 88, 110 ], "expanded_url": "http://cbsn.ws/1pUgAxU", "display_url": "cbsn.ws/1pUgAxU" } ], "media": [ { "expanded_url": "http://twitter.com/CBSNews/status/500981251114020864/photo/1", "display_url": "pic.twitter.com/kLPKlqWlDp", "url": "http://t.co/kLPKlqWlDp", "media_url_https": "https://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg", "id_str": "500981250958835712", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 346, "resize": "fit", "w": 617 }, "medium": { "h": 336, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 111, 133 ], "type": "photo", "id": 500981250958835712, "media_url": "http://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 369, "id_str": "500981251114020864", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 15012486, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/736106551/37bf1f784305fe4a9c7e9105772c6e1a.jpeg", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/645966750941626368/d0Q4voGK_normal.jpg", "profile_sidebar_fill_color": "EAEDF0", "entities": { "url": { "urls": [ { "url": "https://t.co/VGut7r2Vg5", "indices": [ 0, 23 ], "expanded_url": "http://CBSNews.com", "display_url": "CBSNews.com" } ] }, "description": { "urls": [] } }, "followers_count": 4506641, "profile_sidebar_border_color": "FFFFFF", "id_str": "15012486", "profile_background_color": "D9DADA", "listed_count": 41744, "is_translation_enabled": true, "utc_offset": -14400, "statuses_count": 99594, "description": "The official twitter feed of @CBSNews. Follow for original reporting and trusted news.", "friends_count": 387, "location": "New York, NY", "profile_link_color": "B12124", "profile_image_url": "http://pbs.twimg.com/profile_images/645966750941626368/d0Q4voGK_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15012486/1461341901", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/736106551/37bf1f784305fe4a9c7e9105772c6e1a.jpeg", "screen_name": "CBSNews", "lang": "en", "profile_background_tile": false, "favourites_count": 214, "name": "CBS News", "notifications": false, "url": "https://t.co/VGut7r2Vg5", "created_at": "Thu Jun 05 00:54:31 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 12:23:32 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/CBSNews/status/500981251114020864/photo/1", "display_url": "pic.twitter.com/kLPKlqWlDp", "url": "http://t.co/kLPKlqWlDp", "media_url_https": "https://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg", "id_str": "500981250958835712", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 346, "resize": "fit", "w": 617 }, "medium": { "h": 336, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 111, 133 ], "type": "photo", "id": 500981250958835712, "media_url": "http://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2600797508, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/499046788041420800/_xEENCFB_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/BcoG44I6np", "indices": [ 0, 23 ], "expanded_url": "https://www.facebook.com/lalunalarosa", "display_url": "facebook.com/lalunalarosa" } ] }, "description": { "urls": [] } }, "followers_count": 147, "profile_sidebar_border_color": "C0DEED", "id_str": "2600797508", "profile_background_color": "C0DEED", "listed_count": 12, "is_translation_enabled": true, "utc_offset": -10800, "statuses_count": 1857, "description": "Amateur trader, looking for advice and direction. 26, Single, Extremely awesome. Been most of the way around the world.. ... Yabba dabba Dooo!", "friends_count": 199, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/499046788041420800/_xEENCFB_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2600797508/1405867730", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "YogiBearSarah", "lang": "en", "profile_background_tile": false, "favourites_count": 113, "name": "Sarah Miller", "notifications": false, "url": "https://t.co/BcoG44I6np", "created_at": "Thu Jul 03 01:48:42 +0000 2014", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 15012486, "source_status_id_str": "500981251114020864", "expanded_url": "http://twitter.com/CBSNews/status/500981251114020864/photo/1", "display_url": "pic.twitter.com/kLPKlqWlDp", "url": "http://t.co/kLPKlqWlDp", "media_url_https": "https://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg", "source_user_id_str": "15012486", "source_status_id": 500981251114020864, "id_str": "500981250958835712", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 346, "resize": "fit", "w": 617 }, "medium": { "h": 336, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 124, 140 ], "type": "photo", "id": 500981250958835712, "media_url": "http://pbs.twimg.com/media/BvPXyx6IQAAzX03.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @thehill: JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172235488718848, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1917731, "indices": [ 3, 11 ], "id_str": "1917731", "screen_name": "thehill", "name": "The Hill" } ], "hashtags": [], "urls": [ { "url": "http://t.co/0WZIQMNf50", "indices": [ 75, 97 ], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4" } ], "media": [ { "source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 98, 120 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619172235488718848", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171737033396224, "favorite_count": 4, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/0WZIQMNf50", "indices": [ 62, 84 ], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4" } ], "media": [ { "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 85, 107 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619171737033396224", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1917731, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "profile_sidebar_fill_color": "EBEBEB", "entities": { "url": { "urls": [ { "url": "http://t.co/t414UtTRv4", "indices": [ 0, 22 ], "expanded_url": "http://www.thehill.com", "display_url": "thehill.com" } ] }, "description": { "urls": [] } }, "followers_count": 747989, "profile_sidebar_border_color": "ADADAA", "id_str": "1917731", "profile_background_color": "9AE4E8", "listed_count": 16660, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 190708, "description": "The Hill is the premier source for policy and political news. Follow for tweets on what's happening in Washington, breaking news and retweets of our reporters.", "friends_count": 489, "location": "Washington, DC", "profile_link_color": "FF0021", "profile_image_url": "http://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1917731/1434034905", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "screen_name": "thehill", "lang": "en", "profile_background_tile": true, "favourites_count": 26, "name": "The Hill", "notifications": false, "url": "http://t.co/t414UtTRv4", "created_at": "Thu Mar 22 18:15:18 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:50:20 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 85, 107 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 74640730, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/600742331067846657/7rAiVh_Z_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "description": { "urls": [] } }, "followers_count": 1263, "profile_sidebar_border_color": "EEEEEE", "id_str": "74640730", "profile_background_color": "131516", "listed_count": 41, "is_translation_enabled": false, "utc_offset": 36000, "statuses_count": 8454, "description": "Gay. Activist. Lefty. Boy Crazy. Mac Owner. News Junkie. DJ Wannabe. Caffeine Addict. Ex-Expat.", "friends_count": 1169, "location": "Washington, DC", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/600742331067846657/7rAiVh_Z_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/74640730/1455072656", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "ahulse", "lang": "en", "profile_background_tile": true, "favourites_count": 492, "name": "Aaron Hulse", "notifications": false, "url": null, "created_at": "Wed Sep 16 03:23:47 +0000 2009", "contributors_enabled": false, "time_zone": "Sydney", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:19 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 98, 120 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @agabriew: -mamá, ¿puedo salir?\n-no.\n-pero todos mis amigos irán.\n-¡no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172293936291840, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 3246768862, "indices": [ 3, 12 ], "id_str": "3246768862", "screen_name": "agabriew", "name": "‏️‏️" } ], "hashtags": [], "urls": [], "media": [ { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "619172293936291840", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "-mamá, ¿puedo salir?\n-no.\n-pero todos mis amigos irán.\n-¡no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618569774763630592, "favorite_count": 318, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [ { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "618569774763630592", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 3246768862, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 804, "profile_sidebar_border_color": "000000", "id_str": "3246768862", "profile_background_color": "000000", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 839, "description": "en un día largo me quité el sostén", "friends_count": 296, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3246768862/1456961166", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "screen_name": "agabriew", "lang": "es", "profile_background_tile": true, "favourites_count": 53353, "name": "‏️‏️", "notifications": false, "url": null, "created_at": "Mon May 11 20:00:55 +0000 2015", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Tue Jul 07 23:58:21 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" }, { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "id_str": "618569772037500929", "sizes": { "small": { "h": 510, "resize": "fit", "w": 340 }, "large": { "h": 900, "resize": "fit", "w": 600 }, "medium": { "h": 900, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 79286766, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/264008701/image", "verified": false, "profile_text_color": "D173C8", "profile_image_url_https": "https://pbs.twimg.com/profile_images/696480597926141952/mwupgN-7_normal.jpg", "profile_sidebar_fill_color": "E1F00E", "entities": { "description": { "urls": [] } }, "followers_count": 479, "profile_sidebar_border_color": "8DB2C4", "id_str": "79286766", "profile_background_color": "21EBEB", "listed_count": 2, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 53964, "description": "Porque la vida es sueño y los sueños, sueños son. | Mechanical Engineering student |", "friends_count": 402, "location": "802, Puerto Rico ", "profile_link_color": "A394A3", "profile_image_url": "http://pbs.twimg.com/profile_images/696480597926141952/mwupgN-7_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/79286766/1445955057", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/264008701/image", "screen_name": "7vacasvoladoras", "lang": "en", "profile_background_tile": true, "favourites_count": 13104, "name": "Skinny Hulk", "notifications": false, "url": null, "created_at": "Fri Oct 02 21:03:30 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:33 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" }, { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772037500929", "sizes": { "small": { "h": 510, "resize": "fit", "w": 340 }, "large": { "h": 900, "resize": "fit", "w": 600 }, "medium": { "h": 900, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @PzFeed: One shot and seven injured overnight in Ferguson. Curfew will be in place for the second night. AP http://t.co/ubsMwGcYzv", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064229915729921, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 2838219291, "indices": [ 3, 10 ], "id_str": "2838219291", "screen_name": "PzFeed", "name": "PzFeed Advertising" } ], "hashtags": [], "urls": [], "media": [ { "source_user_id": 292777349, "source_status_id_str": "501057297498775553", "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "source_user_id_str": "292777349", "source_status_id": 501057297498775553, "id_str": "501057296781553667", "sizes": { "large": { "h": 670, "resize": "fit", "w": 1024 }, "small": { "h": 222, "resize": "fit", "w": 340 }, "medium": { "h": 392, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 111, 133 ], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 322, "id_str": "501064229915729921", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "One shot and seven injured overnight in Ferguson. Curfew will be in place for the second night. AP http://t.co/ubsMwGcYzv", "is_quote_status": false, "in_reply_to_status_id": 500888292770861056, "id": 501057297498775553, "favorite_count": 111, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [ { "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "id_str": "501057296781553667", "sizes": { "large": { "h": 670, "resize": "fit", "w": 1024 }, "small": { "h": 222, "resize": "fit", "w": 340 }, "medium": { "h": 392, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 99, 121 ], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg" } ] }, "in_reply_to_screen_name": "pzf", "in_reply_to_user_id": 292777349, "retweet_count": 322, "id_str": "501057297498775553", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 292777349, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/676529721274945540/1RQ39euJ_normal.jpg", "profile_sidebar_fill_color": "EADEAA", "entities": { "url": { "urls": [ { "url": "https://t.co/Q8HIb8qQbq", "indices": [ 0, 23 ], "expanded_url": "http://PzFeed.com", "display_url": "PzFeed.com" } ] }, "description": { "urls": [] } }, "followers_count": 297251, "profile_sidebar_border_color": "FFFFFF", "id_str": "292777349", "profile_background_color": "8B542B", "listed_count": 3819, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 44216, "description": "A global news channel bringing you breaking news as it happens and the most talked about stories, pictures and videos from around the world.", "friends_count": 12461, "location": "tips@PzFeed.com", "profile_link_color": "9D582E", "profile_image_url": "http://pbs.twimg.com/profile_images/676529721274945540/1RQ39euJ_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/292777349/1410983400", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "screen_name": "pzf", "lang": "en", "profile_background_tile": false, "favourites_count": 314, "name": "Breaking News Feed", "notifications": false, "url": "https://t.co/Q8HIb8qQbq", "created_at": "Wed May 04 06:32:13 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "292777349", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:25:43 +0000 2014", "in_reply_to_status_id_str": "500888292770861056", "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "id_str": "501057296781553667", "sizes": { "large": { "h": 670, "resize": "fit", "w": 1024 }, "small": { "h": 222, "resize": "fit", "w": 340 }, "medium": { "h": 392, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 99, 121 ], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1252417778, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/543892021132668928/XAgMinZw_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 449, "profile_sidebar_border_color": "C0DEED", "id_str": "1252417778", "profile_background_color": "C0DEED", "listed_count": 18, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 62259, "description": "Teklife Footwork Juke Bass Music Going feral to rewild the human organism eyes wide open in the church of what's happening now, steady in the deep end.", "friends_count": 309, "location": "NYC", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/543892021132668928/XAgMinZw_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1252417778/1416910137", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Onionlizard", "lang": "en", "profile_background_tile": false, "favourites_count": 13036, "name": "On yo face", "notifications": false, "url": null, "created_at": "Fri Mar 08 18:22:29 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 292777349, "source_status_id_str": "501057297498775553", "expanded_url": "http://twitter.com/pzf/status/501057297498775553/photo/1", "display_url": "pic.twitter.com/ubsMwGcYzv", "url": "http://t.co/ubsMwGcYzv", "media_url_https": "https://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg", "source_user_id_str": "292777349", "source_status_id": 501057297498775553, "id_str": "501057296781553667", "sizes": { "large": { "h": 670, "resize": "fit", "w": 1024 }, "small": { "h": 222, "resize": "fit", "w": 340 }, "medium": { "h": 392, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 111, 133 ], "type": "photo", "id": 501057296781553667, "media_url": "http://pbs.twimg.com/media/BvQc9OrIMAMAl6J.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @OpFerguson: This is a photo we received of a local pastor who was shot by security forces in Ferguson last night. | #OpFerguson http://…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064232570724352, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 2721777926, "indices": [ 3, 14 ], "id_str": "2721777926", "screen_name": "OpFerguson", "name": "Operation Ferguson" } ], "hashtags": [ { "indices": [ 120, 131 ], "text": "OpFerguson" } ], "urls": [], "media": [ { "source_user_id": 2721777926, "source_status_id_str": "499965266202091521", "expanded_url": "http://twitter.com/OpFerguson/status/499965266202091521/photo/1", "display_url": "pic.twitter.com/Mr9tzJ2eG9", "url": "http://t.co/Mr9tzJ2eG9", "media_url_https": "https://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg", "source_user_id_str": "2721777926", "source_status_id": 499965266202091521, "id_str": "499965265249959936", "sizes": { "large": { "h": 640, "resize": "fit", "w": 640 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 499965265249959936, "media_url": "http://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 797, "id_str": "501064232570724352", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "This is a photo we received of a local pastor who was shot by security forces in Ferguson last night. | #OpFerguson http://t.co/Mr9tzJ2eG9", "is_quote_status": false, "in_reply_to_status_id": null, "id": 499965266202091521, "favorite_count": 267, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 104, 115 ], "text": "OpFerguson" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/OpFerguson/status/499965266202091521/photo/1", "display_url": "pic.twitter.com/Mr9tzJ2eG9", "url": "http://t.co/Mr9tzJ2eG9", "media_url_https": "https://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg", "id_str": "499965265249959936", "sizes": { "large": { "h": 640, "resize": "fit", "w": 640 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 116, 138 ], "type": "photo", "id": 499965265249959936, "media_url": "http://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 797, "id_str": "499965266202091521", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2721777926, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/704841929683415040/G5_zTCMs_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 73383, "profile_sidebar_border_color": "C0DEED", "id_str": "2721777926", "profile_background_color": "C0DEED", "listed_count": 794, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 62650, "description": "Anonymous Operation Ferguson", "friends_count": 287, "location": "Ferguson, MO - USA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/704841929683415040/G5_zTCMs_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2721777926/1408632774", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "OpFerguson", "lang": "en", "profile_background_tile": false, "favourites_count": 1800, "name": "Operation Ferguson", "notifications": false, "url": null, "created_at": "Sun Aug 10 14:44:21 +0000 2014", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 14 17:06:23 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/OpFerguson/status/499965266202091521/photo/1", "display_url": "pic.twitter.com/Mr9tzJ2eG9", "url": "http://t.co/Mr9tzJ2eG9", "media_url_https": "https://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg", "id_str": "499965265249959936", "sizes": { "large": { "h": 640, "resize": "fit", "w": 640 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 116, 138 ], "type": "photo", "id": 499965265249959936, "media_url": "http://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1016818370, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/436663377817899008/H-PJHCmj_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 524, "profile_sidebar_border_color": "C0DEED", "id_str": "1016818370", "profile_background_color": "C0DEED", "listed_count": 9, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 410, "description": "#4EYMG Producer - #ScootOva - #Cloud10\n JuKoDaNewShow\r\nFor bookings email Dajuice24@gmail.com", "friends_count": 786, "location": "MD/DC/VA stand up!", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/436663377817899008/H-PJHCmj_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "JukoDaNewShow", "lang": "en", "profile_background_tile": false, "favourites_count": 79, "name": "Juko Da NewShow", "notifications": false, "url": null, "created_at": "Mon Dec 17 06:15:11 +0000 2012", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 2721777926, "source_status_id_str": "499965266202091521", "expanded_url": "http://twitter.com/OpFerguson/status/499965266202091521/photo/1", "display_url": "pic.twitter.com/Mr9tzJ2eG9", "url": "http://t.co/Mr9tzJ2eG9", "media_url_https": "https://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg", "source_user_id_str": "2721777926", "source_status_id": 499965266202091521, "id_str": "499965265249959936", "sizes": { "large": { "h": 640, "resize": "fit", "w": 640 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 499965265249959936, "media_url": "http://pbs.twimg.com/media/BvA7woNCAAAS8je.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @1970Rachael: Looting, Riots, over $10 million damages over a lost hockey game, few arrests, #whiteprivilege #vancouver #Ferguson http:/…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064235456401410, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1889304062, "indices": [ 3, 15 ], "id_str": "1889304062", "screen_name": "1970Rachael", "name": "Rachael Jones" } ], "hashtags": [ { "indices": [ 96, 111 ], "text": "whiteprivilege" }, { "indices": [ 112, 122 ], "text": "vancouver" }, { "indices": [ 123, 132 ], "text": "Ferguson" } ], "urls": [], "media": [ { "source_user_id": 1889304062, "source_status_id_str": "500794526530031616", "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg", "source_user_id_str": "1889304062", "source_status_id": 500794526530031616, "id_str": "500794524164050945", "sizes": { "small": { "h": 168, "resize": "fit", "w": 300 }, "large": { "h": 168, "resize": "fit", "w": 300 }, "medium": { "h": 168, "resize": "fit", "w": 300 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 500794524164050945, "media_url": "http://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1882, "id_str": "501064235456401410", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Looting, Riots, over $10 million damages over a lost hockey game, few arrests, #whiteprivilege #vancouver #Ferguson http://t.co/ftjDldeJtZ", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500794526530031616, "favorite_count": 579, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 79, 94 ], "text": "whiteprivilege" }, { "indices": [ 95, 105 ], "text": "vancouver" }, { "indices": [ 106, 115 ], "text": "Ferguson" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg", "id_str": "500794524164050945", "sizes": { "small": { "h": 168, "resize": "fit", "w": 300 }, "large": { "h": 168, "resize": "fit", "w": 300 }, "medium": { "h": 168, "resize": "fit", "w": 300 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 116, 138 ], "type": "photo", "id": 500794524164050945, "media_url": "http://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1882, "id_str": "500794526530031616", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1889304062, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/508364216936304640/WCaJ6MUD_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 746, "profile_sidebar_border_color": "C0DEED", "id_str": "1889304062", "profile_background_color": "C0DEED", "listed_count": 12, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 9358, "description": "mother of two, love to travel", "friends_count": 216, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/508364216936304640/WCaJ6MUD_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1889304062/1432512172", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "1970Rachael", "lang": "en", "profile_background_tile": false, "favourites_count": 14235, "name": "Rachael Jones", "notifications": false, "url": null, "created_at": "Sat Sep 21 07:40:21 +0000 2013", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 00:01:34 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg", "id_str": "500794524164050945", "sizes": { "small": { "h": 168, "resize": "fit", "w": 300 }, "large": { "h": 168, "resize": "fit", "w": 300 }, "medium": { "h": 168, "resize": "fit", "w": 300 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 116, 138 ], "type": "photo", "id": 500794524164050945, "media_url": "http://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg" }, { "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92qCYAAp7bC.jpg", "id_str": "500794524235358208", "sizes": { "large": { "h": 180, "resize": "fit", "w": 280 }, "small": { "h": 180, "resize": "fit", "w": 280 }, "medium": { "h": 180, "resize": "fit", "w": 280 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 116, 138 ], "type": "photo", "id": 500794524235358208, "media_url": "http://pbs.twimg.com/media/BvMt92qCYAAp7bC.jpg" }, { "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92zCMAAAWGQ.jpg", "id_str": "500794524273094656", "sizes": { "small": { "h": 183, "resize": "fit", "w": 275 }, "large": { "h": 183, "resize": "fit", "w": 275 }, "medium": { "h": 183, "resize": "fit", "w": 275 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 116, 138 ], "type": "photo", "id": 500794524273094656, "media_url": "http://pbs.twimg.com/media/BvMt92zCMAAAWGQ.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 33150423, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/596877627123601408/JtbSJXp-_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 182, "profile_sidebar_border_color": "C0DEED", "id_str": "33150423", "profile_background_color": "C0DEED", "listed_count": 4, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 18721, "description": "How do you know where I'm at if you havent been where I've been,understand where I'm comin from?", "friends_count": 303, "location": "Dyckman", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/596877627123601408/JtbSJXp-_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "pabsgimme", "lang": "en", "profile_background_tile": false, "favourites_count": 155, "name": "Pablo Diablo", "notifications": false, "url": null, "created_at": "Sun Apr 19 06:37:51 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 1889304062, "source_status_id_str": "500794526530031616", "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg", "source_user_id_str": "1889304062", "source_status_id": 500794526530031616, "id_str": "500794524164050945", "sizes": { "small": { "h": 168, "resize": "fit", "w": 300 }, "large": { "h": 168, "resize": "fit", "w": 300 }, "medium": { "h": 168, "resize": "fit", "w": 300 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 500794524164050945, "media_url": "http://pbs.twimg.com/media/BvMt92ZCUAEnMBS.jpg" }, { "source_user_id": 1889304062, "source_status_id_str": "500794526530031616", "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92qCYAAp7bC.jpg", "source_user_id_str": "1889304062", "source_status_id": 500794526530031616, "id_str": "500794524235358208", "sizes": { "large": { "h": 180, "resize": "fit", "w": 280 }, "small": { "h": 180, "resize": "fit", "w": 280 }, "medium": { "h": 180, "resize": "fit", "w": 280 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 500794524235358208, "media_url": "http://pbs.twimg.com/media/BvMt92qCYAAp7bC.jpg" }, { "source_user_id": 1889304062, "source_status_id_str": "500794526530031616", "expanded_url": "http://twitter.com/1970Rachael/status/500794526530031616/photo/1", "display_url": "pic.twitter.com/ftjDldeJtZ", "url": "http://t.co/ftjDldeJtZ", "media_url_https": "https://pbs.twimg.com/media/BvMt92zCMAAAWGQ.jpg", "source_user_id_str": "1889304062", "source_status_id": 500794526530031616, "id_str": "500794524273094656", "sizes": { "small": { "h": 183, "resize": "fit", "w": 275 }, "large": { "h": 183, "resize": "fit", "w": 275 }, "medium": { "h": 183, "resize": "fit", "w": 275 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 500794524273094656, "media_url": "http://pbs.twimg.com/media/BvMt92zCMAAAWGQ.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @reallyimathug: Repost From USELESS FACTS! Fuck 12! #Ferguson Shit. https://t.co/BJtHHsqhzi", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064235107897344, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 99673990, "indices": [ 3, 17 ], "id_str": "99673990", "screen_name": "reallyimathug", "name": "Nicole Jae" } ], "hashtags": [ { "indices": [ 55, 64 ], "text": "Ferguson" } ], "urls": [ { "url": "https://t.co/BJtHHsqhzi", "indices": [ 72, 95 ], "expanded_url": "https://vine.co/v/MYF9p0MMDhO", "display_url": "vine.co/v/MYF9p0MMDhO" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 6, "id_str": "501064235107897344", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Repost From USELESS FACTS! Fuck 12! #Ferguson Shit. https://t.co/BJtHHsqhzi", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501062103550410755, "favorite_count": 4, "source": "Vine - Make a Scene", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 36, 45 ], "text": "Ferguson" } ], "urls": [ { "url": "https://t.co/BJtHHsqhzi", "indices": [ 53, 76 ], "expanded_url": "https://vine.co/v/MYF9p0MMDhO", "display_url": "vine.co/v/MYF9p0MMDhO" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 6, "id_str": "501062103550410755", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 99673990, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000156110661/DuncPXwh.jpeg", "verified": false, "profile_text_color": "F50C0C", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734623358592110593/g6mw7MkN_normal.jpg", "profile_sidebar_fill_color": "E6F6F9", "entities": { "description": { "urls": [] } }, "followers_count": 12359, "profile_sidebar_border_color": "FFFFFF", "id_str": "99673990", "profile_background_color": "DBE9ED", "listed_count": 22, "is_translation_enabled": false, "utc_offset": -28800, "statuses_count": 14056, "description": "don't mix up yo people hoe. - Juvie", "friends_count": 12410, "location": "California", "profile_link_color": "050505", "profile_image_url": "http://pbs.twimg.com/profile_images/734623358592110593/g6mw7MkN_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/99673990/1461127679", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000156110661/DuncPXwh.jpeg", "screen_name": "reallyimathug", "lang": "en", "profile_background_tile": false, "favourites_count": 741, "name": "Nicole Jae", "notifications": false, "url": null, "created_at": "Sun Dec 27 09:02:05 +0000 2009", "contributors_enabled": false, "time_zone": "Alaska", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:44:49 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 316702265, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/441062551116193793/3qAzeETi.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689093260195803136/liogYpys_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 2751, "profile_sidebar_border_color": "000000", "id_str": "316702265", "profile_background_color": "000000", "listed_count": 8, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 95941, "description": "Focus on you until the focus is on you.", "friends_count": 1529, "location": "ATL - Howard University '19", "profile_link_color": "000000", "profile_image_url": "http://pbs.twimg.com/profile_images/689093260195803136/liogYpys_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/316702265/1457840564", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/441062551116193793/3qAzeETi.jpeg", "screen_name": "Ju_JustGetsIt", "lang": "en", "profile_background_tile": true, "favourites_count": 7790, "name": "Julian", "notifications": false, "url": null, "created_at": "Mon Jun 13 20:57:28 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @lordxmen2k: So what Gov wants is for people to go home and do what? Pretend murder didn't happen so that he & cops can sweep it under t…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064229764751360, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 138409823, "indices": [ 3, 14 ], "id_str": "138409823", "screen_name": "lordxmen2k", "name": "LiberalValuesNetwork" } ], "hashtags": [ { "indices": [ 143, 144 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 19, "id_str": "501064229764751360", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "So what Gov wants is for people to go home and do what? Pretend murder didn't happen so that he & cops can sweep it under the rug? #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501059100432928768, "favorite_count": 9, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 135, 144 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 19, "id_str": "501059100432928768", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 138409823, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/650889223189479424/MssaEVtQ.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/665332369210015744/hO3fNS29_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/ksYlsit7wo", "indices": [ 0, 23 ], "expanded_url": "http://www.liberalvaluesnetwork.com", "display_url": "liberalvaluesnetwork.com" } ] }, "description": { "urls": [] } }, "followers_count": 14352, "profile_sidebar_border_color": "000000", "id_str": "138409823", "profile_background_color": "131516", "listed_count": 354, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 119736, "description": "Keeping you informed with the latest news from across the Internet. Will never let Fox News a.k.a The Ministry of Misinformation win. #LVN", "friends_count": 5709, "location": "The World", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/665332369210015744/hO3fNS29_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/138409823/1444021004", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/650889223189479424/MssaEVtQ.jpg", "screen_name": "lordxmen2k", "lang": "en", "profile_background_tile": true, "favourites_count": 42415, "name": "LiberalValuesNetwork", "notifications": false, "url": "https://t.co/ksYlsit7wo", "created_at": "Thu Apr 29 13:29:46 +0000 2010", "contributors_enabled": false, "time_zone": "America/New_York", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:32:53 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2494747518, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466698522729787392/jEbAG_eN.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/707430221058842624/98xKD-Ky_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 1386, "profile_sidebar_border_color": "FFFFFF", "id_str": "2494747518", "profile_background_color": "89C9FA", "listed_count": 31, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 42638, "description": "Politically progressive, very loving. Made this twitter to tweet during TYTLive.", "friends_count": 723, "location": "", "profile_link_color": "F5ABB5", "profile_image_url": "http://pbs.twimg.com/profile_images/707430221058842624/98xKD-Ky_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2494747518/1461216268", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466698522729787392/jEbAG_eN.jpeg", "screen_name": "PrincessLib_TYT", "lang": "en", "profile_background_tile": true, "favourites_count": 51756, "name": "Annie", "notifications": false, "url": null, "created_at": "Wed May 14 19:47:02 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Project Jupyter receive 6M in funding http://t.co/p1p030aU0Q", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618602288781860864, "favorite_count": 4, "source": "Mobile Web", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/p1p030aU0Q", "indices": [ 38, 60 ], "expanded_url": "http://blog.jupyter.org/2015/07/07/jupyter-funding-2015/", "display_url": "blog.jupyter.org/2015/07/07/jup…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "618602288781860864", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 14331818, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/690939312179957760/bhU1I0aa.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686487544188526592/k4u-YEpT_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "url": { "urls": [ { "url": "http://t.co/KCVMLqoUma", "indices": [ 0, 22 ], "expanded_url": "http://inkdroid.org", "display_url": "inkdroid.org" } ] }, "description": { "urls": [] } }, "followers_count": 4220, "profile_sidebar_border_color": "000000", "id_str": "14331818", "profile_background_color": "9AE4E8", "listed_count": 356, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 23530, "description": "I'm a software developer at @umd_mith & study archives on & of the web at @iSchoolUMD", "friends_count": 2203, "location": "Silver Spring, MD", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/686487544188526592/k4u-YEpT_normal.jpg", "following": true, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/14331818/1452465995", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/690939312179957760/bhU1I0aa.jpg", "screen_name": "edsu", "lang": "en", "profile_background_tile": false, "favourites_count": 7560, "name": "Ed Summers", "notifications": false, "url": "http://t.co/KCVMLqoUma", "created_at": "Tue Apr 08 12:43:41 +0000 2008", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Jul 08 02:07:33 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Siguen sus patrocinadores que apoyan el Islam más radical.\n\nLo que es inconcebible es como sus amigos del looby... http://t.co/XMEA8MB00i", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172320880533504, "favorite_count": 0, "source": "Facebook", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/XMEA8MB00i", "indices": [ 115, 137 ], "expanded_url": "http://fb.me/3PX5tyirG", "display_url": "fb.me/3PX5tyirG" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172320880533504", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 206608014, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/459182807864971264/4nrR9RxQ.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/716015158397636608/OZVvgqSB_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/7Z35Hw1eJw", "indices": [ 0, 23 ], "expanded_url": "http://www.facebook.com/armintenn", "display_url": "facebook.com/armintenn" } ] }, "description": { "urls": [] } }, "followers_count": 3212, "profile_sidebar_border_color": "000000", "id_str": "206608014", "profile_background_color": "131516", "listed_count": 21, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 43221, "description": "", "friends_count": 3189, "location": " Spain", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/716015158397636608/OZVvgqSB_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/206608014/1460764993", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/459182807864971264/4nrR9RxQ.jpeg", "screen_name": "ArminTenn", "lang": "es", "profile_background_tile": true, "favourites_count": 1175, "name": "Armin Tenn", "notifications": false, "url": "https://t.co/7Z35Hw1eJw", "created_at": "Sat Oct 23 09:46:59 +0000 2010", "contributors_enabled": false, "time_zone": "Madrid", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:39 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Dick Cheney’s Ongoing Descent Into Insanity Accidentally Clarifies Iran Debate http://t.co/vlEHC6W6f8 via @intelligencer", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172281751711748, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 45565185, "indices": [ 106, 120 ], "id_str": "45565185", "screen_name": "intelligencer", "name": "Daily Intelligencer" } ], "hashtags": [], "urls": [ { "url": "http://t.co/vlEHC6W6f8", "indices": [ 79, 101 ], "expanded_url": "http://nym.ag/1FhHSII?mid=twitter-share-di", "display_url": "nym.ag/1FhHSII?mid=tw…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172281751711748", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 27202261, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/460540621711609856/BwpiSM4v_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 1201, "profile_sidebar_border_color": "C0DEED", "id_str": "27202261", "profile_background_color": "C0DEED", "listed_count": 16, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 23715, "description": "", "friends_count": 1812, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/460540621711609856/BwpiSM4v_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Dushan41", "lang": "en", "profile_background_tile": false, "favourites_count": 4, "name": "Dushan", "notifications": false, "url": null, "created_at": "Sat Mar 28 09:04:18 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:30 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @Jerusalem_Post: US remains quiet as Russia and Iran seek to close nuclear deal in 'hours' http://t.co/72vUX7XU6I", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172227813126144, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 19489239, "indices": [ 3, 18 ], "id_str": "19489239", "screen_name": "Jerusalem_Post", "name": "The Jerusalem Post" } ], "hashtags": [], "urls": [ { "url": "http://t.co/72vUX7XU6I", "indices": [ 94, 116 ], "expanded_url": "http://bit.ly/1HkYoTD", "display_url": "bit.ly/1HkYoTD" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619172227813126144", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "US remains quiet as Russia and Iran seek to close nuclear deal in 'hours' http://t.co/72vUX7XU6I", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619149783588995073, "favorite_count": 11, "source": "twitterfeed", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/72vUX7XU6I", "indices": [ 74, 96 ], "expanded_url": "http://bit.ly/1HkYoTD", "display_url": "bit.ly/1HkYoTD" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619149783588995073", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 19489239, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/807693672/d3fad13d9b3c1a30b4178707b6f5c510.jpeg", "verified": true, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2277095328/1fgtdoo7v3pypp6j6it2_normal.jpeg", "profile_sidebar_fill_color": "F7F2F2", "entities": { "url": { "urls": [ { "url": "http://t.co/rpl4VioSDq", "indices": [ 0, 22 ], "expanded_url": "http://www.jpost.com", "display_url": "jpost.com" } ] }, "description": { "urls": [ { "url": "http://t.co/jGNlQw5vX8", "indices": [ 132, 154 ], "expanded_url": "http://on.fb.me/1rXHPsJ", "display_url": "on.fb.me/1rXHPsJ" } ] } }, "followers_count": 269970, "profile_sidebar_border_color": "FFFFFF", "id_str": "19489239", "profile_background_color": "FFFFFF", "listed_count": 7297, "is_translation_enabled": false, "utc_offset": -7200, "statuses_count": 100766, "description": "The official Jerusalem Post Twitter page featuring breaking news from Israel, the Middle East and the Jewish World.\r\n\r\nOn Facebook: http://t.co/jGNlQw5vX8", "friends_count": 23760, "location": "Israel ", "profile_link_color": "BB131A", "profile_image_url": "http://pbs.twimg.com/profile_images/2277095328/1fgtdoo7v3pypp6j6it2_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/19489239/1355937086", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/807693672/d3fad13d9b3c1a30b4178707b6f5c510.jpeg", "screen_name": "Jerusalem_Post", "lang": "en", "profile_background_tile": false, "favourites_count": 45, "name": "The Jerusalem Post", "notifications": false, "url": "http://t.co/rpl4VioSDq", "created_at": "Sun Jan 25 14:17:26 +0000 2009", "contributors_enabled": false, "time_zone": "Greenland", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 14:23:06 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2432870707, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/683832311138357248/_PwbOSEX_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 503, "profile_sidebar_border_color": "C0DEED", "id_str": "2432870707", "profile_background_color": "C0DEED", "listed_count": 29, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 18261, "description": "", "friends_count": 2076, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/683832311138357248/_PwbOSEX_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2432870707/1449454835", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "KringlaHeimsins", "lang": "no", "profile_background_tile": false, "favourites_count": 10130, "name": "Heimskringla", "notifications": false, "url": null, "created_at": "Tue Apr 08 01:46:57 +0000 2014", "contributors_enabled": false, "time_zone": "Paris", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:17 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "“Despedirse no duele, duelen todos los momentos que se irán con ese adiós.” — Hazel Grace.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172331592773632, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172331592773632", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2500422674, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/522498476521705473/0q2Cf9sg_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 17, "profile_sidebar_border_color": "C0DEED", "id_str": "2500422674", "profile_background_color": "C0DEED", "listed_count": 0, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 201, "description": "ℒℴ ℚuℯ ℳℯ ℋacℯ ℱℯℓiz ℯs ℰstar ℭℴntiℊℴ ℬℴca ℚuℯridℴ ♥яє∂ нσт ςнιℓι ρєρρєяѕ♥ Blandista♥", "friends_count": 43, "location": "Merida", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/522498476521705473/0q2Cf9sg_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "pecanEgba74318", "lang": "en", "profile_background_tile": false, "favourites_count": 6, "name": "Juan Peña", "notifications": false, "url": null, "created_at": "Sat May 17 02:42:44 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "es", "created_at": "Thu Jul 09 15:52:42 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Obama, lawmakers brace for end of Iran talks http://t.co/dDP0H3acH3", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172162608463873, "favorite_count": 0, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/dDP0H3acH3", "indices": [ 45, 67 ], "expanded_url": "http://ift.tt/1KXNpVM", "display_url": "ift.tt/1KXNpVM" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172162608463873", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 2944164937, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/640699128834564096/f_kmhntm_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "url": { "urls": [ { "url": "https://t.co/D2Sgigx00x", "indices": [ 0, 23 ], "expanded_url": "https://plus.google.com/+MiroslavMiroGeorgiev", "display_url": "plus.google.com/+MiroslavMiroG…" } ] }, "description": { "urls": [] } }, "followers_count": 946, "profile_sidebar_border_color": "000000", "id_str": "2944164937", "profile_background_color": "000000", "listed_count": 142, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 337679, "description": "#Liberté, #égalité, #fraternité\n#ViveLaFrance #ViveLaTerre", "friends_count": 4234, "location": "Stone Mountain, GA", "profile_link_color": "000000", "profile_image_url": "http://pbs.twimg.com/profile_images/640699128834564096/f_kmhntm_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2944164937/1419614501", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "mirogeorgiev97", "lang": "en", "profile_background_tile": false, "favourites_count": 1263, "name": "Miroslav Georgiev", "notifications": false, "url": "https://t.co/D2Sgigx00x", "created_at": "Fri Dec 26 17:07:31 +0000 2014", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:01 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @marcbassets: tensión+expectativas en las últimas horas de negociación con Irán en la Theodor-Herzl-Platz de Viena #IranTalksVienna http…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172236134588416, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 101609539, "indices": [ 3, 15 ], "id_str": "101609539", "screen_name": "marcbassets", "name": "Marc Bassets" } ], "hashtags": [ { "indices": [ 118, 134 ], "text": "IranTalksVienna" } ], "urls": [], "media": [ { "source_user_id": 101609539, "source_status_id_str": "619171536600219648", "expanded_url": "http://twitter.com/marcbassets/status/619171536600219648/photo/1", "display_url": "pic.twitter.com/pNYeq4Iw31", "url": "http://t.co/pNYeq4Iw31", "media_url_https": "https://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg", "source_user_id_str": "101609539", "source_status_id": 619171536600219648, "id_str": "619171517545451520", "sizes": { "large": { "h": 640, "resize": "fit", "w": 852 }, "small": { "h": 255, "resize": "fit", "w": 340 }, "medium": { "h": 451, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 619171517545451520, "media_url": "http://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "619172236134588416", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "tensión+expectativas en las últimas horas de negociación con Irán en la Theodor-Herzl-Platz de Viena #IranTalksVienna http://t.co/pNYeq4Iw31", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171536600219648, "favorite_count": 2, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 101, 117 ], "text": "IranTalksVienna" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/marcbassets/status/619171536600219648/photo/1", "display_url": "pic.twitter.com/pNYeq4Iw31", "url": "http://t.co/pNYeq4Iw31", "media_url_https": "https://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg", "id_str": "619171517545451520", "sizes": { "large": { "h": 640, "resize": "fit", "w": 852 }, "small": { "h": 255, "resize": "fit", "w": 340 }, "medium": { "h": 451, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 118, 140 ], "type": "photo", "id": 619171517545451520, "media_url": "http://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "619171536600219648", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 101609539, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/531658888635224064/UUSIhsKV_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/6UiBMCTTx4", "indices": [ 0, 23 ], "expanded_url": "http://elpais.com/autor/marc_bassets_claret/a/", "display_url": "elpais.com/autor/marc_bas…" } ] }, "description": { "urls": [] } }, "followers_count": 4227, "profile_sidebar_border_color": "C0DEED", "id_str": "101609539", "profile_background_color": "C0DEED", "listed_count": 190, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 12190, "description": "El País, USA. Barcelona, Bruxelles, Berlin, New York, Washington. Ex-Vanguardia", "friends_count": 751, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/531658888635224064/UUSIhsKV_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "marcbassets", "lang": "en", "profile_background_tile": false, "favourites_count": 10193, "name": "Marc Bassets", "notifications": false, "url": "https://t.co/6UiBMCTTx4", "created_at": "Mon Jan 04 00:16:33 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:49:32 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/marcbassets/status/619171536600219648/photo/1", "display_url": "pic.twitter.com/pNYeq4Iw31", "url": "http://t.co/pNYeq4Iw31", "media_url_https": "https://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg", "id_str": "619171517545451520", "sizes": { "large": { "h": 640, "resize": "fit", "w": 852 }, "small": { "h": 255, "resize": "fit", "w": 340 }, "medium": { "h": 451, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 118, 140 ], "type": "photo", "id": 619171517545451520, "media_url": "http://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 274013085, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1799626336/claudi2_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "url": { "urls": [ { "url": "https://t.co/G4MCMG7YRe", "indices": [ 0, 23 ], "expanded_url": "http://elpais.com/autor/claudi_perez/a/", "display_url": "elpais.com/autor/claudi_p…" } ] }, "description": { "urls": [] } }, "followers_count": 12566, "profile_sidebar_border_color": "000000", "id_str": "274013085", "profile_background_color": "000000", "listed_count": 565, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 23660, "description": "Brussels bureau chief, El País.", "friends_count": 2119, "location": "", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/1799626336/claudi2_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/274013085/1459967068", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "claudiperez", "lang": "es", "profile_background_tile": false, "favourites_count": 1905, "name": "Claudi Pérez", "notifications": false, "url": "https://t.co/G4MCMG7YRe", "created_at": "Tue Mar 29 15:17:26 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:19 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 101609539, "source_status_id_str": "619171536600219648", "expanded_url": "http://twitter.com/marcbassets/status/619171536600219648/photo/1", "display_url": "pic.twitter.com/pNYeq4Iw31", "url": "http://t.co/pNYeq4Iw31", "media_url_https": "https://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg", "source_user_id_str": "101609539", "source_status_id": 619171536600219648, "id_str": "619171517545451520", "sizes": { "large": { "h": 640, "resize": "fit", "w": 852 }, "small": { "h": 255, "resize": "fit", "w": 340 }, "medium": { "h": 451, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 619171517545451520, "media_url": "http://pbs.twimg.com/media/CJe9NvZWEAAaLQK.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "Medios israelíes: Israel ha sido vencido por Irán: http://t.co/uKAGBY6jya", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172170233679872, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/uKAGBY6jya", "indices": [ 51, 73 ], "expanded_url": "http://www.almanar.com.lb/spanish/adetails.php?eid=99845&frid=23&seccatid=30&cid=23&fromval=1#.VZ6X6RTpAGI.twitter", "display_url": "almanar.com.lb/spanish/adetai…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172170233679872", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 339224221, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/430686460493053952/zCl26nQe_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 192, "profile_sidebar_border_color": "C0DEED", "id_str": "339224221", "profile_background_color": "C0DEED", "listed_count": 1, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 1181, "description": "", "friends_count": 189, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/430686460493053952/zCl26nQe_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "CarlosPPartidas", "lang": "es", "profile_background_tile": false, "favourites_count": 37, "name": "Carlos P Partidas", "notifications": false, "url": null, "created_at": "Wed Jul 20 19:35:20 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:03 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Rand Paul Promises to Illegally Trade Weapons for Hostages With Iran http://t.co/331OtRvnyh via @intelligencer", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172321564098560, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 45565185, "indices": [ 96, 110 ], "id_str": "45565185", "screen_name": "intelligencer", "name": "Daily Intelligencer" } ], "hashtags": [], "urls": [ { "url": "http://t.co/331OtRvnyh", "indices": [ 69, 91 ], "expanded_url": "http://nym.ag/1FcDxqi?mid=twitter-share-di", "display_url": "nym.ag/1FcDxqi?mid=tw…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172321564098560", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 27202261, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/460540621711609856/BwpiSM4v_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 1201, "profile_sidebar_border_color": "C0DEED", "id_str": "27202261", "profile_background_color": "C0DEED", "listed_count": 16, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 23715, "description": "", "friends_count": 1812, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/460540621711609856/BwpiSM4v_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Dushan41", "lang": "en", "profile_background_tile": false, "favourites_count": 4, "name": "Dushan", "notifications": false, "url": null, "created_at": "Sat Mar 28 09:04:18 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:39 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "@MEAIndia @narendramodi @HassanRouhani terrorist country iran should stop terror against India &Israel", "is_quote_status": false, "in_reply_to_status_id": 619016126685523968, "id": 619172282183725056, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 441636351, "indices": [ 0, 9 ], "id_str": "441636351", "screen_name": "MEAIndia", "name": "Vikas Swarup" }, { "id": 18839785, "indices": [ 10, 23 ], "id_str": "18839785", "screen_name": "narendramodi", "name": "Narendra Modi" }, { "id": 1404590618, "indices": [ 24, 38 ], "id_str": "1404590618", "screen_name": "HassanRouhani", "name": "Hassan Rouhani" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": "MEAIndia", "in_reply_to_user_id": 441636351, "retweet_count": 0, "id_str": "619172282183725056", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1249284978, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/493996009555361792/MXythK0I_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 196, "profile_sidebar_border_color": "C0DEED", "id_str": "1249284978", "profile_background_color": "C0DEED", "listed_count": 6, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 9879, "description": "", "friends_count": 9, "location": "Kurukshetra (Haryana),INDIA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/493996009555361792/MXythK0I_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "SumitSidhu7", "lang": "en", "profile_background_tile": false, "favourites_count": 5944, "name": "Sumit Sidhu", "notifications": false, "url": null, "created_at": "Thu Mar 07 15:00:49 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "441636351", "lang": "en", "created_at": "Thu Jul 09 15:52:30 +0000 2015", "in_reply_to_status_id_str": "619016126685523968", "place": null }, { "contributors": null, "truncated": false, "text": "RT @StephyIsChillin: @zellieimani ferguson, surrounding counties, and county (brown) police are know for their disgusting abuse of power ag…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064228288364546, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 325076723, "indices": [ 21, 33 ], "id_str": "325076723", "screen_name": "zellieimani", "name": "zellie" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 8, "id_str": "501064228288364546", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "@zellieimani ferguson, surrounding counties, and county (brown) police are know for their disgusting abuse of power against us! Corruption!!", "is_quote_status": false, "in_reply_to_status_id": 501061201141309440, "id": 501061859575734272, "favorite_count": 3, "source": "Tweetlogix", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 325076723, "indices": [ 0, 12 ], "id_str": "325076723", "screen_name": "zellieimani", "name": "zellie" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": "zellieimani", "in_reply_to_user_id": 325076723, "retweet_count": 8, "id_str": "501061859575734272", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 31878193, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000127139100/3oNb8I_n.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/730122442044149760/L10Uuy4Z_normal.jpg", "profile_sidebar_fill_color": "F6F6F6", "entities": { "description": { "urls": [] } }, "followers_count": 1946, "profile_sidebar_border_color": "000000", "id_str": "31878193", "profile_background_color": "191C10", "listed_count": 75, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 135080, "description": "stay out my happy place. follow-- @CannaBeFree", "friends_count": 1496, "location": "BrownGirl 314 ✌️", "profile_link_color": "038543", "profile_image_url": "http://pbs.twimg.com/profile_images/730122442044149760/L10Uuy4Z_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31878193/1456539315", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000127139100/3oNb8I_n.jpeg", "screen_name": "LivingLoving314", "lang": "en", "profile_background_tile": false, "favourites_count": 23999, "name": "StephanieShante", "notifications": false, "url": null, "created_at": "Thu Apr 16 15:13:17 +0000 2009", "contributors_enabled": false, "time_zone": "America/Chicago", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "325076723", "lang": "en", "created_at": "Sun Aug 17 17:43:51 +0000 2014", "in_reply_to_status_id_str": "501061201141309440", "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 23598003, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "0E0D11", "profile_image_url_https": "https://pbs.twimg.com/profile_images/590576292984188929/Gsk_cRvk_normal.jpg", "profile_sidebar_fill_color": "E8E8F7", "entities": { "description": { "urls": [] } }, "followers_count": 1163, "profile_sidebar_border_color": "130107", "id_str": "23598003", "profile_background_color": "3E43EF", "listed_count": 53, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 37982, "description": "Compassionate Cynic. Follow me and I will follow you, if @Twitter lets me!", "friends_count": 2005, "location": "USA", "profile_link_color": "1C08E7", "profile_image_url": "http://pbs.twimg.com/profile_images/590576292984188929/Gsk_cRvk_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "victoriasview", "lang": "en", "profile_background_tile": true, "favourites_count": 18350, "name": "Victoria's View 365", "notifications": false, "url": null, "created_at": "Tue Mar 10 14:30:25 +0000 2009", "contributors_enabled": false, "time_zone": "America/Los_Angeles", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @mkraju: Senior senators DO NOT expect Kerry to announce Iran deal today. But do expect the administration to suggest there have been br…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172157197819905, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 39155029, "indices": [ 3, 10 ], "id_str": "39155029", "screen_name": "mkraju", "name": "Manu Raju" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 19, "id_str": "619172157197819905", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Senior senators DO NOT expect Kerry to announce Iran deal today. But do expect the administration to suggest there have been breakthroughs", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619170599471083520, "favorite_count": 6, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 19, "id_str": "619170599471083520", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 39155029, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/139198220/Wrigley_web3.jpg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/697549062103547904/s4Uq3S2u_normal.jpg", "profile_sidebar_fill_color": "C0DFEC", "entities": { "url": { "urls": [ { "url": "https://t.co/vtt0v8C3y8", "indices": [ 0, 23 ], "expanded_url": "http://www.facebook.com/mkraju00", "display_url": "facebook.com/mkraju00" } ] }, "description": { "urls": [] } }, "followers_count": 31027, "profile_sidebar_border_color": "A8C7F7", "id_str": "39155029", "profile_background_color": "022330", "listed_count": 1129, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 14821, "description": "Senior Political Reporter, @CNN. Covering Capitol Hill and 2016. @POLITICO vet. Die-hard Chicago sports fan. Wisconsin Badger for life. manu.raju @cnn.com", "friends_count": 3252, "location": "The Capitol", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/697549062103547904/s4Uq3S2u_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/39155029/1456522880", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/139198220/Wrigley_web3.jpg", "screen_name": "mkraju", "lang": "en", "profile_background_tile": false, "favourites_count": 987, "name": "Manu Raju", "notifications": false, "url": "https://t.co/vtt0v8C3y8", "created_at": "Mon May 11 01:13:00 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:45:49 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 16192197, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000008522306/d6b7c65e64af4253fc7f7cd9278a9dfd.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/719541638968664064/hcIDOzVi_normal.jpg", "profile_sidebar_fill_color": "A4D48C", "entities": { "url": { "urls": [ { "url": "http://t.co/IlRGizNGqq", "indices": [ 0, 22 ], "expanded_url": "http://uani.com", "display_url": "uani.com" } ] }, "description": { "urls": [] } }, "followers_count": 7604, "profile_sidebar_border_color": "FFFFFF", "id_str": "16192197", "profile_background_color": "D9E0D9", "listed_count": 310, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 29764, "description": "United Against Nuclear Iran is a not-for-profit, non-partisan, advocacy group that seeks to prevent Iran from fulfilling its ambition to obtain nuclear weapons.", "friends_count": 1010, "location": "", "profile_link_color": "083D41", "profile_image_url": "http://pbs.twimg.com/profile_images/719541638968664064/hcIDOzVi_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/16192197/1462568525", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000008522306/d6b7c65e64af4253fc7f7cd9278a9dfd.jpeg", "screen_name": "UANI", "lang": "en", "profile_background_tile": false, "favourites_count": 75, "name": "UANI", "notifications": false, "url": "http://t.co/IlRGizNGqq", "created_at": "Mon Sep 08 21:09:04 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:00 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @agabriew: -mamá, ¿puedo salir?\n-no.\n-pero todos mis amigos irán.\n-¡no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172300689031168, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 3246768862, "indices": [ 3, 12 ], "id_str": "3246768862", "screen_name": "agabriew", "name": "‏️‏️" } ], "hashtags": [], "urls": [], "media": [ { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "619172300689031168", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "-mamá, ¿puedo salir?\n-no.\n-pero todos mis amigos irán.\n-¡no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618569774763630592, "favorite_count": 318, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [ { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "618569774763630592", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 3246768862, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 804, "profile_sidebar_border_color": "000000", "id_str": "3246768862", "profile_background_color": "000000", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 839, "description": "en un día largo me quité el sostén", "friends_count": 296, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3246768862/1456961166", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "screen_name": "agabriew", "lang": "es", "profile_background_tile": true, "favourites_count": 53353, "name": "‏️‏️", "notifications": false, "url": null, "created_at": "Mon May 11 20:00:55 +0000 2015", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Tue Jul 07 23:58:21 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" }, { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "id_str": "618569772037500929", "sizes": { "small": { "h": 510, "resize": "fit", "w": 340 }, "large": { "h": 900, "resize": "fit", "w": 600 }, "medium": { "h": 900, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2195036713, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/730795221038993412/ICFBeE0A_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 369, "profile_sidebar_border_color": "C0DEED", "id_str": "2195036713", "profile_background_color": "C0DEED", "listed_count": 1, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 23730, "description": "17. Humacao.", "friends_count": 137, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/730795221038993412/ICFBeE0A_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2195036713/1461116872", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "_ylberr", "lang": "es", "profile_background_tile": false, "favourites_count": 946, "name": "yamiiiiiii", "notifications": false, "url": null, "created_at": "Thu Nov 14 23:36:05 +0000 2013", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:34 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" }, { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772037500929", "sizes": { "small": { "h": 510, "resize": "fit", "w": 340 }, "large": { "h": 900, "resize": "fit", "w": 600 }, "medium": { "h": 900, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "Wie man in Teheran durch den Stau kommt - mit Sirene und Blaulicht! Tagessatz: zwischen 250 bis 300 Euro. Mehr: \nhttp://t.co/54C8IoOsCV", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172338177843200, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/54C8IoOsCV", "indices": [ 113, 135 ], "expanded_url": "http://iranjournal.org/bilder-aus-dem-iran", "display_url": "iranjournal.org/bilder-aus-dem…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172338177843200", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 62625898, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000077406500/a65e118e0a30fd484c8217bd797d964a.jpeg", "verified": false, "profile_text_color": "634047", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660155286905229312/uRu3bt23_normal.png", "profile_sidebar_fill_color": "E3E2DE", "entities": { "description": { "urls": [ { "url": "http://t.co/iy63fwBy", "indices": [ 26, 46 ], "expanded_url": "http://www.ohchr.org/en/udhr/pages/introduction.aspx", "display_url": "ohchr.org/en/udhr/pages/…" } ] } }, "followers_count": 1720, "profile_sidebar_border_color": "FFFFFF", "id_str": "62625898", "profile_background_color": "941616", "listed_count": 198, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 428004, "description": "Human Rights Defender \r\n\r\nhttp://t.co/iy63fwBy", "friends_count": 2010, "location": "Eurasien", "profile_link_color": "088253", "profile_image_url": "http://pbs.twimg.com/profile_images/660155286905229312/uRu3bt23_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/62625898/1374960404", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000077406500/a65e118e0a30fd484c8217bd797d964a.jpeg", "screen_name": "DeinAyurvedaNet", "lang": "en", "profile_background_tile": false, "favourites_count": 81860, "name": "Dein Ayurveda Net", "notifications": false, "url": null, "created_at": "Mon Aug 03 21:25:15 +0000 2009", "contributors_enabled": false, "time_zone": "Berlin", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "de", "created_at": "Thu Jul 09 15:52:43 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @NegarMortazavi: A nuclear agreement will remove threat of war from Iran, empower moderates, weaken radicals, energize civil society, im…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172314710609920, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 41789292, "indices": [ 3, 18 ], "id_str": "41789292", "screen_name": "NegarMortazavi", "name": "Negar نگار" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 53, "id_str": "619172314710609920", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "A nuclear agreement will remove threat of war from Iran, empower moderates, weaken radicals, energize civil society, improve people's lives.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619168450594783232, "favorite_count": 73, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 53, "id_str": "619168450594783232", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 41789292, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/457181709620875264/PJZE_U5L.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686329053792452608/ACwT-F-9_normal.png", "profile_sidebar_fill_color": "F3F3F3", "entities": { "url": { "urls": [ { "url": "https://t.co/se8qLevfG2", "indices": [ 0, 23 ], "expanded_url": "http://facebook.com/negarmore", "display_url": "facebook.com/negarmore" } ] }, "description": { "urls": [] } }, "followers_count": 96054, "profile_sidebar_border_color": "FFFFFF", "id_str": "41789292", "profile_background_color": "EBEBEB", "listed_count": 1378, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 21872, "description": "Iranian-American Journalist and Commentator | Guardian's list of top 10 twitter feeds on #Iran | Former TV host @VOANews", "friends_count": 1772, "location": "New York, NY", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/686329053792452608/ACwT-F-9_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41789292/1443117502", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/457181709620875264/PJZE_U5L.jpeg", "screen_name": "NegarMortazavi", "lang": "en", "profile_background_tile": false, "favourites_count": 35396, "name": "Negar نگار", "notifications": false, "url": "https://t.co/se8qLevfG2", "created_at": "Fri May 22 10:38:56 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:37:16 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2381151, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000163848632/QpUNaLgi.jpeg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/34648722/amir2_normal.jpg", "profile_sidebar_fill_color": "E0FF92", "entities": { "description": { "urls": [] } }, "followers_count": 381, "profile_sidebar_border_color": "FFFFFF", "id_str": "2381151", "profile_background_color": "B2DFDA", "listed_count": 27, "is_translation_enabled": false, "utc_offset": 16200, "statuses_count": 4437, "description": "A PhD Candidate of systems engineering. Loves stories, traveling, food, Indie music and start-ups. DC is the wife of my neighbor.", "friends_count": 1742, "location": "Qazvin , iran", "profile_link_color": "93A644", "profile_image_url": "http://pbs.twimg.com/profile_images/34648722/amir2_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000163848632/QpUNaLgi.jpeg", "screen_name": "contromir", "lang": "en", "profile_background_tile": false, "favourites_count": 1521, "name": "Amir", "notifications": false, "url": null, "created_at": "Tue Mar 27 00:52:38 +0000 2007", "contributors_enabled": false, "time_zone": "Tehran", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:38 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @NegarMortazavi: A nuclear agreement will remove threat of war from Iran, empower moderates, weaken radicals, energize civil society, im…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172275741298688, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 41789292, "indices": [ 3, 18 ], "id_str": "41789292", "screen_name": "NegarMortazavi", "name": "Negar نگار" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 53, "id_str": "619172275741298688", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "A nuclear agreement will remove threat of war from Iran, empower moderates, weaken radicals, energize civil society, improve people's lives.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619168450594783232, "favorite_count": 73, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 53, "id_str": "619168450594783232", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 41789292, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/457181709620875264/PJZE_U5L.jpeg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686329053792452608/ACwT-F-9_normal.png", "profile_sidebar_fill_color": "F3F3F3", "entities": { "url": { "urls": [ { "url": "https://t.co/se8qLevfG2", "indices": [ 0, 23 ], "expanded_url": "http://facebook.com/negarmore", "display_url": "facebook.com/negarmore" } ] }, "description": { "urls": [] } }, "followers_count": 96054, "profile_sidebar_border_color": "FFFFFF", "id_str": "41789292", "profile_background_color": "EBEBEB", "listed_count": 1378, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 21872, "description": "Iranian-American Journalist and Commentator | Guardian's list of top 10 twitter feeds on #Iran | Former TV host @VOANews", "friends_count": 1772, "location": "New York, NY", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/686329053792452608/ACwT-F-9_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/41789292/1443117502", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/457181709620875264/PJZE_U5L.jpeg", "screen_name": "NegarMortazavi", "lang": "en", "profile_background_tile": false, "favourites_count": 35396, "name": "Negar نگار", "notifications": false, "url": "https://t.co/se8qLevfG2", "created_at": "Fri May 22 10:38:56 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:37:16 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 47073035, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/498666396583084032/3PK3dkBL_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 63, "profile_sidebar_border_color": "C0DEED", "id_str": "47073035", "profile_background_color": "C0DEED", "listed_count": 8, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 3450, "description": "", "friends_count": 154, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/498666396583084032/3PK3dkBL_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/47073035/1381985367", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "msoltanm", "lang": "en", "profile_background_tile": false, "favourites_count": 334, "name": "Mehdi Soltan M", "notifications": false, "url": null, "created_at": "Sun Jun 14 10:55:54 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:28 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Kerry to make statement on Iran nuclear talks http://t.co/X5RqURv5tu", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172281294655488, "favorite_count": 0, "source": "Facebook", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/X5RqURv5tu", "indices": [ 46, 68 ], "expanded_url": "http://fb.me/6HI0yqdBy", "display_url": "fb.me/6HI0yqdBy" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172281294655488", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 42226593, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595898101/k1v8f8sh44ssaxvp28bx.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692365304995975168/xly9-72s_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 2114, "profile_sidebar_border_color": "C0DEED", "id_str": "42226593", "profile_background_color": "642D8B", "listed_count": 75, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 250349, "description": "Born Again, Conservative, pilot. It's time to take America back!", "friends_count": 2153, "location": "Ohio", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/692365304995975168/xly9-72s_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/42226593/1398268696", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595898101/k1v8f8sh44ssaxvp28bx.jpeg", "screen_name": "shirleycolleen", "lang": "en", "profile_background_tile": true, "favourites_count": 12161, "name": "Colleen Hunt", "notifications": false, "url": null, "created_at": "Sun May 24 15:21:14 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:30 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @conchienchia: .@NelsonBocaranda y que diràn los apatridas como tù d esta forma d combatir disturbios sociales en #Ferguson? http://t.co…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064231304065026, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 415855797, "indices": [ 3, 16 ], "id_str": "415855797", "screen_name": "conchienchia", "name": "Chino' Viamonte" }, { "id": 23719107, "indices": [ 19, 35 ], "id_str": "23719107", "screen_name": "nelsonbocaranda", "name": "Nelson Bocaranda S." } ], "hashtags": [ { "indices": [ 117, 126 ], "text": "Ferguson" } ], "urls": [], "media": [ { "source_user_id": 415855797, "source_status_id_str": "501064028039684096", "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "source_user_id_str": "415855797", "source_status_id": 501064028039684096, "id_str": "501064025825087488", "sizes": { "large": { "h": 319, "resize": "fit", "w": 457 }, "small": { "h": 237, "resize": "fit", "w": 340 }, "medium": { "h": 319, "resize": "fit", "w": 457 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 33, "id_str": "501064231304065026", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": ".@NelsonBocaranda y que diràn los apatridas como tù d esta forma d combatir disturbios sociales en #Ferguson? http://t.co/nIBbnLO5Gh", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064028039684096, "favorite_count": 3, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 23719107, "indices": [ 1, 17 ], "id_str": "23719107", "screen_name": "nelsonbocaranda", "name": "Nelson Bocaranda S." } ], "hashtags": [ { "indices": [ 99, 108 ], "text": "Ferguson" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "id_str": "501064025825087488", "sizes": { "large": { "h": 319, "resize": "fit", "w": 457 }, "small": { "h": 237, "resize": "fit", "w": 340 }, "medium": { "h": 319, "resize": "fit", "w": 457 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 110, 132 ], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 33, "id_str": "501064028039684096", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 415855797, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722956968630079488/yf_NfQjM_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 17785, "profile_sidebar_border_color": "C0DEED", "id_str": "415855797", "profile_background_color": "C0DEED", "listed_count": 67, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 29943, "description": "primero, ser humano, despuesAbogado,militante revolucionario,agroproductor, 18 años comprometido con el proyecto SIMÓN BOLIVAR.", "friends_count": 19522, "location": "algún lugar de venezuela", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/722956968630079488/yf_NfQjM_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/415855797/1461201322", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "conchienchia", "lang": "es", "profile_background_tile": false, "favourites_count": 65, "name": "Chino' Viamonte", "notifications": false, "url": null, "created_at": "Fri Nov 18 22:24:49 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:52:28 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "id_str": "501064025825087488", "sizes": { "large": { "h": 319, "resize": "fit", "w": 457 }, "small": { "h": 237, "resize": "fit", "w": 340 }, "medium": { "h": 319, "resize": "fit", "w": 457 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 110, 132 ], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 109035228, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/652113414605697028/CBcw-_ao.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652114309544312832/Dynagtt7_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 810, "profile_sidebar_border_color": "C0DEED", "id_str": "109035228", "profile_background_color": "642D8B", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 25077, "description": "Cumanés, Profesor Titular Jubilado (UDO).. Revolucionario toda su vida...", "friends_count": 697, "location": "Maturin, Cumaná, CCS ", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/652114309544312832/Dynagtt7_normal.jpg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/652113414605697028/CBcw-_ao.jpg", "screen_name": "lgriverob", "lang": "es", "profile_background_tile": false, "favourites_count": 61, "name": "LuisRiveroBadaracco", "notifications": false, "url": null, "created_at": "Wed Jan 27 19:34:29 +0000 2010", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 415855797, "source_status_id_str": "501064028039684096", "expanded_url": "http://twitter.com/conchienchia/status/501064028039684096/photo/1", "display_url": "pic.twitter.com/nIBbnLO5Gh", "url": "http://t.co/nIBbnLO5Gh", "media_url_https": "https://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg", "source_user_id_str": "415855797", "source_status_id": 501064028039684096, "id_str": "501064025825087488", "sizes": { "large": { "h": 319, "resize": "fit", "w": 457 }, "small": { "h": 237, "resize": "fit", "w": 340 }, "medium": { "h": 319, "resize": "fit", "w": 457 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501064025825087488, "media_url": "http://pbs.twimg.com/media/BvQjE6UIEAAssJ2.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @justinsink: No deal today. Diplomats will need at least another day to strike a possible nuclear accord with Iran, officials tell @Indi…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172313846693890, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 346197350, "indices": [ 3, 14 ], "id_str": "346197350", "screen_name": "justinsink", "name": "Justin Sink" }, { "id": 239857777, "indices": [ 134, 140 ], "id_str": "239857777", "screen_name": "Indira_L", "name": "Indira Lakshmanan" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "619172313846693890", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "No deal today. Diplomats will need at least another day to strike a possible nuclear accord with Iran, officials tell @Indira_L in Vienna", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619170363184939008, "favorite_count": 2, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 239857777, "indices": [ 118, 127 ], "id_str": "239857777", "screen_name": "Indira_L", "name": "Indira Lakshmanan" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "619170363184939008", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 346197350, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/312296219/-2.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/496053606479831041/eQq7Y3Td_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 4674, "profile_sidebar_border_color": "C0DEED", "id_str": "346197350", "profile_background_color": "C0DEED", "listed_count": 284, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 10596, "description": "I write about the White House for Bloomberg @business and tweet about Philly sports. E-mail me at jsink1 at bloomberg dot net.", "friends_count": 974, "location": "Washington, DC", "profile_link_color": "24B300", "profile_image_url": "http://pbs.twimg.com/profile_images/496053606479831041/eQq7Y3Td_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/346197350/1398218553", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/312296219/-2.png", "screen_name": "justinsink", "lang": "en", "profile_background_tile": false, "favourites_count": 1404, "name": "Justin Sink", "notifications": false, "url": null, "created_at": "Sun Jul 31 21:58:33 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:44:52 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 75797367, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/457366595359084544/q51Jgzh0.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/660721762473263104/3GsV4Kws_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/gqGJsuGQgV", "indices": [ 0, 22 ], "expanded_url": "http://danieldrezner.com", "display_url": "danieldrezner.com" } ] }, "description": { "urls": [ { "url": "http://t.co/iLLgIqIr55", "indices": [ 97, 119 ], "expanded_url": "http://goo.gl/2MHgIr", "display_url": "goo.gl/2MHgIr" } ] } }, "followers_count": 42765, "profile_sidebar_border_color": "FFFFFF", "id_str": "75797367", "profile_background_color": "C0DEED", "listed_count": 1863, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 92758, "description": "Professor @FletcherSchool. Writer of Spoiler Alerts @washingtonpost. Author of The System Worked http://t.co/iLLgIqIr55. Shaker of hands with Mel Brooks.", "friends_count": 952, "location": "Really, where am I not?", "profile_link_color": "0018B3", "profile_image_url": "http://pbs.twimg.com/profile_images/660721762473263104/3GsV4Kws_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/75797367/1414846663", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/457366595359084544/q51Jgzh0.jpeg", "screen_name": "dandrezner", "lang": "en", "profile_background_tile": true, "favourites_count": 8500, "name": "Daniel Drezner", "notifications": false, "url": "http://t.co/gqGJsuGQgV", "created_at": "Sun Sep 20 14:34:27 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:37 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @TKrypt: #JusticeForMikeBrown #resistthecurfew #MikeBrown #MichaelBrown #Ferguson #OpFerguson http://t.co/mWsSGloTau", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064233774510081, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 2278261981, "indices": [ 3, 10 ], "id_str": "2278261981", "screen_name": "TKrypt", "name": "TKrypt" } ], "hashtags": [ { "indices": [ 12, 32 ], "text": "JusticeForMikeBrown" }, { "indices": [ 33, 49 ], "text": "resistthecurfew" }, { "indices": [ 50, 60 ], "text": "MikeBrown" }, { "indices": [ 61, 74 ], "text": "MichaelBrown" }, { "indices": [ 75, 84 ], "text": "Ferguson" }, { "indices": [ 85, 96 ], "text": "OpFerguson" } ], "urls": [], "media": [ { "source_user_id": 2278261981, "source_status_id_str": "500935272813850624", "expanded_url": "http://twitter.com/TKrypt/status/500935272813850624/photo/1", "display_url": "pic.twitter.com/mWsSGloTau", "url": "http://t.co/mWsSGloTau", "media_url_https": "https://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg", "source_user_id_str": "2278261981", "source_status_id": 500935272813850624, "id_str": "500935271345836032", "sizes": { "small": { "h": 261, "resize": "fit", "w": 340 }, "large": { "h": 613, "resize": "fit", "w": 800 }, "medium": { "h": 460, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 97, 119 ], "type": "photo", "id": 500935271345836032, "media_url": "http://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501064233774510081", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "#JusticeForMikeBrown #resistthecurfew #MikeBrown #MichaelBrown #Ferguson #OpFerguson http://t.co/mWsSGloTau", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501063483346391040, "favorite_count": 3, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 0, 20 ], "text": "JusticeForMikeBrown" }, { "indices": [ 21, 37 ], "text": "resistthecurfew" }, { "indices": [ 38, 48 ], "text": "MikeBrown" }, { "indices": [ 49, 62 ], "text": "MichaelBrown" }, { "indices": [ 63, 72 ], "text": "Ferguson" }, { "indices": [ 73, 84 ], "text": "OpFerguson" } ], "urls": [], "media": [ { "source_user_id": 2278261981, "source_status_id_str": "500935272813850624", "expanded_url": "http://twitter.com/TKrypt/status/500935272813850624/photo/1", "display_url": "pic.twitter.com/mWsSGloTau", "url": "http://t.co/mWsSGloTau", "media_url_https": "https://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg", "source_user_id_str": "2278261981", "source_status_id": 500935272813850624, "id_str": "500935271345836032", "sizes": { "small": { "h": 261, "resize": "fit", "w": 340 }, "large": { "h": 613, "resize": "fit", "w": 800 }, "medium": { "h": 460, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 85, 107 ], "type": "photo", "id": 500935271345836032, "media_url": "http://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501063483346391040", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2278261981, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/466091668890865664/pdQNFTfj.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/546846174833938432/LM1D1J9P_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 5313, "profile_sidebar_border_color": "FFFFFF", "id_str": "2278261981", "profile_background_color": "C0DEED", "listed_count": 104, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 99752, "description": "NO DMs Anonymous We Are Legion We Do Not Forgive We Do Not Forget Expect Us #Kryptonian #KryptSec", "friends_count": 2314, "location": "", "profile_link_color": "1034E6", "profile_image_url": "http://pbs.twimg.com/profile_images/546846174833938432/LM1D1J9P_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2278261981/1419213325", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/466091668890865664/pdQNFTfj.jpeg", "screen_name": "TKrypt", "lang": "en", "profile_background_tile": false, "favourites_count": 26506, "name": "TKrypt", "notifications": false, "url": null, "created_at": "Mon Jan 06 00:04:41 +0000 2014", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "und", "created_at": "Sun Aug 17 17:50:18 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 2278261981, "source_status_id_str": "500935272813850624", "expanded_url": "http://twitter.com/TKrypt/status/500935272813850624/photo/1", "display_url": "pic.twitter.com/mWsSGloTau", "url": "http://t.co/mWsSGloTau", "media_url_https": "https://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg", "source_user_id_str": "2278261981", "source_status_id": 500935272813850624, "id_str": "500935271345836032", "sizes": { "small": { "h": 261, "resize": "fit", "w": 340 }, "large": { "h": 613, "resize": "fit", "w": 800 }, "medium": { "h": 460, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 85, 107 ], "type": "photo", "id": 500935271345836032, "media_url": "http://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 115221745, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "verified": false, "profile_text_color": "3D1957", "profile_image_url_https": "https://pbs.twimg.com/profile_images/707020817490546688/93djMTKZ_normal.jpg", "profile_sidebar_fill_color": "7AC3EE", "entities": { "description": { "urls": [] } }, "followers_count": 1800, "profile_sidebar_border_color": "65B0DA", "id_str": "115221745", "profile_background_color": "642D8B", "listed_count": 33, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 11281, "description": "Ω & △ // @thebandGHOST", "friends_count": 1603, "location": "California, USA", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/707020817490546688/93djMTKZ_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/115221745/1455551681", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "screen_name": "jessicastiffler", "lang": "en", "profile_background_tile": true, "favourites_count": 11975, "name": "⭐️ⒿⒺⓈⓈⒾⒸⒶ⭐️", "notifications": false, "url": null, "created_at": "Thu Feb 18 00:38:39 +0000 2010", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "und", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 2278261981, "source_status_id_str": "500935272813850624", "expanded_url": "http://twitter.com/TKrypt/status/500935272813850624/photo/1", "display_url": "pic.twitter.com/mWsSGloTau", "url": "http://t.co/mWsSGloTau", "media_url_https": "https://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg", "source_user_id_str": "2278261981", "source_status_id": 500935272813850624, "id_str": "500935271345836032", "sizes": { "small": { "h": 261, "resize": "fit", "w": 340 }, "large": { "h": 613, "resize": "fit", "w": 800 }, "medium": { "h": 460, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 97, 119 ], "type": "photo", "id": 500935271345836032, "media_url": "http://pbs.twimg.com/media/BvOt-agIUAAjq6h.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @BenWeinthal: Iran's regime make a tiny concession at its planned anti-Western, anti-U.S, anti-Israel protest . https://t.co/5SElORcYeA", "is_quote_status": true, "in_reply_to_status_id": null, "id": 619172298310840325, "favorite_count": 0, "source": "Twitter Web Client", "quoted_status_id": 619128461379117056, "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 299416026, "indices": [ 3, 15 ], "id_str": "299416026", "screen_name": "BenWeinthal", "name": "Benjamin Weinthal" } ], "hashtags": [], "urls": [ { "url": "https://t.co/5SElORcYeA", "indices": [ 115, 138 ], "expanded_url": "https://twitter.com/AmirTaheri4/status/619128461379117056", "display_url": "twitter.com/AmirTaheri4/st…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "619172298310840325", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Iran's regime make a tiny concession at its planned anti-Western, anti-U.S, anti-Israel protest . https://t.co/5SElORcYeA", "is_quote_status": true, "in_reply_to_status_id": null, "id": 619129546336505856, "favorite_count": 3, "source": "Twitter Web Client", "quoted_status_id": 619128461379117056, "retweeted": false, "coordinates": null, "quoted_status": { "contributors": null, "truncated": false, "text": "KHAMENEI'S \"REPRESENTATIVE' IN LONDON AYATOLLAH MOEZI VETOES BURNING OF BIBLE IN ANTI-ISRAEL, ANTI-US MARCH, ALLOWS BURNING OF FLAGS.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619128461379117056, "favorite_count": 2, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "619128461379117056", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 601176054, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2789325560/dd3967f07de21e251495ac8329039097_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 7256, "profile_sidebar_border_color": "C0DEED", "id_str": "601176054", "profile_background_color": "C0DEED", "listed_count": 273, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 15450, "description": "International columnist and author. Was Executive Editor-inChief of the daily Kayhan, Iran's main newspaper for seven years.", "friends_count": 2031, "location": "Paris, France", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/2789325560/dd3967f07de21e251495ac8329039097_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "AmirTaheri4", "lang": "en", "profile_background_tile": false, "favourites_count": 986, "name": "Amir Taheri", "notifications": false, "url": null, "created_at": "Wed Jun 06 16:22:05 +0000 2012", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 12:58:22 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "https://t.co/5SElORcYeA", "indices": [ 98, 121 ], "expanded_url": "https://twitter.com/AmirTaheri4/status/619128461379117056", "display_url": "twitter.com/AmirTaheri4/st…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "619129546336505856", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 299416026, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/588771084213694464/OJ0QtaUX_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/SfJQOsvEZp", "indices": [ 0, 22 ], "expanded_url": "http://bit.ly/BenjaminWeinthal", "display_url": "bit.ly/BenjaminWeinth…" } ] }, "description": { "urls": [] } }, "followers_count": 7479, "profile_sidebar_border_color": "C0DEED", "id_str": "299416026", "profile_background_color": "C0DEED", "listed_count": 350, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 45330, "description": "European Affairs Correspondent at The Jerusalem Post. Research Fellow @FollowFDD. Opinions are my own. RT/follow ≠ endorsement.", "friends_count": 992, "location": "Berlin, Germany ", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/588771084213694464/OJ0QtaUX_normal.png", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "BenWeinthal", "lang": "en", "profile_background_tile": false, "favourites_count": 17162, "name": "Benjamin Weinthal", "notifications": false, "url": "http://t.co/SfJQOsvEZp", "created_at": "Mon May 16 01:51:36 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 13:02:41 +0000 2015", "quoted_status_id_str": "619128461379117056", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 344938512, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000060304986/d399b0b81411d10207e08d099c688718.jpeg", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/596317675271245824/lZDyUf9z_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": { "description": { "urls": [] } }, "followers_count": 1258, "profile_sidebar_border_color": "FFFFFF", "id_str": "344938512", "profile_background_color": "642D8B", "listed_count": 87, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 93456, "description": "RTs are not endorsements. No war on Iran nor Appeasement! My opinions are subject to learning more!", "friends_count": 2001, "location": "United States", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/596317675271245824/lZDyUf9z_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/344938512/1450537070", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000060304986/d399b0b81411d10207e08d099c688718.jpeg", "screen_name": "upuouo", "lang": "en", "profile_background_tile": true, "favourites_count": 17162, "name": "Lou lou", "notifications": false, "url": null, "created_at": "Fri Jul 29 20:34:33 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:34 +0000 2015", "quoted_status_id_str": "619128461379117056", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @zizii2: Was curfew instituted in NV town where Bundy ranch amassed for weeks on end? Even as THEY mounted checkpoints against residents…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064232700350464, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 296608118, "indices": [ 3, 10 ], "id_str": "296608118", "screen_name": "zizii2", "name": "zizi2" } ], "hashtags": [ { "indices": [ 139, 140 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 210, "id_str": "501064232700350464", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Was curfew instituted in NV town where Bundy ranch amassed for weeks on end? Even as THEY mounted checkpoints against residents? #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500843658451902464, "favorite_count": 92, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 129, 138 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 210, "id_str": "500843658451902464", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 296608118, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1384365716/610x-110_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": { "description": { "urls": [] } }, "followers_count": 2037, "profile_sidebar_border_color": "829D5E", "id_str": "296608118", "profile_background_color": "352726", "listed_count": 64, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 44632, "description": "Political junkie, Supporter of Pres. Barack Obama #Obama2012", "friends_count": 1077, "location": "USA", "profile_link_color": "D02B55", "profile_image_url": "http://pbs.twimg.com/profile_images/1384365716/610x-110_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/296608118/1353373177", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "screen_name": "zizii2", "lang": "en", "profile_background_tile": false, "favourites_count": 4620, "name": "zizi2", "notifications": false, "url": null, "created_at": "Wed May 11 02:50:05 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 03:16:48 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 18292632, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "verified": false, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/714253023946649600/M1y5eF18_normal.jpg", "profile_sidebar_fill_color": "95E8EC", "entities": { "url": { "urls": [ { "url": "https://t.co/ltzOe18EmH", "indices": [ 0, 23 ], "expanded_url": "http://www.pantyvigilante.ink/", "display_url": "pantyvigilante.ink" } ] }, "description": { "urls": [] } }, "followers_count": 2084, "profile_sidebar_border_color": "5ED4DC", "id_str": "18292632", "profile_background_color": "0099B9", "listed_count": 43, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 2318, "description": "Comic Artist. Illustrator. Shameless trollop. I write and draw a webcomic called Panty Vigilante.", "friends_count": 1922, "location": "Missouri", "profile_link_color": "0099B9", "profile_image_url": "http://pbs.twimg.com/profile_images/714253023946649600/M1y5eF18_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18292632/1457633618", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "screen_name": "bratkitty84", "lang": "en", "profile_background_tile": false, "favourites_count": 555, "name": "Erica Batton", "notifications": false, "url": "https://t.co/ltzOe18EmH", "created_at": "Sun Dec 21 20:49:49 +0000 2008", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @katestratton3: Four Americans Are Still Trapped In #Iran~Deal Or No Deal~Here Are Their Stories http://t.co/kS2OmRaF9t #IranTalksVienna…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172216349917184, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 771186223, "indices": [ 3, 17 ], "id_str": "771186223", "screen_name": "katestratton3", "name": "Katherine Palmer" } ], "hashtags": [ { "indices": [ 55, 60 ], "text": "Iran" }, { "indices": [ 123, 139 ], "text": "IranTalksVienna" }, { "indices": [ 139, 140 ], "text": "Iran" }, { "indices": [ 139, 140 ], "text": "FreeAmirNow" } ], "urls": [ { "url": "http://t.co/kS2OmRaF9t", "indices": [ 100, 122 ], "expanded_url": "http://huff.to/1LTrb8i", "display_url": "huff.to/1LTrb8i" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619172216349917184", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Four Americans Are Still Trapped In #Iran~Deal Or No Deal~Here Are Their Stories http://t.co/kS2OmRaF9t #IranTalksVienna #Iran #FreeAmirNow", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171953560031232, "favorite_count": 2, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 36, 41 ], "text": "Iran" }, { "indices": [ 104, 120 ], "text": "IranTalksVienna" }, { "indices": [ 121, 126 ], "text": "Iran" }, { "indices": [ 127, 139 ], "text": "FreeAmirNow" } ], "urls": [ { "url": "http://t.co/kS2OmRaF9t", "indices": [ 81, 103 ], "expanded_url": "http://huff.to/1LTrb8i", "display_url": "huff.to/1LTrb8i" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619171953560031232", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 771186223, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3357130562/8e3ce55689dfeb9144a248bae19805e8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/jDv1kDmWAG", "indices": [ 0, 22 ], "expanded_url": "http://www.facebook.com/foreverfaithfulfather", "display_url": "facebook.com/foreverfaithfu…" } ] }, "description": { "urls": [] } }, "followers_count": 3640, "profile_sidebar_border_color": "C0DEED", "id_str": "771186223", "profile_background_color": "C0DEED", "listed_count": 152, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 78319, "description": "Freelance writer in the Garden of Hope, my journey w/ ABBA from the Garden of Gethsemane 2 wherever HE Wills me to go Spiritually&Physcially *ABBAPapa says 2me", "friends_count": 3405, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3357130562/8e3ce55689dfeb9144a248bae19805e8_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/771186223/1353169360", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "katestratton3", "lang": "en", "profile_background_tile": false, "favourites_count": 10034, "name": "Katherine Palmer", "notifications": false, "url": "http://t.co/jDv1kDmWAG", "created_at": "Tue Aug 21 09:33:50 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:51:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2821663239, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/625012354527289344/Wm9kW7bz_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 1224, "profile_sidebar_border_color": "C0DEED", "id_str": "2821663239", "profile_background_color": "C0DEED", "listed_count": 45, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 10866, "description": "Hand knitter, watching the rain fall,\r\ntweeting out helpful info, and screaming when my team wins.", "friends_count": 2816, "location": "Seattle, WA", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/625012354527289344/Wm9kW7bz_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "CalefDeanna", "lang": "en", "profile_background_tile": false, "favourites_count": 20575, "name": "deanna calef", "notifications": false, "url": null, "created_at": "Sat Oct 11 00:26:57 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:14 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "@damifarm KRISTINA ES SOCIA A TRAVES DE VENEZUELA DEL GRUPO TERRORISTA HEZBOLLAH (IRAN+SIRIA) RESPONSABLE DE LOS ATENTADOS EMBAJADA Y AMIA", "is_quote_status": false, "in_reply_to_status_id": 619170650205372417, "id": 619172332100284416, "favorite_count": 1, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 2775659742, "indices": [ 0, 9 ], "id_str": "2775659742", "screen_name": "damifarm", "name": "Damian Granja" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": "damifarm", "in_reply_to_user_id": 2775659742, "retweet_count": 0, "id_str": "619172332100284416", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 2973928629, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/554453058306834432/aQglwuZZ_normal.jpeg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 13537, "profile_sidebar_border_color": "000000", "id_str": "2973928629", "profile_background_color": "000000", "listed_count": 41, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 101807, "description": "JUBILADO INDIGNADO DE LA MINIMA - INFORMATICO - EXFUNCIONARIO DE LA LEGISLATURA DE LA PROV. BS.AS. - TRABAJO POR UNA NACION DIGNA PARA LAS FUTURAS GENERACIONES", "friends_count": 14930, "location": "La Plata, Argentina", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/554453058306834432/aQglwuZZ_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2973928629/1453839832", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "screen_name": "FelipeCimadoro", "lang": "es", "profile_background_tile": false, "favourites_count": 665, "name": "Felipe Cimadoro", "notifications": false, "url": null, "created_at": "Mon Jan 12 01:33:12 +0000 2015", "contributors_enabled": false, "time_zone": "Buenos Aires", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "2775659742", "lang": "es", "created_at": "Thu Jul 09 15:52:42 +0000 2015", "in_reply_to_status_id_str": "619170650205372417", "place": null }, { "contributors": null, "truncated": false, "text": "Time to Cut the bullshit! What's the plan for American citizens? Martial law, depopulation, cloward-piven, voters fraud? Answers? #Ferguson", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064231941570561, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 130, 139 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064231941570561", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 363942545, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/585249866/x2c0387b656ede05341262b1e88c822d.png", "verified": false, "profile_text_color": "A7A761", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1518765560/image_normal.jpg", "profile_sidebar_fill_color": "799D8F", "entities": { "description": { "urls": [] } }, "followers_count": 283, "profile_sidebar_border_color": "154C49", "id_str": "363942545", "profile_background_color": "DCD7AD", "listed_count": 10, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 4087, "description": "2nd Amendment Patriot that CANNOT stand Corruption that hurt innocent. United We Stand, Divided We Fall. God Bless our Troops and Legal Americans", "friends_count": 348, "location": "", "profile_link_color": "4F3727", "profile_image_url": "http://pbs.twimg.com/profile_images/1518765560/image_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/585249866/x2c0387b656ede05341262b1e88c822d.png", "screen_name": "Purple_Smear", "lang": "en", "profile_background_tile": true, "favourites_count": 80, "name": "White Vinegar", "notifications": false, "url": null, "created_at": "Sun Aug 28 23:26:49 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @CBMNational: 5 black cops cared abt out #youth &started http://t.co/k5azGnmded 40 yrs ago.Their legacy creates smiles. #ferguson http:/…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064231387947008, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 574017168, "indices": [ 3, 15 ], "id_str": "574017168", "screen_name": "CBMNational", "name": "Concerned Black Men" } ], "hashtags": [ { "indices": [ 44, 50 ], "text": "youth" }, { "indices": [ 127, 136 ], "text": "ferguson" } ], "urls": [ { "url": "http://t.co/k5azGnmded", "indices": [ 64, 86 ], "expanded_url": "http://www.cbmnational.com", "display_url": "cbmnational.com" } ], "media": [ { "source_user_id": 574017168, "source_status_id_str": "500384492054667264", "expanded_url": "http://twitter.com/CBMNational/status/500384492054667264/photo/1", "display_url": "pic.twitter.com/lwyDnrENV0", "url": "http://t.co/lwyDnrENV0", "media_url_https": "https://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg", "source_user_id_str": "574017168", "source_status_id": 500384492054667264, "id_str": "500384491160870912", "sizes": { "small": { "h": 255, "resize": "fit", "w": 340 }, "large": { "h": 768, "resize": "fit", "w": 1024 }, "medium": { "h": 450, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 143, 144 ], "type": "photo", "id": 500384491160870912, "media_url": "http://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "501064231387947008", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "5 black cops cared abt out #youth &started http://t.co/k5azGnmded 40 yrs ago.Their legacy creates smiles. #ferguson http://t.co/lwyDnrENV0", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500384492054667264, "favorite_count": 3, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 27, 33 ], "text": "youth" }, { "indices": [ 110, 119 ], "text": "ferguson" } ], "urls": [ { "url": "http://t.co/k5azGnmded", "indices": [ 47, 69 ], "expanded_url": "http://www.cbmnational.com", "display_url": "cbmnational.com" } ], "media": [ { "expanded_url": "http://twitter.com/CBMNational/status/500384492054667264/photo/1", "display_url": "pic.twitter.com/lwyDnrENV0", "url": "http://t.co/lwyDnrENV0", "media_url_https": "https://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg", "id_str": "500384491160870912", "sizes": { "small": { "h": 255, "resize": "fit", "w": 340 }, "large": { "h": 768, "resize": "fit", "w": 1024 }, "medium": { "h": 450, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 120, 142 ], "type": "photo", "id": 500384491160870912, "media_url": "http://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "500384492054667264", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 574017168, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000073537107/b317f754f3d5b4bf21d627a969199bb6.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/454688702883954689/Bq4MaIQI_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/mui939rOlZ", "indices": [ 0, 22 ], "expanded_url": "http://www.cbmnational.org", "display_url": "cbmnational.org" } ] }, "description": { "urls": [] } }, "followers_count": 2665, "profile_sidebar_border_color": "FFFFFF", "id_str": "574017168", "profile_background_color": "C0DEED", "listed_count": 132, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 9715, "description": "Since 1975, providing guidance, encouragement and support to children while stabilizing families.", "friends_count": 1074, "location": "Washington, DC", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/454688702883954689/Bq4MaIQI_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/574017168/1398277920", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000073537107/b317f754f3d5b4bf21d627a969199bb6.jpeg", "screen_name": "CBMNational", "lang": "en", "profile_background_tile": true, "favourites_count": 5278, "name": "Concerned Black Men", "notifications": false, "url": "http://t.co/mui939rOlZ", "created_at": "Mon May 07 20:19:25 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Fri Aug 15 20:52:14 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/CBMNational/status/500384492054667264/photo/1", "display_url": "pic.twitter.com/lwyDnrENV0", "url": "http://t.co/lwyDnrENV0", "media_url_https": "https://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg", "id_str": "500384491160870912", "sizes": { "small": { "h": 255, "resize": "fit", "w": 340 }, "large": { "h": 768, "resize": "fit", "w": 1024 }, "medium": { "h": 450, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 120, 142 ], "type": "photo", "id": 500384491160870912, "media_url": "http://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 356854246, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/326168892/Untitled-1.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1508349029/twitter_drmoore_normal.jpg", "profile_sidebar_fill_color": "FFFFFF", "entities": { "url": { "urls": [ { "url": "https://t.co/wEFhj9v0rp", "indices": [ 0, 23 ], "expanded_url": "https://u.osu.edu/moore.1408/", "display_url": "u.osu.edu/moore.1408/" } ] }, "description": { "urls": [] } }, "followers_count": 4888, "profile_sidebar_border_color": "FFFFFF", "id_str": "356854246", "profile_background_color": "A8A8A8", "listed_count": 278, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 60562, "description": "EHE Distinguished Professor and Executive Director, Todd Anthony Bell National Resource Center on the African American Male, The Ohio State University", "friends_count": 2314, "location": "Columbus, Ohio", "profile_link_color": "990000", "profile_image_url": "http://pbs.twimg.com/profile_images/1508349029/twitter_drmoore_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/356854246/1398356470", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/326168892/Untitled-1.jpg", "screen_name": "DrJLMooreIII", "lang": "en", "profile_background_tile": false, "favourites_count": 32385, "name": "James L. Moore III", "notifications": false, "url": "https://t.co/wEFhj9v0rp", "created_at": "Wed Aug 17 13:38:08 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 574017168, "source_status_id_str": "500384492054667264", "expanded_url": "http://twitter.com/CBMNational/status/500384492054667264/photo/1", "display_url": "pic.twitter.com/lwyDnrENV0", "url": "http://t.co/lwyDnrENV0", "media_url_https": "https://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg", "source_user_id_str": "574017168", "source_status_id": 500384492054667264, "id_str": "500384491160870912", "sizes": { "small": { "h": 255, "resize": "fit", "w": 340 }, "large": { "h": 768, "resize": "fit", "w": 1024 }, "medium": { "h": 450, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 143, 144 ], "type": "photo", "id": 500384491160870912, "media_url": "http://pbs.twimg.com/media/BvG5CybCIAA6zqD.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "#Iran: Iran Radiator : #Merger #Acquisition Analysts conclude erratic sales profits in Jul 2015. http://t.co/qEZfDo2at9 #Merger", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172232120692736, "favorite_count": 0, "source": "DATA_INSTITUTE_TWEETS", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 0, 5 ], "text": "Iran" }, { "indices": [ 23, 30 ], "text": "Merger" }, { "indices": [ 31, 43 ], "text": "Acquisition" }, { "indices": [ 120, 127 ], "text": "Merger" } ], "urls": [ { "url": "http://t.co/qEZfDo2at9", "indices": [ 97, 119 ], "expanded_url": "http://dg-di.org/DI/IR/29971.htm", "display_url": "dg-di.org/DI/IR/29971.htm" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172232120692736", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2858607784, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/536458042116550656/wMSCigkH.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/536161035862802433/kliWpYqu_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/yWr50ty7Kc", "indices": [ 0, 22 ], "expanded_url": "http://www.data-institute.institute", "display_url": "data-institute.institute" } ] }, "description": { "urls": [] } }, "followers_count": 1402, "profile_sidebar_border_color": "C0DEED", "id_str": "2858607784", "profile_background_color": "FFFFFF", "listed_count": 1229, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 339348, "description": "The World's Largest Source of Corporate and Business Data.", "friends_count": 532, "location": "London", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/536161035862802433/kliWpYqu_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2858607784/1416736402", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/536458042116550656/wMSCigkH.png", "screen_name": "Data_Institute", "lang": "en", "profile_background_tile": true, "favourites_count": 10, "name": "Data Institute", "notifications": false, "url": "http://t.co/yWr50ty7Kc", "created_at": "Mon Nov 03 09:57:53 +0000 2014", "contributors_enabled": false, "time_zone": "Amsterdam", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "und", "created_at": "Thu Jul 09 15:52:18 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @FOX2now: @AntonioFrench on protestors: \"we spent alot of time with that group; there was no convincing them.\" #stl #Ferguson http://t.c…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064232188665856, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 11265832, "indices": [ 3, 11 ], "id_str": "11265832", "screen_name": "FOX2now", "name": "FOX2now" }, { "id": 14090948, "indices": [ 13, 27 ], "id_str": "14090948", "screen_name": "AntonioFrench", "name": "Antonio French" } ], "hashtags": [ { "indices": [ 114, 118 ], "text": "stl" }, { "indices": [ 119, 128 ], "text": "Ferguson" } ], "urls": [], "media": [ { "source_user_id": 11265832, "source_status_id_str": "500892196938055680", "expanded_url": "http://twitter.com/FOX2now/status/500892196938055680/photo/1", "display_url": "pic.twitter.com/7yllvisGyP", "url": "http://t.co/7yllvisGyP", "media_url_https": "https://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg", "source_user_id_str": "11265832", "source_status_id": 500892196938055680, "id_str": "500892195415527424", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 576, "resize": "fit", "w": 1024 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 500892195415527424, "media_url": "http://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 289, "id_str": "501064232188665856", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "@AntonioFrench on protestors: \"we spent alot of time with that group; there was no convincing them.\" #stl #Ferguson http://t.co/7yllvisGyP", "is_quote_status": false, "in_reply_to_status_id": null, "id": 500892196938055680, "favorite_count": 135, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 14090948, "indices": [ 0, 14 ], "id_str": "14090948", "screen_name": "AntonioFrench", "name": "Antonio French" } ], "hashtags": [ { "indices": [ 101, 105 ], "text": "stl" }, { "indices": [ 106, 115 ], "text": "Ferguson" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/FOX2now/status/500892196938055680/photo/1", "display_url": "pic.twitter.com/7yllvisGyP", "url": "http://t.co/7yllvisGyP", "media_url_https": "https://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg", "id_str": "500892195415527424", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 576, "resize": "fit", "w": 1024 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 116, 138 ], "type": "photo", "id": 500892195415527424, "media_url": "http://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg" } ] }, "in_reply_to_screen_name": "AntonioFrench", "in_reply_to_user_id": 14090948, "retweet_count": 289, "id_str": "500892196938055680", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 11265832, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/691793421/ec4060bca37ead1fd1610a480301fadc.jpeg", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/560810496690253824/u9wt_kmG_normal.jpeg", "profile_sidebar_fill_color": "D7D7D7", "entities": { "url": { "urls": [ { "url": "http://t.co/6Yzp4xRBi9", "indices": [ 0, 22 ], "expanded_url": "http://www.fox2now.com/", "display_url": "fox2now.com" } ] }, "description": { "urls": [] } }, "followers_count": 132072, "profile_sidebar_border_color": "000000", "id_str": "11265832", "profile_background_color": "000000", "listed_count": 1738, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 94712, "description": "The official Twitter page for KTVI FOX 2 News St. Louis. Breaking news, #STL stories, video, photo galleries. Follow our reporters for more.", "friends_count": 1370, "location": "St. Louis, Missouri", "profile_link_color": "6E6E6E", "profile_image_url": "http://pbs.twimg.com/profile_images/560810496690253824/u9wt_kmG_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/11265832/1349294730", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/691793421/ec4060bca37ead1fd1610a480301fadc.jpeg", "screen_name": "FOX2now", "lang": "en", "profile_background_tile": true, "favourites_count": 1481, "name": "FOX2now", "notifications": false, "url": "http://t.co/6Yzp4xRBi9", "created_at": "Mon Dec 17 21:14:05 +0000 2007", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "14090948", "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 06:29:40 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/FOX2now/status/500892196938055680/photo/1", "display_url": "pic.twitter.com/7yllvisGyP", "url": "http://t.co/7yllvisGyP", "media_url_https": "https://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg", "id_str": "500892195415527424", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 576, "resize": "fit", "w": 1024 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 116, 138 ], "type": "photo", "id": 500892195415527424, "media_url": "http://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 294396285, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000150592243/uoV8VyOW.jpeg", "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://pbs.twimg.com/profile_images/724407025375940609/N_hYGtZb_normal.jpg", "profile_sidebar_fill_color": "DAECF4", "entities": { "description": { "urls": [] } }, "followers_count": 977, "profile_sidebar_border_color": "FFFFFF", "id_str": "294396285", "profile_background_color": "C6E2EE", "listed_count": 55, "is_translation_enabled": false, "utc_offset": 32400, "statuses_count": 213630, "description": "", "friends_count": 573, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/724407025375940609/N_hYGtZb_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/294396285/1450770250", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000150592243/uoV8VyOW.jpeg", "screen_name": "aqasatana", "lang": "ja", "profile_background_tile": false, "favourites_count": 2386, "name": "q", "notifications": false, "url": null, "created_at": "Sat May 07 02:32:22 +0000 2011", "contributors_enabled": false, "time_zone": "Tokyo", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 11265832, "source_status_id_str": "500892196938055680", "expanded_url": "http://twitter.com/FOX2now/status/500892196938055680/photo/1", "display_url": "pic.twitter.com/7yllvisGyP", "url": "http://t.co/7yllvisGyP", "media_url_https": "https://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg", "source_user_id_str": "11265832", "source_status_id": 500892196938055680, "id_str": "500892195415527424", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 576, "resize": "fit", "w": 1024 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 500892195415527424, "media_url": "http://pbs.twimg.com/media/BvOGzEKCEAAGsuY.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @mfa_russia: #Lavrov: Lifting the arms embargo will help #Iran fight terrorism more effectively http://t.co/faM8Wj0XF8", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172323447324672, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 255471924, "indices": [ 3, 14 ], "id_str": "255471924", "screen_name": "mfa_russia", "name": "MFA Russia" } ], "hashtags": [ { "indices": [ 16, 23 ], "text": "Lavrov" }, { "indices": [ 60, 65 ], "text": "Iran" } ], "urls": [], "media": [ { "source_user_id": 255471924, "source_status_id_str": "619162943729627137", "expanded_url": "http://twitter.com/mfa_russia/status/619162943729627137/photo/1", "display_url": "pic.twitter.com/faM8Wj0XF8", "url": "http://t.co/faM8Wj0XF8", "media_url_https": "https://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg", "source_user_id_str": "255471924", "source_status_id": 619162943729627137, "id_str": "619162941661667328", "sizes": { "large": { "h": 496, "resize": "fit", "w": 740 }, "small": { "h": 228, "resize": "fit", "w": 340 }, "medium": { "h": 402, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 99, 121 ], "type": "photo", "id": 619162941661667328, "media_url": "http://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 52, "id_str": "619172323447324672", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "#Lavrov: Lifting the arms embargo will help #Iran fight terrorism more effectively http://t.co/faM8Wj0XF8", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619162943729627137, "favorite_count": 21, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 0, 7 ], "text": "Lavrov" }, { "indices": [ 44, 49 ], "text": "Iran" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/mfa_russia/status/619162943729627137/photo/1", "display_url": "pic.twitter.com/faM8Wj0XF8", "url": "http://t.co/faM8Wj0XF8", "media_url_https": "https://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg", "id_str": "619162941661667328", "sizes": { "large": { "h": 496, "resize": "fit", "w": 740 }, "small": { "h": 228, "resize": "fit", "w": 340 }, "medium": { "h": 402, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 83, 105 ], "type": "photo", "id": 619162941661667328, "media_url": "http://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 52, "id_str": "619162943729627137", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 255471924, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/279483352/twitter-bg2.JPG", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/686527478035300352/bpSQvuim_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/bL5lLEUFzk", "indices": [ 0, 22 ], "expanded_url": "http://www.mid.ru", "display_url": "mid.ru" } ] }, "description": { "urls": [] } }, "followers_count": 112242, "profile_sidebar_border_color": "C0DEED", "id_str": "255471924", "profile_background_color": "F0F0F0", "listed_count": 2289, "is_translation_enabled": false, "utc_offset": -7200, "statuses_count": 23419, "description": "Official twitter-account of the Ministry of Foreign Affairs of the Russian Federation\r\n(For tweets in Russian please follow @MID_RF)", "friends_count": 1033, "location": "Russia", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/686527478035300352/bpSQvuim_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/255471924/1452515893", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/279483352/twitter-bg2.JPG", "screen_name": "mfa_russia", "lang": "ru", "profile_background_tile": false, "favourites_count": 713, "name": "MFA Russia", "notifications": false, "url": "http://t.co/bL5lLEUFzk", "created_at": "Mon Feb 21 12:45:22 +0000 2011", "contributors_enabled": false, "time_zone": "Greenland", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:15:23 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/mfa_russia/status/619162943729627137/photo/1", "display_url": "pic.twitter.com/faM8Wj0XF8", "url": "http://t.co/faM8Wj0XF8", "media_url_https": "https://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg", "id_str": "619162941661667328", "sizes": { "large": { "h": 496, "resize": "fit", "w": 740 }, "small": { "h": 228, "resize": "fit", "w": 340 }, "medium": { "h": 402, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 83, 105 ], "type": "photo", "id": 619162941661667328, "media_url": "http://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 588092239, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/848015387/00eca4eab87ddfa74ad6ecba406704b3.jpeg", "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://pbs.twimg.com/profile_images/646555692837396480/rY1Gfuje_normal.jpg", "profile_sidebar_fill_color": "99CC33", "entities": { "url": { "urls": [ { "url": "https://t.co/JitqQvefTc", "indices": [ 0, 23 ], "expanded_url": "http://rahuloneness.blogspot.in/", "display_url": "rahuloneness.blogspot.in" } ] }, "description": { "urls": [] } }, "followers_count": 109, "profile_sidebar_border_color": "FFFFFF", "id_str": "588092239", "profile_background_color": "352726", "listed_count": 1, "is_translation_enabled": false, "utc_offset": 19800, "statuses_count": 846, "description": "Marxist...Indian before any religion ...Indian before any Caste ...", "friends_count": 764, "location": "New Delhi", "profile_link_color": "3B94D9", "profile_image_url": "http://pbs.twimg.com/profile_images/646555692837396480/rY1Gfuje_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/588092239/1366369928", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/848015387/00eca4eab87ddfa74ad6ecba406704b3.jpeg", "screen_name": "rahulkn9899", "lang": "en", "profile_background_tile": true, "favourites_count": 1047, "name": "Rahul Kumar", "notifications": false, "url": "https://t.co/JitqQvefTc", "created_at": "Wed May 23 07:28:41 +0000 2012", "contributors_enabled": false, "time_zone": "New Delhi", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:40 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 255471924, "source_status_id_str": "619162943729627137", "expanded_url": "http://twitter.com/mfa_russia/status/619162943729627137/photo/1", "display_url": "pic.twitter.com/faM8Wj0XF8", "url": "http://t.co/faM8Wj0XF8", "media_url_https": "https://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg", "source_user_id_str": "255471924", "source_status_id": 619162943729627137, "id_str": "619162941661667328", "sizes": { "large": { "h": 496, "resize": "fit", "w": 740 }, "small": { "h": 228, "resize": "fit", "w": 340 }, "medium": { "h": 402, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 99, 121 ], "type": "photo", "id": 619162941661667328, "media_url": "http://pbs.twimg.com/media/CJe1ajvUYAA2tuh.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "No Deal Yet At Iran Talks - RadioFreeEurope/RadioLibertyみてねん! http://t.co/amvEXs923Q", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172253075378176, "favorite_count": 0, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/amvEXs923Q", "indices": [ 62, 84 ], "expanded_url": "http://ift.tt/1CrN9gh", "display_url": "ift.tt/1CrN9gh" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172253075378176", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2324941302, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/471936216036671488/FNZ0bWu7_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 2391, "profile_sidebar_border_color": "C0DEED", "id_str": "2324941302", "profile_background_color": "C0DEED", "listed_count": 16, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 56816, "description": "インドカレーに始まりスリランカカレー、そして今は海老入りタイカレーにはまっています♪ハーブやスパイス、アロマで心と身体をリフレッシュする生活を意識しています(ё_ё)最近は自然農法・アートテン農法等気になってます!", "friends_count": 2611, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/471936216036671488/FNZ0bWu7_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2324941302/1401353496", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "yubinaaroma", "lang": "ja", "profile_background_tile": false, "favourites_count": 0, "name": "優美なアロマ・スパイス・ハーブ生活", "notifications": false, "url": null, "created_at": "Mon Feb 03 06:15:22 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "ja", "created_at": "Thu Jul 09 15:52:23 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @ReutersIran: Yemen ceasefire announcement within 24 hours: Houthi-run agency http://t.co/0hTdq5pg38", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172208355749888, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 47633485, "indices": [ 3, 15 ], "id_str": "47633485", "screen_name": "ReutersIran", "name": "Reuters Iran" } ], "hashtags": [], "urls": [ { "url": "http://t.co/0hTdq5pg38", "indices": [ 81, 103 ], "expanded_url": "http://reut.rs/1NR2yaP", "display_url": "reut.rs/1NR2yaP" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "619172208355749888", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Yemen ceasefire announcement within 24 hours: Houthi-run agency http://t.co/0hTdq5pg38", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619145114913390592, "favorite_count": 4, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/0hTdq5pg38", "indices": [ 64, 86 ], "expanded_url": "http://reut.rs/1NR2yaP", "display_url": "reut.rs/1NR2yaP" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 12, "id_str": "619145114913390592", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 47633485, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/103680223/reuters_twitter_bg.jpg", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1462436931/reuters_twitter_avatar_normal.png", "profile_sidebar_fill_color": "F5F5F5", "entities": { "url": { "urls": [ { "url": "http://t.co/oiKYs9PJS4", "indices": [ 0, 22 ], "expanded_url": "http://www.reuters.com/places/iran", "display_url": "reuters.com/places/iran" } ] }, "description": { "urls": [] } }, "followers_count": 103178, "profile_sidebar_border_color": "F5F5F5", "id_str": "47633485", "profile_background_color": "444444", "listed_count": 1788, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 9974, "description": "From economy to politics, latest Iran news. Retweets are not endorsements.", "friends_count": 34, "location": "Global", "profile_link_color": "006F97", "profile_image_url": "http://pbs.twimg.com/profile_images/1462436931/reuters_twitter_avatar_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/103680223/reuters_twitter_bg.jpg", "screen_name": "ReutersIran", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Reuters Iran", "notifications": false, "url": "http://t.co/oiKYs9PJS4", "created_at": "Tue Jun 16 14:15:38 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 14:04:33 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 254282406, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000057156518/eb0475b48179669c2cedc5b34e1bc726.jpeg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/619216332991660033/j7AHlDrq_normal.jpg", "profile_sidebar_fill_color": "2C5C67", "entities": { "url": { "urls": [ { "url": "http://t.co/rlvEl4iHlS", "indices": [ 0, 22 ], "expanded_url": "http://www.ahsenkhan.com", "display_url": "ahsenkhan.com" } ] }, "description": { "urls": [] } }, "followers_count": 795, "profile_sidebar_border_color": "000000", "id_str": "254282406", "profile_background_color": "02042B", "listed_count": 31, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 8964, "description": "Political Affairs Officer in UN's Security Council Affairs Division | all tweets personal, links & RTs ≠ endorsements", "friends_count": 2101, "location": "New York", "profile_link_color": "51ACD6", "profile_image_url": "http://pbs.twimg.com/profile_images/619216332991660033/j7AHlDrq_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/254282406/1422474976", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000057156518/eb0475b48179669c2cedc5b34e1bc726.jpeg", "screen_name": "khan_ahsen", "lang": "en", "profile_background_tile": false, "favourites_count": 75, "name": "Ahsen Khan", "notifications": false, "url": "http://t.co/rlvEl4iHlS", "created_at": "Sat Feb 19 00:26:31 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Syria Approves 1 Billion USD Credit Line From Iran http://t.co/Cb8Hg0ORPE", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172175820357632, "favorite_count": 0, "source": "dlvr.it", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/Cb8Hg0ORPE", "indices": [ 51, 73 ], "expanded_url": "http://dlvr.it/BT47hg", "display_url": "dlvr.it/BT47hg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172175820357632", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2308922960, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/426815266689785856/zkKLPoiu_normal.png", "profile_sidebar_fill_color": "C0DFEC", "entities": { "description": { "urls": [] } }, "followers_count": 140, "profile_sidebar_border_color": "A8C7F7", "id_str": "2308922960", "profile_background_color": "022330", "listed_count": 13, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 40562, "description": "Newsfeed #Syria", "friends_count": 15, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/426815266689785856/zkKLPoiu_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2308922960/1390595675", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "screen_name": "syrianewsfeed", "lang": "de", "profile_background_tile": false, "favourites_count": 0, "name": "syrianewsfeed", "notifications": false, "url": null, "created_at": "Fri Jan 24 20:29:40 +0000 2014", "contributors_enabled": false, "time_zone": "Amsterdam", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Thu Jul 09 15:52:05 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @agabriew: -mamá, ¿puedo salir?\n-no.\n-pero todos mis amigos irán.\n-¡no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172326886674432, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 3246768862, "indices": [ 3, 12 ], "id_str": "3246768862", "screen_name": "agabriew", "name": "‏️‏️" } ], "hashtags": [], "urls": [], "media": [ { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "619172326886674432", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "-mamá, ¿puedo salir?\n-no.\n-pero todos mis amigos irán.\n-¡no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618569774763630592, "favorite_count": 318, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [ { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "618569774763630592", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 3246768862, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 804, "profile_sidebar_border_color": "000000", "id_str": "3246768862", "profile_background_color": "000000", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 839, "description": "en un día largo me quité el sostén", "friends_count": 296, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3246768862/1456961166", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "screen_name": "agabriew", "lang": "es", "profile_background_tile": true, "favourites_count": 53353, "name": "‏️‏️", "notifications": false, "url": null, "created_at": "Mon May 11 20:00:55 +0000 2015", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Tue Jul 07 23:58:21 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" }, { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "id_str": "618569772037500929", "sizes": { "small": { "h": 510, "resize": "fit", "w": 340 }, "large": { "h": 900, "resize": "fit", "w": 600 }, "medium": { "h": 900, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 1330235048, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/734565583262523392/LaDvUwYU_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 1725, "profile_sidebar_border_color": "000000", "id_str": "1330235048", "profile_background_color": "000000", "listed_count": 16, "is_translation_enabled": false, "utc_offset": -36000, "statuses_count": 188820, "description": "❃might be a sinner and I might be a saint❃ @fuckyoubaez's guurrl", "friends_count": 184, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/734565583262523392/LaDvUwYU_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1330235048/1462923534", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "yourborwhore", "lang": "es", "profile_background_tile": false, "favourites_count": 328, "name": "•Poussey•", "notifications": false, "url": null, "created_at": "Fri Apr 05 22:56:52 +0000 2013", "contributors_enabled": false, "time_zone": "Hawaii", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:41 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" }, { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772037500929", "sizes": { "small": { "h": 510, "resize": "fit", "w": 340 }, "large": { "h": 900, "resize": "fit", "w": 600 }, "medium": { "h": 900, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @alamanecer: \"Things erupt in #Ferguson overnight... Oops wrong story. Just \"whacky\" Penn State kids protesting JoePa's firing. http://t…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064228627705857, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 45722802, "indices": [ 3, 14 ], "id_str": "45722802", "screen_name": "alamanecer", "name": "Nicole ☀️At Sunrise" } ], "hashtags": [ { "indices": [ 33, 42 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/EmesUMaGnp", "indices": [ 139, 140 ], "expanded_url": "http://twitter.com/DabAggin/status/500966901364047873/photo/1", "display_url": "pic.twitter.com/EmesUMaGnp" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1630, "id_str": "501064228627705857", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "\"Things erupt in #Ferguson overnight... Oops wrong story. Just \"whacky\" Penn State kids protesting JoePa's firing. http://t.co/EmesUMaGnp\"", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501019248945537025, "favorite_count": 698, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 17, 26 ], "text": "Ferguson" } ], "urls": [ { "url": "http://t.co/EmesUMaGnp", "indices": [ 115, 137 ], "expanded_url": "http://twitter.com/DabAggin/status/500966901364047873/photo/1", "display_url": "pic.twitter.com/EmesUMaGnp" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1630, "id_str": "501019248945537025", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 45722802, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/632710255/5dthytvi1vc25rpj56d7.jpeg", "verified": false, "profile_text_color": "E37932", "profile_image_url_https": "https://pbs.twimg.com/profile_images/662729471741399040/pCV-ywMy_normal.jpg", "profile_sidebar_fill_color": "FA89A5", "entities": { "url": { "urls": [ { "url": "https://t.co/1MGgna5RMY", "indices": [ 0, 23 ], "expanded_url": "https://www.youtube.com/watch?v=kkmxx3eIbdc", "display_url": "youtube.com/watch?v=kkmxx3…" } ] }, "description": { "urls": [] } }, "followers_count": 1499, "profile_sidebar_border_color": "D6C9D6", "id_str": "45722802", "profile_background_color": "B2DFDA", "listed_count": 47, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 19113, "description": "I choose love. à l'école de la vie. révolutionnaire. I won't let a half written book haunt my days #amwriting Anything at all can happen just before the sunrise", "friends_count": 2375, "location": "Florida", "profile_link_color": "D0A5B0", "profile_image_url": "http://pbs.twimg.com/profile_images/662729471741399040/pCV-ywMy_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/45722802/1454797033", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/632710255/5dthytvi1vc25rpj56d7.jpeg", "screen_name": "alamanecer", "lang": "en", "profile_background_tile": true, "favourites_count": 30183, "name": "Nicole ☀️At Sunrise", "notifications": false, "url": "https://t.co/1MGgna5RMY", "created_at": "Tue Jun 09 01:00:21 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 14:54:32 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 106948003, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/137512695/weed1.jpg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/634567582134091776/b_JMkHtz_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "description": { "urls": [] } }, "followers_count": 172, "profile_sidebar_border_color": "EEEEEE", "id_str": "106948003", "profile_background_color": "131516", "listed_count": 5, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 5699, "description": "Avid Pandora Smoker, Ghetto Pornstar, Pollitical Watchdog & Music Lover.", "friends_count": 187, "location": "Parts Unkown.", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/634567582134091776/b_JMkHtz_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/106948003/1443669611", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/137512695/weed1.jpg", "screen_name": "MrKneeGrow", "lang": "en", "profile_background_tile": true, "favourites_count": 1237, "name": "Get It? Knee Grow!!", "notifications": false, "url": null, "created_at": "Thu Jan 21 04:31:57 +0000 2010", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:16 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "America's worst enemy, and biggest supporter/backer of terrorism is Iran. Why the hell are we chatting with them about anything?", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172320360333312, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172320360333312", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 2795245697, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/516980837829451776/ZbmX30-I_normal.jpeg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 2156, "profile_sidebar_border_color": "000000", "id_str": "2795245697", "profile_background_color": "000000", "listed_count": 56, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 26545, "description": "Just an Old Vet with a bit of Attitude. What Obama has done to Our Country is a Crime. Congress just as bad. Follow if U don't mind fighting Establishment. TYVM", "friends_count": 2192, "location": "United States", "profile_link_color": "4A913C", "profile_image_url": "http://pbs.twimg.com/profile_images/516980837829451776/ZbmX30-I_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2795245697/1412093975", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "screen_name": "Patriot715", "lang": "en", "profile_background_tile": false, "favourites_count": 47, "name": "Bob L.", "notifications": false, "url": null, "created_at": "Tue Sep 30 15:49:30 +0000 2014", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:39 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @agabriew: -mamá, ¿puedo salir?\n-no.\n-pero todos mis amigos irán.\n-¡no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172257278111744, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 3246768862, "indices": [ 3, 12 ], "id_str": "3246768862", "screen_name": "agabriew", "name": "‏️‏️" } ], "hashtags": [], "urls": [], "media": [ { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "619172257278111744", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "-mamá, ¿puedo salir?\n-no.\n-pero todos mis amigos irán.\n-¡no! http://t.co/Z9l3zEdUdH", "is_quote_status": false, "in_reply_to_status_id": null, "id": 618569774763630592, "favorite_count": 318, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [ { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1307, "id_str": "618569774763630592", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 3246768862, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 804, "profile_sidebar_border_color": "000000", "id_str": "3246768862", "profile_background_color": "000000", "listed_count": 150, "is_translation_enabled": false, "utc_offset": -16200, "statuses_count": 839, "description": "en un día largo me quité el sostén", "friends_count": 296, "location": "", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/722490957527150592/rO5Sq-nb_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3246768862/1456961166", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/672201415696236544/iZyKUG5D.jpg", "screen_name": "agabriew", "lang": "es", "profile_background_tile": true, "favourites_count": 53353, "name": "‏️‏️", "notifications": false, "url": null, "created_at": "Mon May 11 20:00:55 +0000 2015", "contributors_enabled": false, "time_zone": "Caracas", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Tue Jul 07 23:58:21 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" }, { "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "id_str": "618569772037500929", "sizes": { "small": { "h": 510, "resize": "fit", "w": 340 }, "large": { "h": 900, "resize": "fit", "w": 600 }, "medium": { "h": 900, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 61, 83 ], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 38770856, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/702689555518869504/Fdc-bATo_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 923, "profile_sidebar_border_color": "000000", "id_str": "38770856", "profile_background_color": "000000", "listed_count": 10, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 82998, "description": "Rompiendo celulares desde el 94' | Estadista | 21 | ΦΣΑ\nIg. Sc. Phhoto. Mario9414", "friends_count": 827, "location": "UPRA", "profile_link_color": "999999", "profile_image_url": "http://pbs.twimg.com/profile_images/702689555518869504/Fdc-bATo_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/38770856/1447370564", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Mario9414", "lang": "en", "profile_background_tile": false, "favourites_count": 21709, "name": "Mario Enrique Ponce", "notifications": false, "url": null, "created_at": "Sat May 09 01:54:17 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:24 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772041682948", "sizes": { "small": { "h": 389, "resize": "fit", "w": 340 }, "large": { "h": 686, "resize": "fit", "w": 600 }, "medium": { "h": 686, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772041682948, "media_url": "http://pbs.twimg.com/media/CJWZ7itWwAQci0f.jpg" }, { "source_user_id": 3246768862, "source_status_id_str": "618569774763630592", "expanded_url": "http://twitter.com/agabriew/status/618569774763630592/photo/1", "display_url": "pic.twitter.com/Z9l3zEdUdH", "url": "http://t.co/Z9l3zEdUdH", "media_url_https": "https://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg", "source_user_id_str": "3246768862", "source_status_id": 618569774763630592, "id_str": "618569772037500929", "sizes": { "small": { "h": 510, "resize": "fit", "w": 340 }, "large": { "h": 900, "resize": "fit", "w": 600 }, "medium": { "h": 900, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 75, 97 ], "type": "photo", "id": 618569772037500929, "media_url": "http://pbs.twimg.com/media/CJWZ7isW8AEguEQ.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "“Moderate” Pres. Rouhani: “the Zionist regime has been a wound on the body of the Islamic world for years and should be removed.” #Iran", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172257789706240, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 130, 135 ], "text": "Iran" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "619172257789706240", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 245476444, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/590192268973223936/vY32KETh_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 463, "profile_sidebar_border_color": "000000", "id_str": "245476444", "profile_background_color": "000000", "listed_count": 169, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 5455, "description": "American-born Iranian Jew. I love the United States, Israel and the University of Southern California. Conservative and proud.", "friends_count": 609, "location": "Los Angeles, CA", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/590192268973223936/vY32KETh_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/245476444/1429547799", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "screen_name": "BeetaBenjy", "lang": "en", "profile_background_tile": false, "favourites_count": 5555, "name": "Beeta Benjy", "notifications": false, "url": null, "created_at": "Mon Jan 31 19:50:18 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:24 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "The Latest Iran Deadline Falls on an Ominous Date - http://t.co/mQaUHAn4jz http://t.co/q800Wr2gAS #Israel", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172304191401984, "favorite_count": 0, "source": "Google", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 98, 105 ], "text": "Israel" } ], "urls": [ { "url": "http://t.co/mQaUHAn4jz", "indices": [ 52, 74 ], "expanded_url": "http://TheBlaze.com", "display_url": "TheBlaze.com" }, { "url": "http://t.co/q800Wr2gAS", "indices": [ 75, 97 ], "expanded_url": "http://goo.gl/fb/Clzk8R", "display_url": "goo.gl/fb/Clzk8R" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172304191401984", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 284216925, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1316392193/Israel_flag_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/1nRqsYWl9e", "indices": [ 0, 22 ], "expanded_url": "http://en.wikipedia.org/wiki/Israel", "display_url": "en.wikipedia.org/wiki/Israel" } ] }, "description": { "urls": [] } }, "followers_count": 2083, "profile_sidebar_border_color": "C0DEED", "id_str": "284216925", "profile_background_color": "C0DEED", "listed_count": 124, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 73068, "description": "Israel News - Israel's #1 News Site - Israel National News", "friends_count": 49, "location": "Jerusalem, Israel", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1316392193/Israel_flag_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Israel_English", "lang": "es", "profile_background_tile": false, "favourites_count": 0, "name": "Israel News English", "notifications": false, "url": "http://t.co/1nRqsYWl9e", "created_at": "Mon Apr 18 21:31:21 +0000 2011", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:35 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "El negociador de Teherán en Viena: \"Nunca amenace a un iraní\" http://t.co/wXVqtkb7U2", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172319047647232, "favorite_count": 0, "source": "iOS", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/wXVqtkb7U2", "indices": [ 62, 84 ], "expanded_url": "http://actualidad.rt.com/actualidad/179680-negociador-teheran-viena-amenaza-iran", "display_url": "actualidad.rt.com/actualidad/179…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172319047647232", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 142916938, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/429615824828387329/Oyisq6EH_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/oAaczbTeIY", "indices": [ 0, 22 ], "expanded_url": "http://instagram.com/julioalbarracin", "display_url": "instagram.com/julioalbarracin" } ] }, "description": { "urls": [] } }, "followers_count": 4993, "profile_sidebar_border_color": "C0DEED", "id_str": "142916938", "profile_background_color": "C0DEED", "listed_count": 59, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 107521, "description": "", "friends_count": 5469, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/429615824828387329/Oyisq6EH_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/142916938/1360093178", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "julioalbarracin", "lang": "en", "profile_background_tile": false, "favourites_count": 178, "name": "julio", "notifications": false, "url": "http://t.co/oAaczbTeIY", "created_at": "Wed May 12 02:48:48 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Thu Jul 09 15:52:39 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "@ajfromhouston We can start a gofundme page for their individual tungsten steel ropes! Or just let Iran do it. They've got that nailed.", "is_quote_status": false, "in_reply_to_status_id": 619171961722175488, "id": 619172295966392320, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 629527375, "indices": [ 0, 14 ], "id_str": "629527375", "screen_name": "ajfromhouston", "name": "BIGTIMEAJ" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": "ajfromhouston", "in_reply_to_user_id": 629527375, "retweet_count": 0, "id_str": "619172295966392320", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 529555835, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/569888157454192640/UOFbZ4eZ.jpeg", "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/730345980609101824/8B5-ib9E_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": { "url": { "urls": [ { "url": "http://t.co/k21q3i5aOi", "indices": [ 0, 22 ], "expanded_url": "http://helpingmisguidedvoters.com/totalitarian_state.html", "display_url": "helpingmisguidedvoters.com/totalitarian_s…" } ] }, "description": { "urls": [] } }, "followers_count": 11605, "profile_sidebar_border_color": "000000", "id_str": "529555835", "profile_background_color": "FF6699", "listed_count": 175, "is_translation_enabled": false, "utc_offset": -10800, "statuses_count": 112679, "description": "See pinned tweet! DONALD J TRUMP for PRESIDENT! GOD bless America! Married 2A Marine!. I Block SMUT! Blocked by ABC", "friends_count": 9524, "location": "Location: AskTheNSA", "profile_link_color": "B40B43", "profile_image_url": "http://pbs.twimg.com/profile_images/730345980609101824/8B5-ib9E_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/529555835/1461321886", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/569888157454192640/UOFbZ4eZ.jpeg", "screen_name": "ljcambria", "lang": "en", "profile_background_tile": false, "favourites_count": 22345, "name": "NoToTheMark", "notifications": false, "url": "http://t.co/k21q3i5aOi", "created_at": "Mon Mar 19 17:26:46 +0000 2012", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "629527375", "lang": "en", "created_at": "Thu Jul 09 15:52:33 +0000 2015", "in_reply_to_status_id_str": "619171961722175488", "place": null }, { "contributors": null, "truncated": false, "text": "Awaiting #Iran Deal, Nuclear Sleuths Gather Sophisticated Tools http://t.co/ji4uvQQbBK #Woman #usa #Iraq", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172193730199552, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 9, 14 ], "text": "Iran" }, { "indices": [ 87, 93 ], "text": "Woman" }, { "indices": [ 94, 98 ], "text": "usa" }, { "indices": [ 99, 104 ], "text": "Iraq" } ], "urls": [ { "url": "http://t.co/ji4uvQQbBK", "indices": [ 64, 86 ], "expanded_url": "http://goo.gl/EQ7kRJ", "display_url": "goo.gl/EQ7kRJ" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172193730199552", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2745507335, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/501427574136782849/xOM06Sz5_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 137, "profile_sidebar_border_color": "C0DEED", "id_str": "2745507335", "profile_background_color": "C0DEED", "listed_count": 53, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 47811, "description": "NCRI & MEK Supporter", "friends_count": 66, "location": "LONDON", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/501427574136782849/xOM06Sz5_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "LaelMoon3", "lang": "en", "profile_background_tile": false, "favourites_count": 1, "name": "Lael-Moon", "notifications": false, "url": null, "created_at": "Sun Aug 17 16:57:01 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:09 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "@FansEnVivo irán a Combate hoy?", "is_quote_status": false, "in_reply_to_status_id": 619171373135622144, "id": 619172341944332288, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 246294511, "indices": [ 0, 11 ], "id_str": "246294511", "screen_name": "FansEnVivo", "name": "Fans En Vivo" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": "FansEnVivo", "in_reply_to_user_id": 246294511, "retweet_count": 0, "id_str": "619172341944332288", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 69188829, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/538530222220382208/TKHLY48l.jpeg", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/704819198187458562/AfbwPClH_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "description": { "urls": [] } }, "followers_count": 1021, "profile_sidebar_border_color": "000000", "id_str": "69188829", "profile_background_color": "F5ABB5", "listed_count": 12, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 63814, "description": "doctor...99% |DM, JLaw & music|", "friends_count": 781, "location": "Lima, Perú", "profile_link_color": "ABB8C2", "profile_image_url": "http://pbs.twimg.com/profile_images/704819198187458562/AfbwPClH_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/69188829/1463376965", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/538530222220382208/TKHLY48l.jpeg", "screen_name": "TeresaBeegazo", "lang": "en", "profile_background_tile": true, "favourites_count": 962, "name": "19 dias", "notifications": false, "url": null, "created_at": "Thu Aug 27 03:30:43 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "246294511", "lang": "es", "created_at": "Thu Jul 09 15:52:44 +0000 2015", "in_reply_to_status_id_str": "619171373135622144", "place": null }, { "contributors": null, "truncated": false, "text": "HOUSE COMMITTEE HEARING ON 'IMPLICATIONS OF A NUCLEAR AGREEMENT WITH IRAN' | http://t.co/FRDQkkqMXb", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172303654518784, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/FRDQkkqMXb", "indices": [ 78, 100 ], "expanded_url": "http://video.foxnews.com/v/2553193403001/#sp=watch-live", "display_url": "video.foxnews.com/v/255319340300…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "619172303654518784", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2696111005, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/533600772580061184/I_sK_Aqp_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 1433, "profile_sidebar_border_color": "C0DEED", "id_str": "2696111005", "profile_background_color": "C0DEED", "listed_count": 48, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 14979, "description": "I am a Holocaust survivor, author, poet, conservative, patriot, and I have a great family: two daughters, two grandchildren and one great grand child.", "friends_count": 1135, "location": "New York", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/533600772580061184/I_sK_Aqp_normal.jpeg", "following": false, "geo_enabled": true, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "EGEVER142", "lang": "en", "profile_background_tile": false, "favourites_count": 848, "name": "ESTHER GEVER", "notifications": false, "url": null, "created_at": "Thu Jul 31 16:28:35 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:35 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @Yamiche: UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064233186893824, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 89887215, "indices": [ 3, 11 ], "id_str": "89887215", "screen_name": "Yamiche", "name": "Yamiche Alcindor" }, { "id": 15754281, "indices": [ 90, 99 ], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY" } ], "hashtags": [], "urls": [ { "url": "http://t.co/xVOvdk1Ttz", "indices": [ 63, 85 ], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064233186893824", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064051330646016, "favorite_count": 12, "source": "iOS", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 15754281, "indices": [ 77, 86 ], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY" } ], "hashtags": [], "urls": [ { "url": "http://t.co/xVOvdk1Ttz", "indices": [ 50, 72 ], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064051330646016", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 89887215, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/Y4UpM3YlCz", "indices": [ 0, 23 ], "expanded_url": "http://yamichealcindor.com", "display_url": "yamichealcindor.com" } ] }, "description": { "urls": [] } }, "followers_count": 35266, "profile_sidebar_border_color": "EEEEEE", "id_str": "89887215", "profile_background_color": "131516", "listed_count": 1412, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 17738, "description": "@NYTimes reporter covering national politics & social justice issues. Formerly of @USATODAY. @Georgetown & @NYUNewsDoc alum. Email: yamiche@nytimes.com", "friends_count": 3727, "location": "New York, NY", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/89887215/1417998203", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Yamiche", "lang": "en", "profile_background_tile": true, "favourites_count": 1311, "name": "Yamiche Alcindor", "notifications": false, "url": "https://t.co/Y4UpM3YlCz", "created_at": "Sat Nov 14 06:37:11 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:33 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 117155917, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/685988733464621056/XU923OGR.png", "verified": false, "profile_text_color": "545254", "profile_image_url_https": "https://pbs.twimg.com/profile_images/726161280298405888/2OMgey6z_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "url": { "urls": [ { "url": "https://t.co/hAg9z6TltO", "indices": [ 0, 23 ], "expanded_url": "http://www.rebekahweatherspoon.com/", "display_url": "rebekahweatherspoon.com" } ] }, "description": { "urls": [] } }, "followers_count": 5069, "profile_sidebar_border_color": "FFFFFF", "id_str": "117155917", "profile_background_color": "FFFFFF", "listed_count": 254, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 146813, "description": "Multi Award-Winning Romance Author. QPOC. She/Her. I cheat at Uno. I run @WOCInRomance. Repped by @millercallihan. Come get Spooned.", "friends_count": 3212, "location": "Los Angeles", "profile_link_color": "94D487", "profile_image_url": "http://pbs.twimg.com/profile_images/726161280298405888/2OMgey6z_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/117155917/1462932630", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/685988733464621056/XU923OGR.png", "screen_name": "rebekahwsm", "lang": "en", "profile_background_tile": true, "favourites_count": 8859, "name": "Rebekah Weatherspoon", "notifications": false, "url": "https://t.co/hAg9z6TltO", "created_at": "Wed Feb 24 18:24:45 +0000 2010", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Syria ratifies $1 billion credit line from Iran: state agency http://t.co/tfrYRvqfKs #Iran #irn", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172221349662720, "favorite_count": 0, "source": "Buffer", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 85, 90 ], "text": "Iran" }, { "indices": [ 91, 95 ], "text": "irn" } ], "urls": [ { "url": "http://t.co/tfrYRvqfKs", "indices": [ 62, 84 ], "expanded_url": "http://buff.ly/1KWdlRA", "display_url": "buff.ly/1KWdlRA" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172221349662720", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2446710032, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/605109099341180929/JBLuUWFU_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 68, "profile_sidebar_border_color": "C0DEED", "id_str": "2446710032", "profile_background_color": "C0DEED", "listed_count": 2, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 12464, "description": "Cheers to all Human Beings around the world.", "friends_count": 75, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/605109099341180929/JBLuUWFU_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "AhmedAbdolsala", "lang": "en-gb", "profile_background_tile": false, "favourites_count": 182, "name": "Ahmed Abdolsalam", "notifications": false, "url": null, "created_at": "Wed Apr 16 07:07:56 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:15 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @narendramodi: Was delighted to meet President @HassanRouhani & talk to him about stronger India-Iran ties. http://t.co/7AjJdADjSn", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172331399725057, "favorite_count": 0, "source": "Twitter for Windows Phone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 18839785, "indices": [ 3, 16 ], "id_str": "18839785", "screen_name": "narendramodi", "name": "Narendra Modi" }, { "id": 1404590618, "indices": [ 50, 64 ], "id_str": "1404590618", "screen_name": "HassanRouhani", "name": "Hassan Rouhani" } ], "hashtags": [], "urls": [], "media": [ { "source_user_id": 18839785, "source_status_id_str": "619126006910029824", "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg", "source_user_id_str": "18839785", "source_status_id": 619126006910029824, "id_str": "619125984625737728", "sizes": { "large": { "h": 877, "resize": "fit", "w": 1024 }, "small": { "h": 291, "resize": "fit", "w": 340 }, "medium": { "h": 514, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 115, 137 ], "type": "photo", "id": 619125984625737728, "media_url": "http://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 940, "id_str": "619172331399725057", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Was delighted to meet President @HassanRouhani & talk to him about stronger India-Iran ties. http://t.co/7AjJdADjSn", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619126006910029824, "favorite_count": 1593, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1404590618, "indices": [ 32, 46 ], "id_str": "1404590618", "screen_name": "HassanRouhani", "name": "Hassan Rouhani" } ], "hashtags": [], "urls": [], "media": [ { "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg", "id_str": "619125984625737728", "sizes": { "large": { "h": 877, "resize": "fit", "w": 1024 }, "small": { "h": 291, "resize": "fit", "w": 340 }, "medium": { "h": 514, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 97, 119 ], "type": "photo", "id": 619125984625737728, "media_url": "http://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 940, "id_str": "619126006910029824", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 18839785, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/562185004696875009/DiiHx54g.jpeg", "verified": true, "profile_text_color": "233863", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718314968102367232/ypY1GPCQ_normal.jpg", "profile_sidebar_fill_color": "D5DFED", "entities": { "url": { "urls": [ { "url": "http://t.co/i7NW4Bof2G", "indices": [ 0, 22 ], "expanded_url": "http://www.narendramodi.in", "display_url": "narendramodi.in" } ] }, "description": { "urls": [] } }, "followers_count": 20131424, "profile_sidebar_border_color": "FFFFFF", "id_str": "18839785", "profile_background_color": "F4EDD4", "listed_count": 18681, "is_translation_enabled": false, "utc_offset": 19800, "statuses_count": 11253, "description": "Prime Minister of India", "friends_count": 1372, "location": "India", "profile_link_color": "4E7096", "profile_image_url": "http://pbs.twimg.com/profile_images/718314968102367232/ypY1GPCQ_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1439641826", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/562185004696875009/DiiHx54g.jpeg", "screen_name": "narendramodi", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Narendra Modi", "notifications": false, "url": "http://t.co/i7NW4Bof2G", "created_at": "Sat Jan 10 17:18:56 +0000 2009", "contributors_enabled": false, "time_zone": "New Delhi", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 12:48:37 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg", "id_str": "619125984625737728", "sizes": { "large": { "h": 877, "resize": "fit", "w": 1024 }, "small": { "h": 291, "resize": "fit", "w": 340 }, "medium": { "h": 514, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 97, 119 ], "type": "photo", "id": 619125984625737728, "media_url": "http://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg" }, { "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeT0hxVEAAOHYK.jpg", "id_str": "619126004414484480", "sizes": { "small": { "h": 289, "resize": "fit", "w": 340 }, "large": { "h": 871, "resize": "fit", "w": 1024 }, "medium": { "h": 510, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 97, 119 ], "type": "photo", "id": 619126004414484480, "media_url": "http://pbs.twimg.com/media/CJeT0hxVEAAOHYK.jpg" }, { "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzSFVEAA4Bq7.jpg", "id_str": "619125983023534080", "sizes": { "large": { "h": 940, "resize": "fit", "w": 1024 }, "small": { "h": 312, "resize": "fit", "w": 340 }, "medium": { "h": 551, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 97, 119 ], "type": "photo", "id": 619125983023534080, "media_url": "http://pbs.twimg.com/media/CJeTzSFVEAA4Bq7.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": true, "id": 2932056121, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 22, "profile_sidebar_border_color": "C0DEED", "id_str": "2932056121", "profile_background_color": "C0DEED", "listed_count": 3, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 1442, "description": "", "friends_count": 41, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "neetanagarkar", "lang": "en", "profile_background_tile": false, "favourites_count": 1812, "name": "Neeta Nagarkar", "notifications": false, "url": null, "created_at": "Tue Dec 16 09:07:36 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:42 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 18839785, "source_status_id_str": "619126006910029824", "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg", "source_user_id_str": "18839785", "source_status_id": 619126006910029824, "id_str": "619125984625737728", "sizes": { "large": { "h": 877, "resize": "fit", "w": 1024 }, "small": { "h": 291, "resize": "fit", "w": 340 }, "medium": { "h": 514, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 115, 137 ], "type": "photo", "id": 619125984625737728, "media_url": "http://pbs.twimg.com/media/CJeTzYDUwAAb63X.jpg" }, { "source_user_id": 18839785, "source_status_id_str": "619126006910029824", "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeT0hxVEAAOHYK.jpg", "source_user_id_str": "18839785", "source_status_id": 619126006910029824, "id_str": "619126004414484480", "sizes": { "small": { "h": 289, "resize": "fit", "w": 340 }, "large": { "h": 871, "resize": "fit", "w": 1024 }, "medium": { "h": 510, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 115, 137 ], "type": "photo", "id": 619126004414484480, "media_url": "http://pbs.twimg.com/media/CJeT0hxVEAAOHYK.jpg" }, { "source_user_id": 18839785, "source_status_id_str": "619126006910029824", "expanded_url": "http://twitter.com/narendramodi/status/619126006910029824/photo/1", "display_url": "pic.twitter.com/7AjJdADjSn", "url": "http://t.co/7AjJdADjSn", "media_url_https": "https://pbs.twimg.com/media/CJeTzSFVEAA4Bq7.jpg", "source_user_id_str": "18839785", "source_status_id": 619126006910029824, "id_str": "619125983023534080", "sizes": { "large": { "h": 940, "resize": "fit", "w": 1024 }, "small": { "h": 312, "resize": "fit", "w": 340 }, "medium": { "h": 551, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 115, 137 ], "type": "photo", "id": 619125983023534080, "media_url": "http://pbs.twimg.com/media/CJeTzSFVEAA4Bq7.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @HezbollahWatch: Did anyone bother to tell this extraordinarily vain #Hezbollah #terror|ist that this is inappropriate⁉️ #Iran #Syria ht…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172302878408704, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 331456004, "indices": [ 3, 18 ], "id_str": "331456004", "screen_name": "HezbollahWatch", "name": "Hezbollah Watch" } ], "hashtags": [ { "indices": [ 72, 82 ], "text": "Hezbollah" }, { "indices": [ 83, 90 ], "text": "terror" }, { "indices": [ 124, 129 ], "text": "Iran" }, { "indices": [ 130, 136 ], "text": "Syria" } ], "urls": [], "media": [ { "source_user_id": 331456004, "source_status_id_str": "619170497683673089", "expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg", "source_user_id_str": "331456004", "source_status_id": 619170497683673089, "id_str": "619170492864335872", "sizes": { "small": { "h": 567, "resize": "fit", "w": 340 }, "large": { "h": 960, "resize": "fit", "w": 576 }, "medium": { "h": 960, "resize": "fit", "w": 576 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 619170492864335872, "media_url": "http://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619172302878408704", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Did anyone bother to tell this extraordinarily vain #Hezbollah #terror|ist that this is inappropriate⁉️ #Iran #Syria http://t.co/5u1EoGjV2r", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619170497683673089, "favorite_count": 1, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 52, 62 ], "text": "Hezbollah" }, { "indices": [ 63, 70 ], "text": "terror" }, { "indices": [ 104, 109 ], "text": "Iran" }, { "indices": [ 110, 116 ], "text": "Syria" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg", "id_str": "619170492864335872", "sizes": { "small": { "h": 567, "resize": "fit", "w": 340 }, "large": { "h": 960, "resize": "fit", "w": 576 }, "medium": { "h": 960, "resize": "fit", "w": 576 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 117, 139 ], "type": "photo", "id": 619170492864335872, "media_url": "http://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619170497683673089", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 331456004, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/590794318941523968/Dme28eui_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/pgnojvF3d1", "indices": [ 0, 23 ], "expanded_url": "http://hezbollahwatch.blogspot.com/", "display_url": "hezbollahwatch.blogspot.com" } ] }, "description": { "urls": [] } }, "followers_count": 8086, "profile_sidebar_border_color": "C0DEED", "id_str": "331456004", "profile_background_color": "C0DEED", "listed_count": 269, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 29821, "description": "Scrutinizing #Hezbollah & the #Khomeini|st Absolute Velayat-e Faqih doctrine: fascism, totalitarianism & terrorism. Commenting on #Islam, #Shia, #Islamophobia …", "friends_count": 1308, "location": "RT/♥/links/follow≠endorsement", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/590794318941523968/Dme28eui_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/331456004/1460595668", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "HezbollahWatch", "lang": "en", "profile_background_tile": false, "favourites_count": 6413, "name": "Hezbollah Watch", "notifications": false, "url": "https://t.co/pgnojvF3d1", "created_at": "Fri Jul 08 06:05:11 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Thu Jul 09 15:45:24 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg", "id_str": "619170492864335872", "sizes": { "small": { "h": 567, "resize": "fit", "w": 340 }, "large": { "h": 960, "resize": "fit", "w": 576 }, "medium": { "h": 960, "resize": "fit", "w": 576 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 117, 139 ], "type": "photo", "id": 619170492864335872, "media_url": "http://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg" }, { "expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVAAAvKOL.jpg", "id_str": "619170492864331776", "sizes": { "small": { "h": 567, "resize": "fit", "w": 340 }, "large": { "h": 960, "resize": "fit", "w": 576 }, "medium": { "h": 960, "resize": "fit", "w": 576 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 117, 139 ], "type": "photo", "id": 619170492864331776, "media_url": "http://pbs.twimg.com/media/CJe8SGKVAAAvKOL.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 31480794, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/443856080/wallpaper-fire.jpg", "verified": false, "profile_text_color": "F50505", "profile_image_url_https": "https://pbs.twimg.com/profile_images/555487734173671425/DtdV8Avn_normal.jpeg", "profile_sidebar_fill_color": "000000", "entities": { "url": { "urls": [ { "url": "https://t.co/1SLsa7MT13", "indices": [ 0, 23 ], "expanded_url": "http://flip.it/kUOzv", "display_url": "flip.it/kUOzv" } ] }, "description": { "urls": [] } }, "followers_count": 26367, "profile_sidebar_border_color": "000000", "id_str": "31480794", "profile_background_color": "000000", "listed_count": 179, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 158328, "description": "Reporting On #Government, #Politics, #Military, #Technology, Crime & Law, #HumanRights, #MENA, #Terrorism, #Corruption, etc. RT/Follow ≠ Endorsement ლ(ಠ益ಠლ)", "friends_count": 870, "location": "Gh0st1ng Cyb3rSp4c3", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/555487734173671425/DtdV8Avn_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31480794/1419277683", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/443856080/wallpaper-fire.jpg", "screen_name": "GhostRiderRadio", "lang": "en", "profile_background_tile": true, "favourites_count": 3337, "name": "Gh𧆠RïÐêr RåÐïð™", "notifications": false, "url": "https://t.co/1SLsa7MT13", "created_at": "Wed Apr 15 18:44:35 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:35 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 331456004, "source_status_id_str": "619170497683673089", "expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg", "source_user_id_str": "331456004", "source_status_id": 619170497683673089, "id_str": "619170492864335872", "sizes": { "small": { "h": 567, "resize": "fit", "w": 340 }, "large": { "h": 960, "resize": "fit", "w": 576 }, "medium": { "h": 960, "resize": "fit", "w": 576 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 619170492864335872, "media_url": "http://pbs.twimg.com/media/CJe8SGKVEAAFjuF.jpg" }, { "source_user_id": 331456004, "source_status_id_str": "619170497683673089", "expanded_url": "http://twitter.com/HezbollahWatch/status/619170497683673089/photo/1", "display_url": "pic.twitter.com/5u1EoGjV2r", "url": "http://t.co/5u1EoGjV2r", "media_url_https": "https://pbs.twimg.com/media/CJe8SGKVAAAvKOL.jpg", "source_user_id_str": "331456004", "source_status_id": 619170497683673089, "id_str": "619170492864331776", "sizes": { "small": { "h": 567, "resize": "fit", "w": 340 }, "large": { "h": 960, "resize": "fit", "w": 576 }, "medium": { "h": 960, "resize": "fit", "w": 576 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 619170492864331776, "media_url": "http://pbs.twimg.com/media/CJe8SGKVAAAvKOL.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @fidh_en: Many human rights defenders are arbitrarily detained in #Iran. Support them on #ForFreedom : http://t.co/CD6QxbMjKa #IranTalks", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172278086070272, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 17386064, "indices": [ 3, 11 ], "id_str": "17386064", "screen_name": "fidh_en", "name": "FIDH" } ], "hashtags": [ { "indices": [ 69, 74 ], "text": "Iran" }, { "indices": [ 92, 103 ], "text": "ForFreedom" }, { "indices": [ 129, 139 ], "text": "IranTalks" } ], "urls": [ { "url": "http://t.co/CD6QxbMjKa", "indices": [ 106, 128 ], "expanded_url": "http://en.freedom-defenders.org/", "display_url": "en.freedom-defenders.org" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "619172278086070272", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Many human rights defenders are arbitrarily detained in #Iran. Support them on #ForFreedom : http://t.co/CD6QxbMjKa #IranTalks", "is_quote_status": false, "in_reply_to_status_id": 619167023902400512, "id": 619169376101638145, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 56, 61 ], "text": "Iran" }, { "indices": [ 79, 90 ], "text": "ForFreedom" }, { "indices": [ 116, 126 ], "text": "IranTalks" } ], "urls": [ { "url": "http://t.co/CD6QxbMjKa", "indices": [ 93, 115 ], "expanded_url": "http://en.freedom-defenders.org/", "display_url": "en.freedom-defenders.org" } ] }, "in_reply_to_screen_name": "fidh_en", "in_reply_to_user_id": 17386064, "retweet_count": 2, "id_str": "619169376101638145", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 17386064, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/383108655/arriereplanmoyen.jpg", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/710116589366943745/uXufV_Nf_normal.jpg", "profile_sidebar_fill_color": "A0C5C7", "entities": { "url": { "urls": [ { "url": "https://t.co/9FHvuaQqWE", "indices": [ 0, 23 ], "expanded_url": "https://www.fidh.org/en", "display_url": "fidh.org/en" } ] }, "description": { "urls": [ { "url": "http://t.co/57CFf9tqzX", "indices": [ 118, 140 ], "expanded_url": "http://bit.ly/1oruWWB", "display_url": "bit.ly/1oruWWB" } ] } }, "followers_count": 27669, "profile_sidebar_border_color": "FFFFFF", "id_str": "17386064", "profile_background_color": "3A1D43", "listed_count": 579, "is_translation_enabled": false, "utc_offset": 7200, "statuses_count": 7574, "description": "FIDH federates 178 #HumanRights NGOs. Founded in 1922, we fight #ForFreedom #Justice #Democracy - Board & Staff list: http://t.co/57CFf9tqzX", "friends_count": 2394, "location": "worldwide", "profile_link_color": "3A1D43", "profile_image_url": "http://pbs.twimg.com/profile_images/710116589366943745/uXufV_Nf_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/17386064/1438680801", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/383108655/arriereplanmoyen.jpg", "screen_name": "fidh_en", "lang": "fr", "profile_background_tile": false, "favourites_count": 206, "name": "FIDH", "notifications": false, "url": "https://t.co/9FHvuaQqWE", "created_at": "Fri Nov 14 11:59:41 +0000 2008", "contributors_enabled": false, "time_zone": "Paris", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "17386064", "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:40:57 +0000 2015", "in_reply_to_status_id_str": "619167023902400512", "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 100951936, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/570607912/zbc0irf0wip5mmu3q2wu.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/733599672288350209/o9RY1bvo_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 114, "profile_sidebar_border_color": "C0DEED", "id_str": "100951936", "profile_background_color": "352726", "listed_count": 2, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 1026, "description": "I'm the one inside my own skin", "friends_count": 447, "location": "", "profile_link_color": "D02B55", "profile_image_url": "http://pbs.twimg.com/profile_images/733599672288350209/o9RY1bvo_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/100951936/1444120287", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/570607912/zbc0irf0wip5mmu3q2wu.jpeg", "screen_name": "elbshari_abdo", "lang": "en", "profile_background_tile": true, "favourites_count": 1554, "name": "elbshari", "notifications": false, "url": null, "created_at": "Fri Jan 01 10:36:29 +0000 2010", "contributors_enabled": false, "time_zone": "Athens", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:29 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @ashrafisafighol: Source: Obama says reaching an #Iran deal is below 50/50 http://t.co/IcEWmPcPGN #Yemen #LONDON #BreakingNew", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172293680345089, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 2514912774, "indices": [ 3, 19 ], "id_str": "2514912774", "screen_name": "ashrafisafighol", "name": "Ashrafi Safigholi" } ], "hashtags": [ { "indices": [ 52, 57 ], "text": "Iran" }, { "indices": [ 101, 107 ], "text": "Yemen" }, { "indices": [ 108, 115 ], "text": "LONDON" }, { "indices": [ 116, 128 ], "text": "BreakingNew" } ], "urls": [ { "url": "http://t.co/IcEWmPcPGN", "indices": [ 78, 100 ], "expanded_url": "http://goo.gl/fZKWsN", "display_url": "goo.gl/fZKWsN" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 30, "id_str": "619172293680345089", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Source: Obama says reaching an #Iran deal is below 50/50 http://t.co/IcEWmPcPGN #Yemen #LONDON #BreakingNew", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619167163853606912, "favorite_count": 0, "source": "Mobile Web (M2)", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 31, 36 ], "text": "Iran" }, { "indices": [ 80, 86 ], "text": "Yemen" }, { "indices": [ 87, 94 ], "text": "LONDON" }, { "indices": [ 95, 107 ], "text": "BreakingNew" } ], "urls": [ { "url": "http://t.co/IcEWmPcPGN", "indices": [ 57, 79 ], "expanded_url": "http://goo.gl/fZKWsN", "display_url": "goo.gl/fZKWsN" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 30, "id_str": "619167163853606912", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 2514912774, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/469405048212951040/-1GOdd78_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/gbteP5hOmI", "indices": [ 0, 23 ], "expanded_url": "http://mojahedin.org", "display_url": "mojahedin.org" } ] }, "description": { "urls": [] } }, "followers_count": 125, "profile_sidebar_border_color": "C0DEED", "id_str": "2514912774", "profile_background_color": "C0DEED", "listed_count": 24, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 20045, "description": "Human rights activity", "friends_count": 134, "location": "City of London, London", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/469405048212951040/-1GOdd78_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2514912774/1400749889", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "ashrafisafighol", "lang": "en", "profile_background_tile": false, "favourites_count": 2395, "name": "Ashrafi Safigholi", "notifications": false, "url": "https://t.co/gbteP5hOmI", "created_at": "Thu May 22 09:03:55 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:32:10 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 2493824904, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/466484009514463232/C7JI7kFC_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "https://t.co/gbteP5hOmI", "indices": [ 0, 23 ], "expanded_url": "http://mojahedin.org", "display_url": "mojahedin.org" } ] }, "description": { "urls": [] } }, "followers_count": 121, "profile_sidebar_border_color": "C0DEED", "id_str": "2493824904", "profile_background_color": "C0DEED", "listed_count": 30, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 22545, "description": "#Freedom and# humanrights activist", "friends_count": 151, "location": "paris", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/466484009514463232/C7JI7kFC_normal.png", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2493824904/1400053278", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "AmaniRasol", "lang": "en", "profile_background_tile": false, "favourites_count": 29, "name": "Rasol Amani", "notifications": false, "url": "https://t.co/gbteP5hOmI", "created_at": "Wed May 14 07:30:36 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:33 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RSS: ‘No Iranian nuclear deal unless US sanctions lifted’ http://t.co/hSTrtlucja", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172347275116548, "favorite_count": 0, "source": "BOTlibre!", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/hSTrtlucja", "indices": [ 59, 81 ], "expanded_url": "http://rt.com/op-edge/272656-iran-nuclear-deal-obama-statement/?utm_source=rss&utm_medium=rss&utm_campaign=RSS", "display_url": "rt.com/op-edge/272656…" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172347275116548", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2889098734, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/536473760321138689/q_ghb1ty_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 436, "profile_sidebar_border_color": "C0DEED", "id_str": "2889098734", "profile_background_color": "C0DEED", "listed_count": 186, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 50122, "description": "", "friends_count": 50, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/536473760321138689/q_ghb1ty_normal.jpeg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "crimebot_404", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "crimebot", "notifications": false, "url": null, "created_at": "Sun Nov 23 10:57:38 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:45 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @katestratton3: Four Americans Are Still Trapped In #Iran~Deal Or No Deal~Here Are Their Stories http://t.co/kS2OmRaF9t #IranTalksVienna…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172328249757696, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 771186223, "indices": [ 3, 17 ], "id_str": "771186223", "screen_name": "katestratton3", "name": "Katherine Palmer" } ], "hashtags": [ { "indices": [ 55, 60 ], "text": "Iran" }, { "indices": [ 123, 139 ], "text": "IranTalksVienna" }, { "indices": [ 139, 140 ], "text": "Iran" }, { "indices": [ 139, 140 ], "text": "FreeAmirNow" } ], "urls": [ { "url": "http://t.co/kS2OmRaF9t", "indices": [ 100, 122 ], "expanded_url": "http://huff.to/1LTrb8i", "display_url": "huff.to/1LTrb8i" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619172328249757696", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Four Americans Are Still Trapped In #Iran~Deal Or No Deal~Here Are Their Stories http://t.co/kS2OmRaF9t #IranTalksVienna #Iran #FreeAmirNow", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171953560031232, "favorite_count": 2, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 36, 41 ], "text": "Iran" }, { "indices": [ 104, 120 ], "text": "IranTalksVienna" }, { "indices": [ 121, 126 ], "text": "Iran" }, { "indices": [ 127, 139 ], "text": "FreeAmirNow" } ], "urls": [ { "url": "http://t.co/kS2OmRaF9t", "indices": [ 81, 103 ], "expanded_url": "http://huff.to/1LTrb8i", "display_url": "huff.to/1LTrb8i" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619171953560031232", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 771186223, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3357130562/8e3ce55689dfeb9144a248bae19805e8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/jDv1kDmWAG", "indices": [ 0, 22 ], "expanded_url": "http://www.facebook.com/foreverfaithfulfather", "display_url": "facebook.com/foreverfaithfu…" } ] }, "description": { "urls": [] } }, "followers_count": 3640, "profile_sidebar_border_color": "C0DEED", "id_str": "771186223", "profile_background_color": "C0DEED", "listed_count": 152, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 78319, "description": "Freelance writer in the Garden of Hope, my journey w/ ABBA from the Garden of Gethsemane 2 wherever HE Wills me to go Spiritually&Physcially *ABBAPapa says 2me", "friends_count": 3405, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/3357130562/8e3ce55689dfeb9144a248bae19805e8_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/771186223/1353169360", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "katestratton3", "lang": "en", "profile_background_tile": false, "favourites_count": 10034, "name": "Katherine Palmer", "notifications": false, "url": "http://t.co/jDv1kDmWAG", "created_at": "Tue Aug 21 09:33:50 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:51:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 300686726, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/665385373107773441/_Kx-xpQP.jpg", "verified": false, "profile_text_color": "7FC7C3", "profile_image_url_https": "https://pbs.twimg.com/profile_images/733669591948230656/xqKBjXN4_normal.jpg", "profile_sidebar_fill_color": "117485", "entities": { "description": { "urls": [] } }, "followers_count": 2354, "profile_sidebar_border_color": "FFFFFF", "id_str": "300686726", "profile_background_color": "8B542B", "listed_count": 100, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 106032, "description": "It is what it is ~ John Trudell ..... ISurvived #FosterCare", "friends_count": 1746, "location": "west coast to the deep south ", "profile_link_color": "080807", "profile_image_url": "http://pbs.twimg.com/profile_images/733669591948230656/xqKBjXN4_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/300686726/1459859505", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/665385373107773441/_Kx-xpQP.jpg", "screen_name": "missuhappybird", "lang": "en", "profile_background_tile": true, "favourites_count": 15474, "name": "d.m.", "notifications": false, "url": null, "created_at": "Wed May 18 05:47:25 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:41 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @thehill: JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172214475108352, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1917731, "indices": [ 3, 11 ], "id_str": "1917731", "screen_name": "thehill", "name": "The Hill" } ], "hashtags": [], "urls": [ { "url": "http://t.co/0WZIQMNf50", "indices": [ 75, 97 ], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4" } ], "media": [ { "source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 98, 120 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619172214475108352", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171737033396224, "favorite_count": 4, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/0WZIQMNf50", "indices": [ 62, 84 ], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4" } ], "media": [ { "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 85, 107 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619171737033396224", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1917731, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "profile_sidebar_fill_color": "EBEBEB", "entities": { "url": { "urls": [ { "url": "http://t.co/t414UtTRv4", "indices": [ 0, 22 ], "expanded_url": "http://www.thehill.com", "display_url": "thehill.com" } ] }, "description": { "urls": [] } }, "followers_count": 747989, "profile_sidebar_border_color": "ADADAA", "id_str": "1917731", "profile_background_color": "9AE4E8", "listed_count": 16660, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 190708, "description": "The Hill is the premier source for policy and political news. Follow for tweets on what's happening in Washington, breaking news and retweets of our reporters.", "friends_count": 489, "location": "Washington, DC", "profile_link_color": "FF0021", "profile_image_url": "http://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1917731/1434034905", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "screen_name": "thehill", "lang": "en", "profile_background_tile": true, "favourites_count": 26, "name": "The Hill", "notifications": false, "url": "http://t.co/t414UtTRv4", "created_at": "Thu Mar 22 18:15:18 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:50:20 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 85, 107 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2552698171, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/490506969791221760/N1bMfNgD_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 4110, "profile_sidebar_border_color": "C0DEED", "id_str": "2552698171", "profile_background_color": "C0DEED", "listed_count": 146, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 87069, "description": "Animals,art,science,environ.,sociology, pro-Israel. Reposts do NOT always endorse, no partyline,not a business,not extremist but read all points of view.", "friends_count": 3843, "location": "warning- a few graphic photos", "profile_link_color": "4A913C", "profile_image_url": "http://pbs.twimg.com/profile_images/490506969791221760/N1bMfNgD_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2552698171/1447343287", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "xhertx", "lang": "en", "profile_background_tile": false, "favourites_count": 57511, "name": "XiXi Davey", "notifications": false, "url": null, "created_at": "Sat Jun 07 14:12:39 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:14 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 98, 120 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @ynetnews: Kerry to make statement on Iran nuclear talks - http://t.co/lcDIelUmQx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172179960328192, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 367709007, "indices": [ 3, 12 ], "id_str": "367709007", "screen_name": "ynetnews", "name": "Ynetnews" } ], "hashtags": [], "urls": [ { "url": "http://t.co/lcDIelUmQx", "indices": [ 62, 84 ], "expanded_url": "http://ift.tt/1UFkMRT", "display_url": "ift.tt/1UFkMRT" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 3, "id_str": "619172179960328192", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Kerry to make statement on Iran nuclear talks - http://t.co/lcDIelUmQx", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172017137405952, "favorite_count": 1, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/lcDIelUmQx", "indices": [ 48, 70 ], "expanded_url": "http://ift.tt/1UFkMRT", "display_url": "ift.tt/1UFkMRT" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 3, "id_str": "619172017137405952", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 367709007, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1679844840/logo_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/xAiNMbYJbZ", "indices": [ 0, 22 ], "expanded_url": "http://www.ynetnews.com", "display_url": "ynetnews.com" } ] }, "description": { "urls": [] } }, "followers_count": 30524, "profile_sidebar_border_color": "C0DEED", "id_str": "367709007", "profile_background_color": "C0DEED", "listed_count": 1114, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 38308, "description": "Ynetnews: Breaking news updates from Israel, the Middle East and the Jewish World - the official Twitter page", "friends_count": 401, "location": "Tel Aviv, Israel", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/1679844840/logo_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/367709007/1402571499", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "ynetnews", "lang": "en", "profile_background_tile": false, "favourites_count": 364, "name": "Ynetnews", "notifications": false, "url": "http://t.co/xAiNMbYJbZ", "created_at": "Sun Sep 04 12:40:06 +0000 2011", "contributors_enabled": false, "time_zone": "Jerusalem", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:51:27 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 42226593, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/595898101/k1v8f8sh44ssaxvp28bx.jpeg", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/692365304995975168/xly9-72s_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 2114, "profile_sidebar_border_color": "C0DEED", "id_str": "42226593", "profile_background_color": "642D8B", "listed_count": 75, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 250349, "description": "Born Again, Conservative, pilot. It's time to take America back!", "friends_count": 2153, "location": "Ohio", "profile_link_color": "FF0000", "profile_image_url": "http://pbs.twimg.com/profile_images/692365304995975168/xly9-72s_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/42226593/1398268696", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/595898101/k1v8f8sh44ssaxvp28bx.jpeg", "screen_name": "shirleycolleen", "lang": "en", "profile_background_tile": true, "favourites_count": 12161, "name": "Colleen Hunt", "notifications": false, "url": null, "created_at": "Sun May 24 15:21:14 +0000 2009", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:06 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "I will be in #Ferguson today after 5pm. If anyone needs me to do anything at all for them before then contact me.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064232449114112, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 13, 22 ], "text": "Ferguson" } ], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "501064232449114112", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 200471093, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/767424684/5d28dc58e1409be56e55e6ffc7c3ba23.jpeg", "verified": false, "profile_text_color": "9E9396", "profile_image_url_https": "https://pbs.twimg.com/profile_images/725043450580729856/Iw7UKzC7_normal.jpg", "profile_sidebar_fill_color": "751C3D", "entities": { "description": { "urls": [] } }, "followers_count": 17058, "profile_sidebar_border_color": "000000", "id_str": "200471093", "profile_background_color": "611561", "listed_count": 445, "is_translation_enabled": false, "utc_offset": -21600, "statuses_count": 28126, "description": "black & woman. hard lover. complicated. deeply invested in black liberation. womanist to the core. organizer. my very existence is a protest. RN.", "friends_count": 970, "location": "St. Louis, MO", "profile_link_color": "DD2E44", "profile_image_url": "http://pbs.twimg.com/profile_images/725043450580729856/Iw7UKzC7_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/200471093/1463198199", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/767424684/5d28dc58e1409be56e55e6ffc7c3ba23.jpeg", "screen_name": "bdoulaoblongata", "lang": "en", "profile_background_tile": false, "favourites_count": 1692, "name": "b", "notifications": false, "url": null, "created_at": "Sat Oct 09 11:35:18 +0000 2010", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @Yamiche: UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064235175399425, "favorite_count": 0, "source": "TweetCaster for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 89887215, "indices": [ 3, 11 ], "id_str": "89887215", "screen_name": "Yamiche", "name": "Yamiche Alcindor" }, { "id": 15754281, "indices": [ 90, 99 ], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY" } ], "hashtags": [], "urls": [ { "url": "http://t.co/xVOvdk1Ttz", "indices": [ 63, 85 ], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064235175399425", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "UPDATED 7 arrested, 1 shot during Ferguson curfew http://t.co/xVOvdk1Ttz via @USATODAY", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064051330646016, "favorite_count": 12, "source": "iOS", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 15754281, "indices": [ 77, 86 ], "id_str": "15754281", "screen_name": "USATODAY", "name": "USA TODAY" } ], "hashtags": [], "urls": [ { "url": "http://t.co/xVOvdk1Ttz", "indices": [ 50, 72 ], "expanded_url": "http://usat.ly/1oFtRMw", "display_url": "usat.ly/1oFtRMw" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 61, "id_str": "501064051330646016", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 89887215, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "https://t.co/Y4UpM3YlCz", "indices": [ 0, 23 ], "expanded_url": "http://yamichealcindor.com", "display_url": "yamichealcindor.com" } ] }, "description": { "urls": [] } }, "followers_count": 35266, "profile_sidebar_border_color": "EEEEEE", "id_str": "89887215", "profile_background_color": "131516", "listed_count": 1412, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 17738, "description": "@NYTimes reporter covering national politics & social justice issues. Formerly of @USATODAY. @Georgetown & @NYUNewsDoc alum. Email: yamiche@nytimes.com", "friends_count": 3727, "location": "New York, NY", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/3753158937/377c6d60465f8d2b5b6e9567992f1829_normal.jpeg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/89887215/1417998203", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "Yamiche", "lang": "en", "profile_background_tile": true, "favourites_count": 1311, "name": "Yamiche Alcindor", "notifications": false, "url": "https://t.co/Y4UpM3YlCz", "created_at": "Sat Nov 14 06:37:11 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:52:33 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 387416764, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/724018068347715585/JSVPKJtl_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 436, "profile_sidebar_border_color": "C0DEED", "id_str": "387416764", "profile_background_color": "C0DEED", "listed_count": 21, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 39025, "description": "¯\\_(ツ)_/¯\n\nJust an independent girly | RTS = endorsements, scorn or shock", "friends_count": 2464, "location": "United States Of America", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/724018068347715585/JSVPKJtl_normal.jpg", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "independentgrly", "lang": "en", "profile_background_tile": false, "favourites_count": 6886, "name": "Independent Girly", "notifications": false, "url": null, "created_at": "Sun Oct 09 01:17:14 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "Help if U can our Marine held by Iran!!! http://t.co/MJtX9j84fO #Veterans #USMC #FreeAmirNow http://t.co/nGHlPnRQl7 @Montel_Williams #tcot", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172306338709504, "favorite_count": 1, "source": "Twitter for iPad", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 28096105, "indices": [ 116, 132 ], "id_str": "28096105", "screen_name": "Montel_Williams", "name": "Montel Williams" } ], "hashtags": [ { "indices": [ 64, 73 ], "text": "Veterans" }, { "indices": [ 74, 79 ], "text": "USMC" }, { "indices": [ 80, 92 ], "text": "FreeAmirNow" }, { "indices": [ 133, 138 ], "text": "tcot" } ], "urls": [ { "url": "http://t.co/MJtX9j84fO", "indices": [ 41, 63 ], "expanded_url": "http://www.giveforward.com/freeamir", "display_url": "giveforward.com/freeamir" } ], "media": [ { "source_user_id": 361708743, "source_status_id_str": "596269794527092737", "expanded_url": "http://twitter.com/dutchmn007/status/596269794527092737/photo/1", "display_url": "pic.twitter.com/nGHlPnRQl7", "url": "http://t.co/nGHlPnRQl7", "media_url_https": "https://pbs.twimg.com/media/CEZgNzbVEAAqQgw.jpg", "source_user_id_str": "361708743", "source_status_id": 596269794527092737, "id_str": "596269790932570112", "sizes": { "small": { "h": 205, "resize": "fit", "w": 340 }, "large": { "h": 398, "resize": "fit", "w": 660 }, "medium": { "h": 362, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 93, 115 ], "type": "photo", "id": 596269790932570112, "media_url": "http://pbs.twimg.com/media/CEZgNzbVEAAqQgw.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 7, "id_str": "619172306338709504", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 361708743, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "verified": false, "profile_text_color": "3C3940", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000501176030/6150bad8d8393edcb82593ffefe07eef_normal.jpeg", "profile_sidebar_fill_color": "95E8EC", "entities": { "url": { "urls": [ { "url": "https://t.co/xi67mPPqLa", "indices": [ 0, 23 ], "expanded_url": "http://www.marscherlordsfilm.com", "display_url": "marscherlordsfilm.com" } ] }, "description": { "urls": [ { "url": "https://t.co/fRP2M9PZZr", "indices": [ 71, 94 ], "expanded_url": "http://www.quarterdeckent.com", "display_url": "quarterdeckent.com" }, { "url": "https://t.co/PIwpzJn6Pe", "indices": [ 95, 118 ], "expanded_url": "http://www.imdb.com/name/nm4990021/?ref_=fn_al_nm_1", "display_url": "imdb.com/name/nm4990021…" } ] } }, "followers_count": 3023, "profile_sidebar_border_color": "FFFFFF", "id_str": "361708743", "profile_background_color": "0099B9", "listed_count": 161, "is_translation_enabled": false, "utc_offset": -25200, "statuses_count": 19394, "description": "Actor, Mltry Hstrn, Author, Flmkr. Lrn the Lssns of Hstry or Rpt Them. https://t.co/fRP2M9PZZr https://t.co/PIwpzJn6Pe", "friends_count": 3341, "location": "SoCal", "profile_link_color": "0099B9", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000501176030/6150bad8d8393edcb82593ffefe07eef_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/361708743/1459290561", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "screen_name": "dutchmn007", "lang": "en", "profile_background_tile": false, "favourites_count": 14522, "name": "R. E. Wilhelm III", "notifications": false, "url": "https://t.co/xi67mPPqLa", "created_at": "Thu Aug 25 06:11:42 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:36 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 361708743, "source_status_id_str": "596269794527092737", "expanded_url": "http://twitter.com/dutchmn007/status/596269794527092737/photo/1", "display_url": "pic.twitter.com/nGHlPnRQl7", "url": "http://t.co/nGHlPnRQl7", "media_url_https": "https://pbs.twimg.com/media/CEZgNzbVEAAqQgw.jpg", "source_user_id_str": "361708743", "source_status_id": 596269794527092737, "id_str": "596269790932570112", "sizes": { "small": { "h": 205, "resize": "fit", "w": 340 }, "large": { "h": 398, "resize": "fit", "w": 660 }, "medium": { "h": 362, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 93, 115 ], "type": "photo", "id": 596269790932570112, "media_url": "http://pbs.twimg.com/media/CEZgNzbVEAAqQgw.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "Agha Bozorg Theological school and Mosque, a masterpiece of Architecture! #Kashan #iran #mustseeiran http://t.co/76s3ckFEuX", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172312122814464, "favorite_count": 12, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 74, 81 ], "text": "Kashan" }, { "indices": [ 82, 87 ], "text": "iran" }, { "indices": [ 88, 100 ], "text": "mustseeiran" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/Travestyleblog/status/619172312122814464/photo/1", "display_url": "pic.twitter.com/76s3ckFEuX", "url": "http://t.co/76s3ckFEuX", "media_url_https": "https://pbs.twimg.com/media/CJe97pTXAAASfRv.jpg", "id_str": "619172306183716864", "sizes": { "small": { "h": 512, "resize": "fit", "w": 340 }, "large": { "h": 1024, "resize": "fit", "w": 680 }, "medium": { "h": 904, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 101, 123 ], "type": "photo", "id": 619172306183716864, "media_url": "http://pbs.twimg.com/media/CJe97pTXAAASfRv.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 5, "id_str": "619172312122814464", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1594163078, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/681912853217972224/uAvE2MLM_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "url": { "urls": [ { "url": "http://t.co/KBrnsvpYLB", "indices": [ 0, 22 ], "expanded_url": "http://www.travestyle.com", "display_url": "travestyle.com" } ] }, "description": { "urls": [ { "url": "http://t.co/HytKfJkfDE", "indices": [ 18, 40 ], "expanded_url": "http://www.travestyle.com/", "display_url": "travestyle.com" }, { "url": "https://t.co/DTcMzsw2lo", "indices": [ 134, 157 ], "expanded_url": "https://www.facebook.com/travestyle", "display_url": "facebook.com/travestyle" } ] } }, "followers_count": 418, "profile_sidebar_border_color": "C0DEED", "id_str": "1594163078", "profile_background_color": "C0DEED", "listed_count": 25, "is_translation_enabled": false, "utc_offset": 3600, "statuses_count": 742, "description": "Travel blogger at http://t.co/HytKfJkfDE, Graphic designer by degree, life enthusiast and wannabe photographer. Check me on facebook: https://t.co/DTcMzsw2lo", "friends_count": 357, "location": "Tehran, Iran", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/681912853217972224/uAvE2MLM_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1594163078/1451415710", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "Travestyleblog", "lang": "en", "profile_background_tile": false, "favourites_count": 368, "name": "Matin Lashkari", "notifications": false, "url": "http://t.co/KBrnsvpYLB", "created_at": "Sun Jul 14 20:05:05 +0000 2013", "contributors_enabled": false, "time_zone": "Lisbon", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "ro", "created_at": "Thu Jul 09 15:52:37 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/Travestyleblog/status/619172312122814464/photo/1", "display_url": "pic.twitter.com/76s3ckFEuX", "url": "http://t.co/76s3ckFEuX", "media_url_https": "https://pbs.twimg.com/media/CJe97pTXAAASfRv.jpg", "id_str": "619172306183716864", "sizes": { "small": { "h": 512, "resize": "fit", "w": 340 }, "large": { "h": 1024, "resize": "fit", "w": 680 }, "medium": { "h": 904, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 101, 123 ], "type": "photo", "id": 619172306183716864, "media_url": "http://pbs.twimg.com/media/CJe97pTXAAASfRv.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @thehill: JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172173568053248, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 1917731, "indices": [ 3, 11 ], "id_str": "1917731", "screen_name": "thehill", "name": "The Hill" } ], "hashtags": [], "urls": [ { "url": "http://t.co/0WZIQMNf50", "indices": [ 75, 97 ], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4" } ], "media": [ { "source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 98, 120 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619172173568053248", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "JUST IN: Kerry to give update on Iran nuclear talks at 1 p.m. http://t.co/0WZIQMNf50 http://t.co/jgbEIcs143", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619171737033396224, "favorite_count": 4, "source": "SocialFlow", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [ { "url": "http://t.co/0WZIQMNf50", "indices": [ 62, 84 ], "expanded_url": "http://hill.cm/NSg27m4", "display_url": "hill.cm/NSg27m4" } ], "media": [ { "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 85, 107 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 22, "id_str": "619171737033396224", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 1917731, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "profile_sidebar_fill_color": "EBEBEB", "entities": { "url": { "urls": [ { "url": "http://t.co/t414UtTRv4", "indices": [ 0, 22 ], "expanded_url": "http://www.thehill.com", "display_url": "thehill.com" } ] }, "description": { "urls": [] } }, "followers_count": 747989, "profile_sidebar_border_color": "ADADAA", "id_str": "1917731", "profile_background_color": "9AE4E8", "listed_count": 16660, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 190708, "description": "The Hill is the premier source for policy and political news. Follow for tweets on what's happening in Washington, breaking news and retweets of our reporters.", "friends_count": 489, "location": "Washington, DC", "profile_link_color": "FF0021", "profile_image_url": "http://pbs.twimg.com/profile_images/718186698824413184/H1qUtJzN_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1917731/1434034905", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/2509428/twitter_bg.gif", "screen_name": "thehill", "lang": "en", "profile_background_tile": true, "favourites_count": 26, "name": "The Hill", "notifications": false, "url": "http://t.co/t414UtTRv4", "created_at": "Thu Mar 22 18:15:18 +0000 2007", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:50:20 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 85, 107 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": false, "default_profile_image": false, "id": 21685295, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": true, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/672833109570682881/POl_VKy-_normal.png", "profile_sidebar_fill_color": "000000", "entities": { "url": { "urls": [ { "url": "http://t.co/qn8IOQUxlR", "indices": [ 0, 22 ], "expanded_url": "http://j.mp/a92iw2", "display_url": "j.mp/a92iw2" } ] }, "description": { "urls": [] } }, "followers_count": 12650, "profile_sidebar_border_color": "000000", "id_str": "21685295", "profile_background_color": "000000", "listed_count": 548, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 24208, "description": "@MPRnews host (I'm the one w/o the book club); listen weekdays at 11am; 2006 TIME Person of the Year (Insty: weber_tom1)", "friends_count": 9028, "location": "St. Paul, MN", "profile_link_color": "4A913C", "profile_image_url": "http://pbs.twimg.com/profile_images/672833109570682881/POl_VKy-_normal.png", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21685295/1398205935", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "webertom1", "lang": "en", "profile_background_tile": false, "favourites_count": 2700, "name": "Tom Weber", "notifications": false, "url": "http://t.co/qn8IOQUxlR", "created_at": "Mon Feb 23 19:45:36 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:04 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 1917731, "source_status_id_str": "619171737033396224", "expanded_url": "http://twitter.com/thehill/status/619171737033396224/photo/1", "display_url": "pic.twitter.com/jgbEIcs143", "url": "http://t.co/jgbEIcs143", "media_url_https": "https://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg", "source_user_id_str": "1917731", "source_status_id": 619171737033396224, "id_str": "619171736496525312", "sizes": { "small": { "h": 191, "resize": "fit", "w": 340 }, "large": { "h": 363, "resize": "fit", "w": 645 }, "medium": { "h": 338, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 98, 120 ], "type": "photo", "id": 619171736496525312, "media_url": "http://pbs.twimg.com/media/CJe9afDWUAAl-NZ.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "Amazing capture of Reghz canyon for those who in love with trikking canyons\n\nLocation: Darab ,Fars province-IRAN \nR… http://t.co/e4Jwub0jzb", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172208452182016, "favorite_count": 7, "source": "IFTTT", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [], "media": [ { "expanded_url": "http://twitter.com/san3tm/status/619172208452182016/photo/1", "display_url": "pic.twitter.com/e4Jwub0jzb", "url": "http://t.co/e4Jwub0jzb", "media_url_https": "https://pbs.twimg.com/media/CJe9186WsAAnKUu.jpg", "id_str": "619172208368332800", "sizes": { "large": { "h": 640, "resize": "fit", "w": 640 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 117, 139 ], "type": "photo", "id": 619172208368332800, "media_url": "http://pbs.twimg.com/media/CJe9186WsAAnKUu.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172208452182016", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 36913679, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "011219", "profile_image_url_https": "https://pbs.twimg.com/profile_images/731721758542200832/kCAZRYTc_normal.jpg", "profile_sidebar_fill_color": "DDFFCC", "entities": { "description": { "urls": [] } }, "followers_count": 6823, "profile_sidebar_border_color": "BDDCAD", "id_str": "36913679", "profile_background_color": "FFFFFF", "listed_count": 20, "is_translation_enabled": false, "utc_offset": 16200, "statuses_count": 44172, "description": "‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏خ. دا سیگار ویسکی کمی عشق... احمق چیزی که خراب شده رو درس نکن مثل اولش نمیشه ‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏‏", "friends_count": 1564, "location": "", "profile_link_color": "02ABE8", "profile_image_url": "http://pbs.twimg.com/profile_images/731721758542200832/kCAZRYTc_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/36913679/1455013082", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "san3tm", "lang": "en", "profile_background_tile": false, "favourites_count": 123492, "name": "دادا", "notifications": false, "url": null, "created_at": "Fri May 01 09:22:48 +0000 2009", "contributors_enabled": false, "time_zone": "Tehran", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/san3tm/status/619172208452182016/photo/1", "display_url": "pic.twitter.com/e4Jwub0jzb", "url": "http://t.co/e4Jwub0jzb", "media_url_https": "https://pbs.twimg.com/media/CJe9186WsAAnKUu.jpg", "id_str": "619172208368332800", "sizes": { "large": { "h": 640, "resize": "fit", "w": 640 }, "small": { "h": 340, "resize": "fit", "w": 340 }, "medium": { "h": 600, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 117, 139 ], "type": "photo", "id": 619172208368332800, "media_url": "http://pbs.twimg.com/media/CJe9186WsAAnKUu.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "RT @justinsink: No deal today. Diplomats will need at least another day to strike a possible nuclear accord with Iran, officials tell @Indi…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172209857327104, "favorite_count": 0, "source": "Lissted", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 346197350, "indices": [ 3, 14 ], "id_str": "346197350", "screen_name": "justinsink", "name": "Justin Sink" }, { "id": 239857777, "indices": [ 134, 140 ], "id_str": "239857777", "screen_name": "Indira_L", "name": "Indira Lakshmanan" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "619172209857327104", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "No deal today. Diplomats will need at least another day to strike a possible nuclear accord with Iran, officials tell @Indira_L in Vienna", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619170363184939008, "favorite_count": 2, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 239857777, "indices": [ 118, 127 ], "id_str": "239857777", "screen_name": "Indira_L", "name": "Indira Lakshmanan" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 21, "id_str": "619170363184939008", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 346197350, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/312296219/-2.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/496053606479831041/eQq7Y3Td_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 4674, "profile_sidebar_border_color": "C0DEED", "id_str": "346197350", "profile_background_color": "C0DEED", "listed_count": 284, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 10596, "description": "I write about the White House for Bloomberg @business and tweet about Philly sports. E-mail me at jsink1 at bloomberg dot net.", "friends_count": 974, "location": "Washington, DC", "profile_link_color": "24B300", "profile_image_url": "http://pbs.twimg.com/profile_images/496053606479831041/eQq7Y3Td_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/346197350/1398218553", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/312296219/-2.png", "screen_name": "justinsink", "lang": "en", "profile_background_tile": false, "favourites_count": 1404, "name": "Justin Sink", "notifications": false, "url": null, "created_at": "Sun Jul 31 21:58:33 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:44:52 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2897136909, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/580716531165884416/tnFytCc7_normal.png", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 369, "profile_sidebar_border_color": "C0DEED", "id_str": "2897136909", "profile_background_color": "C0DEED", "listed_count": 94, "is_translation_enabled": false, "utc_offset": null, "statuses_count": 99025, "description": "Finding the best US tweets at the rate of around 400 a day. UK tweets can be found on the original @TweetsDistilled a/c. A @Lissted service.", "friends_count": 0, "location": "", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/580716531165884416/tnFytCc7_normal.png", "following": false, "geo_enabled": false, "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "USTweetsDistill", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "name": "Tweets Distilled US", "notifications": false, "url": null, "created_at": "Sat Nov 29 10:17:20 +0000 2014", "contributors_enabled": false, "time_zone": null, "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:13 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @Thatindianbruh: 2 Eye Witnesses. 1 Story. Fuck everything that the media telling you bout the #Ferguson case. This is the facts. http:/…", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501064233438568450, "favorite_count": 0, "source": "Twitter for Android", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 90296594, "indices": [ 3, 18 ], "id_str": "90296594", "screen_name": "Thatindianbruh", "name": "Mr. Patel" } ], "hashtags": [ { "indices": [ 98, 107 ], "text": "Ferguson" } ], "urls": [], "media": [ { "source_user_id": 90296594, "source_status_id_str": "501051914218668032", "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "source_user_id_str": "90296594", "source_status_id": 501051914218668032, "id_str": "501051913505624066", "sizes": { "small": { "h": 492, "resize": "fit", "w": 340 }, "large": { "h": 869, "resize": "fit", "w": 600 }, "medium": { "h": 869, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10371, "id_str": "501064233438568450", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "2 Eye Witnesses. 1 Story. Fuck everything that the media telling you bout the #Ferguson case. This is the facts. http://t.co/NjN9AF7AFP", "is_quote_status": false, "in_reply_to_status_id": null, "id": 501051914218668032, "favorite_count": 4867, "source": "TweetDeck", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [ { "indices": [ 78, 87 ], "text": "Ferguson" } ], "urls": [], "media": [ { "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "id_str": "501051913505624066", "sizes": { "small": { "h": 492, "resize": "fit", "w": 340 }, "large": { "h": 869, "resize": "fit", "w": 600 }, "medium": { "h": 869, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 113, 135 ], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 10371, "id_str": "501051914218668032", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 90296594, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/676981908/5039c47ca9aaf1f1f1ace58c9c465d16.jpeg", "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://pbs.twimg.com/profile_images/666174215796715520/r531di_H_normal.jpg", "profile_sidebar_fill_color": "252429", "entities": { "description": { "urls": [] } }, "followers_count": 8733, "profile_sidebar_border_color": "000000", "id_str": "90296594", "profile_background_color": "1D1D1B", "listed_count": 142, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 56174, "description": "You know who I am.", "friends_count": 1137, "location": "ATL", "profile_link_color": "2BC1C4", "profile_image_url": "http://pbs.twimg.com/profile_images/666174215796715520/r531di_H_normal.jpg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/90296594/1459289391", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/676981908/5039c47ca9aaf1f1f1ace58c9c465d16.jpeg", "screen_name": "Thatindianbruh", "lang": "en", "profile_background_tile": false, "favourites_count": 7163, "name": "Mr. Patel", "notifications": false, "url": null, "created_at": "Mon Nov 16 01:45:23 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:04:20 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "id_str": "501051913505624066", "sizes": { "small": { "h": 492, "resize": "fit", "w": 340 }, "large": { "h": 869, "resize": "fit", "w": 600 }, "medium": { "h": 869, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 113, 135 ], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg" } ] } }, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": true, "default_profile_image": false, "id": 277073535, "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/326306495/static_.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/412677408685170688/IjcWeGCL_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 708, "profile_sidebar_border_color": "C0DEED", "id_str": "277073535", "profile_background_color": "C0DEED", "listed_count": 4, "is_translation_enabled": false, "utc_offset": -18000, "statuses_count": 27391, "description": "#69", "friends_count": 531, "location": "Da Brook", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/412677408685170688/IjcWeGCL_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/277073535/1462744632", "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/326306495/static_.gif", "screen_name": "koalaexpresss", "lang": "en", "profile_background_tile": true, "favourites_count": 2295, "name": "Novak", "notifications": false, "url": null, "created_at": "Mon Apr 04 17:01:00 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Sun Aug 17 17:53:17 +0000 2014", "in_reply_to_status_id_str": null, "place": null, "extended_entities": { "media": [ { "source_user_id": 90296594, "source_status_id_str": "501051914218668032", "expanded_url": "http://twitter.com/Thatindianbruh/status/501051914218668032/photo/1", "display_url": "pic.twitter.com/NjN9AF7AFP", "url": "http://t.co/NjN9AF7AFP", "media_url_https": "https://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg", "source_user_id_str": "90296594", "source_status_id": 501051914218668032, "id_str": "501051913505624066", "sizes": { "small": { "h": 492, "resize": "fit", "w": 340 }, "large": { "h": 869, "resize": "fit", "w": 600 }, "medium": { "h": 869, "resize": "fit", "w": 600 }, "thumb": { "h": 150, "resize": "crop", "w": 150 } }, "indices": [ 139, 140 ], "type": "photo", "id": 501051913505624066, "media_url": "http://pbs.twimg.com/media/BvQYD4aIUAIpTyn.jpg" } ] } }, { "contributors": null, "truncated": false, "text": "Iran deal is right around the corner! Kool & The Gang - Celebration https://t.co/OarqWwTCnx via @YouTube", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172163912908801, "favorite_count": 0, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 10228272, "indices": [ 100, 108 ], "id_str": "10228272", "screen_name": "YouTube", "name": "YouTube" } ], "hashtags": [], "urls": [ { "url": "https://t.co/OarqWwTCnx", "indices": [ 72, 95 ], "expanded_url": "https://youtu.be/3GwjfUFyY6M", "display_url": "youtu.be/3GwjfUFyY6M" } ] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "619172163912908801", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": true, "profile_use_background_image": false, "default_profile_image": false, "id": 3231982123, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://pbs.twimg.com/profile_images/605103876841218048/jw6X-QIC_normal.jpg", "profile_sidebar_fill_color": "000000", "entities": { "url": { "urls": [ { "url": "http://t.co/sm6H7ZCNWv", "indices": [ 0, 22 ], "expanded_url": "http://www.paladin-defense.us/", "display_url": "paladin-defense.us" } ] }, "description": { "urls": [] } }, "followers_count": 375, "profile_sidebar_border_color": "000000", "id_str": "3231982123", "profile_background_color": "000000", "listed_count": 7, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 3805, "description": "Compassionate Realist, Veteran, Pro bono Director of Operations at Paladin Defense Group", "friends_count": 564, "location": "Savannah, GA", "profile_link_color": "850707", "profile_image_url": "http://pbs.twimg.com/profile_images/605103876841218048/jw6X-QIC_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3231982123/1433105696", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "JarBomb", "lang": "en", "profile_background_tile": false, "favourites_count": 3715, "name": "Jarami Feith", "notifications": false, "url": "http://t.co/sm6H7ZCNWv", "created_at": "Sun May 31 20:05:07 +0000 2015", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Jul 09 15:52:02 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, { "contributors": null, "truncated": false, "text": "RT @ianbremmer: Kerry statement on Iran coming at 1pm. Expect a deal. And lots of controversy. \nFor the record, I'm in favor.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619172331584376832, "favorite_count": 0, "source": "Twitter for iPhone", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 60783724, "indices": [ 3, 14 ], "id_str": "60783724", "screen_name": "ianbremmer", "name": "ian bremmer" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 48, "id_str": "619172331584376832", "favorited": false, "retweeted_status": { "contributors": null, "truncated": false, "text": "Kerry statement on Iran coming at 1pm. Expect a deal. And lots of controversy. \nFor the record, I'm in favor.", "is_quote_status": false, "in_reply_to_status_id": null, "id": 619164407583637504, "favorite_count": 29, "source": "Twitter Web Client", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 48, "id_str": "619164407583637504", "favorited": false, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 60783724, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/533237233277755392/YuwtsYri_normal.jpeg", "profile_sidebar_fill_color": "C0DFEC", "entities": { "url": { "urls": [ { "url": "https://t.co/RyT2ScT8cy", "indices": [ 0, 23 ], "expanded_url": "http://www.ianbremmer.com", "display_url": "ianbremmer.com" } ] }, "description": { "urls": [] } }, "followers_count": 177640, "profile_sidebar_border_color": "FFFFFF", "id_str": "60783724", "profile_background_color": "022330", "listed_count": 4984, "is_translation_enabled": false, "utc_offset": -14400, "statuses_count": 18673, "description": "political scientist, author, prof at nyu, columnist at time, ostensible intellectual entrepreneur, president @eurasiagroup", "friends_count": 999, "location": "", "profile_link_color": "3489B3", "profile_image_url": "http://pbs.twimg.com/profile_images/533237233277755392/YuwtsYri_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/60783724/1431962642", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "screen_name": "ianbremmer", "lang": "en", "profile_background_tile": false, "favourites_count": 22, "name": "ian bremmer", "notifications": false, "url": "https://t.co/RyT2ScT8cy", "created_at": "Tue Jul 28 02:23:28 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:21:12 +0000 2015", "in_reply_to_status_id_str": null, "place": null }, "user": { "follow_request_sent": false, "has_extended_profile": false, "profile_use_background_image": true, "default_profile_image": false, "id": 2759742364, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/689884054053883904/ym8uPEvb_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "entities": { "description": { "urls": [] } }, "followers_count": 115, "profile_sidebar_border_color": "C0DEED", "id_str": "2759742364", "profile_background_color": "C0DEED", "listed_count": 16, "is_translation_enabled": false, "utc_offset": 10800, "statuses_count": 4841, "description": "author . editor . Graecophile . ardent libertarian . liberal weenie . the unexamined life is not worth living", "friends_count": 149, "location": "Athens", "profile_link_color": "0084B4", "profile_image_url": "http://pbs.twimg.com/profile_images/689884054053883904/ym8uPEvb_normal.jpg", "following": false, "geo_enabled": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2759742364/1453316719", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "screen_name": "erikathomas_me2", "lang": "en-gb", "profile_background_tile": false, "favourites_count": 547, "name": "erika thomas", "notifications": false, "url": null, "created_at": "Tue Sep 02 20:06:50 +0000 2014", "contributors_enabled": false, "time_zone": "Athens", "protected": false, "default_profile": true, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Thu Jul 09 15:52:42 +0000 2015", "in_reply_to_status_id_str": null, "place": null } ] jello-1.6.1/tests/test_create_json.py000066400000000000000000001231131501617276000177010ustar00rootroot00000000000000#!/usr/bin/env python3 import unittest from collections import OrderedDict import pygments from jello.lib import opts, Json class MyTests(unittest.TestCase): def setUp(self): # initialize options opts.initialize = None opts.version_info = None opts.helpme = None opts.compact = None opts.nulls = None opts.raw = None opts.lines = None opts.mono = None opts.schema = None opts.types = None opts.keyname_color = None opts.keyword_color = None opts.number_color = None opts.string_color = None # initialize Json class self.json_out = Json() # create samples self.dict_sample = { 'string': 'string\nwith newline\ncharacters in it', 'true': True, 'false': False, 'null': None, 'int': 42, 'float': 3.14, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] } self.list_sample = [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] self.list_of_dicts_sample = [ { 'string': 'string\nwith newline\ncharacters in it', 'true': True, 'false': False, 'null': None, 'int': 42, 'float': 3.14, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] }, { 'string': 'another string\nwith newline\ncharacters in it', 'true': True, 'false': False, 'null': None, 'int': 10001, 'float': -400.45, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, -6000034, 999999.854321 ] } ] self.list_of_lists_sample = [ [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ], [ 'another string\nwith newline\ncharacters in it', True, False, None, 42001, -3.14 ] ] # ------------ Tests ------------ # # Naked True # def test_true(self): """ Test True """ data_in = True expected = 'true' self.assertEqual(self.json_out.create_json(data_in), expected) def test_true_r(self): """ Test True -r """ data_in = True expected = 'true' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_true_l(self): """ Test True -l """ data_in = True expected = 'true' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_true_rl(self): """ Test True -rl """ data_in = True expected = 'true' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # Naked False # def test_false(self): """ Test False """ data_in = False expected = 'false' self.assertEqual(self.json_out.create_json(data_in), expected) def test_false_r(self): """ Test False -r """ data_in = False expected = 'false' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_false_l(self): """ Test False -l """ data_in = False expected = 'false' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_false_rl(self): """ Test False -rl """ data_in = False expected = 'false' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # Naked null # def test_null(self): """ Test None """ data_in = None expected = '' self.assertEqual(self.json_out.create_json(data_in), expected) def test_null_n(self): """ Test None with -n """ data_in = None expected = 'null' opts.nulls = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_null_r(self): """ Test None with -r """ data_in = None expected = '' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_null_rl(self): """ Test None with -rl """ data_in = None expected = '' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_null_rln(self): """ Test None with -rln """ data_in = None expected = 'null' opts.raw = True opts.lines = True opts.nulls = True self.assertEqual(self.json_out.create_json(data_in), expected) # # naked int # def test_int(self): """ Test int """ data_in = 42 expected = '42' self.assertEqual(self.json_out.create_json(data_in), expected) def test_int_r(self): """ Test int -r """ data_in = 42 expected = '42' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_int_l(self): """ Test int -l """ data_in = 42 expected = '42' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_int_rl(self): """ Test int -rl """ data_in = 42 expected = '42' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # naked float # def test_float(self): """ Test float """ data_in = 3.14 expected = '3.14' self.assertEqual(self.json_out.create_json(data_in), expected) def test_float_r(self): """ Test float -r """ data_in = 3.14 expected = '3.14' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_float_l(self): """ Test float -l """ data_in = 3.14 expected = '3.14' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_float_rl(self): """ Test float -rl """ data_in = 3.14 expected = '3.14' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # naked string # def test_string(self): """ Test "string with\nnewline char" """ data_in = '"string with\nnewline char"' expected = '""string with\\nnewline char""' self.assertEqual(self.json_out.create_json(data_in), expected) def test_string_r(self): """ Test "string with\nnewline char" -r """ data_in = '"string with\nnewline char"' expected = '"string with\\nnewline char"' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_string_l(self): """ Test "string with\nnewline char" -l """ data_in = '"string with\nnewline char"' expected = '""string with\\nnewline char""' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_string_rl(self): """ Test "string with\nnewline char" -rl """ data_in = '"string with\nnewline char"' expected = '"string with\\nnewline char"' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # Naked Dict # def test_dict(self): """ Test self.dict_sample """ data_in = self.dict_sample expected = '{\n "string": "string\\nwith newline\\ncharacters in it",\n "true": true,\n "false": false,\n "null": null,\n "int": 42,\n "float": 3.14,\n "array": [\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42,\n 3.14\n ]\n}' self.assertEqual(self.json_out.create_json(data_in), expected) def test_dict_r(self): """ Test self.dict_sample -r """ data_in = self.dict_sample expected = '{\n "string": "string\\nwith newline\\ncharacters in it",\n "true": true,\n "false": false,\n "null": null,\n "int": 42,\n "float": 3.14,\n "array": [\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42,\n 3.14\n ]\n}' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_dict_l(self): """ Test self.dict_sample -l """ data_in = self.dict_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_dict_c(self): """ Test self.dict_sample -c """ data_in = self.dict_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_dict_rl(self): """ Test self.dict_sample -rl """ data_in = self.dict_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_dict_cl(self): """ Test self.dict_sample -cl """ data_in = self.dict_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}' opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_dict_cr(self): """ Test self.dict_sample -cr """ data_in = self.dict_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}' opts.compact = True opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_dict_crl(self): """ Test self.dict_sample -crl """ data_in = self.dict_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}' opts.compact = True opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # only run this test if using pygments 2.9.0 @unittest.skipIf(pygments.__version__ != '2.9.0', "Skip if Pygments 2.9.0 is not installed") def test_dict_html(self): """ Test self.dict_sample html output """ data_in = self.dict_sample expected = '
{\n  "string": "string\\nwith newline\\ncharacters in it",\n  "true": true,\n  "false": false,\n  "null": null,\n  "int": 42,\n  "float": 3.14,\n  "array": [\n    "string\\nwith newline\\ncharacters in it",\n    true,\n    false,\n    null,\n    42,\n    3.14\n  ]\n}\n
\n' output = self.json_out.create_json(data_in) self.assertEqual(self.json_out.html_output(output), expected) def test_dict_color(self): """ Test self.dict_sample color output """ data_in = self.dict_sample expected = '{\n \x1b[34;01m"string"\x1b[39;00m: \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m,\n \x1b[34;01m"true"\x1b[39;00m: \x1b[90mtrue\x1b[39m,\n \x1b[34;01m"false"\x1b[39;00m: \x1b[90mfalse\x1b[39m,\n \x1b[34;01m"null"\x1b[39;00m: \x1b[90mnull\x1b[39m,\n \x1b[34;01m"int"\x1b[39;00m: \x1b[35m42\x1b[39m,\n \x1b[34;01m"float"\x1b[39;00m: \x1b[35m3.14\x1b[39m,\n \x1b[34;01m"array"\x1b[39;00m: [\n \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m,\n \x1b[90mtrue\x1b[39m,\n \x1b[90mfalse\x1b[39m,\n \x1b[90mnull\x1b[39m,\n \x1b[35m42\x1b[39m,\n \x1b[35m3.14\x1b[39m\n ]\n}' output = self.json_out.create_json(data_in) self.assertEqual(self.json_out.color_output(output), expected) # # true in a list # def test_list_true(self): """ Test [True] """ data_in = [True] expected = '[\n true\n]' self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_true_c(self): """ Test [True] -c """ data_in = [True] expected = '[true]' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_true_r(self): """ Test [True] -r """ data_in = [True] expected = '[\n true\n]' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_true_l(self): """ Test [True] -l """ data_in = [True] expected = 'true' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_true_cl(self): """ Test [True] -cl """ data_in = [True] expected = 'true' opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_true_rl(self): """ Test [True] -rl """ data_in = [True] expected = 'true' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_true_cr(self): """ Test [True] -cr """ data_in = [True] expected = '[true]' opts.compact = True opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_true_crl(self): """ Test [True] -crl """ data_in = [True] expected = 'true' opts.compact = True opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # false in a list # def test_list_false(self): """ Test [False] """ data_in = [False] expected = '[\n false\n]' self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_false_c(self): """ Test [False] -c """ data_in = [False] expected = '[false]' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_false_r(self): """ Test [False] -r """ data_in = [False] expected = '[\n false\n]' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_false_l(self): """ Test [False] -l """ data_in = [False] expected = 'false' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_false_cl(self): """ Test [False] -cl """ data_in = [False] expected = 'false' opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_false_rl(self): """ Test [False] -rl """ data_in = [False] expected = 'false' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_false_cr(self): """ Test [False] -cr """ data_in = [False] expected = '[false]' opts.compact = True opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_false_crl(self): """ Test [False] -crl """ data_in = [False] expected = 'false' opts.compact = True opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # null in a list # def test_list_null(self): """ Test [None] """ data_in = [None] expected = '[\n null\n]' self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_c(self): """ Test [None] -c """ data_in = [None] expected = '[null]' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_r(self): """ Test [None] -r """ data_in = [None] expected = '[\n null\n]' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_l(self): """ Test [None] -l """ data_in = [None] expected = '' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_cl(self): """ Test [None] -cl """ data_in = [None] expected = '' opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_rl(self): """ Test [None] -rl """ data_in = [None] expected = '' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_cr(self): """ Test [None] -cr """ data_in = [None] expected = '[null]' opts.compact = True opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_crl(self): """ Test [False] -crl """ data_in = [None] expected = '' opts.compact = True opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_n(self): """ Test [None] -n """ data_in = [None] expected = '[\n null\n]' opts.nulls = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_nc(self): """ Test [None] -nc """ data_in = [None] expected = '[null]' opts.nulls = True opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_nl(self): """ Test [None] -nl """ data_in = [None] expected = 'null' opts.nulls = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_nr(self): """ Test [None] -nr """ data_in = [None] expected = '[\n null\n]' opts.nulls = True opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_ncr(self): """ Test [None] -ncr """ data_in = [None] expected = '[null]' opts.nulls = True opts.compact = True opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_ncl(self): """ Test [None] -ncl """ data_in = [None] expected = 'null' opts.nulls = True opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_nlr(self): """ Test [None] -nlr """ data_in = [None] expected = 'null' opts.nulls = True opts.lines = True opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_null_nlrc(self): """ Test [None] -nlrc """ data_in = [None] expected = 'null' opts.nulls = True opts.lines = True opts.raw = True opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) # # Int in a list # def test_list_int(self): """ Test [integer] """ data_in = [42] expected = '[\n 42\n]' self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_int_c(self): """ Test [integer] -c """ data_in = [42] expected = '[42]' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_int_l(self): """ Test [integer] -l """ data_in = [42] expected = '42' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_int_r(self): """ Test [integer] -r """ data_in = [42] expected = '[\n 42\n]' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_int_rl(self): """ Test [integer] -rl """ data_in = [42] expected = '42' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_int_cl(self): """ Test [integer] -cl """ data_in = [42] expected = '42' opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_int_crl(self): """ Test [integer] -crl """ data_in = [42] expected = '42' opts.compact = True opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # Float in a list # def test_list_float(self): """ Test [float] """ data_in = [3.14] expected = '[\n 3.14\n]' self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_float_c(self): """ Test [float] -c """ data_in = [3.14] expected = '[3.14]' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_float_l(self): """ Test [float] -l """ data_in = [3.14] expected = '3.14' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_float_r(self): """ Test [float] -r """ data_in = [3.14] expected = '[\n 3.14\n]' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_float_rl(self): """ Test [float] -rl """ data_in = [3.14] expected = '3.14' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_float_rc(self): """ Test [float] -rc """ data_in = [3.14] expected = '[3.14]' opts.raw = True opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_float_rcl(self): """ Test [float] -rcl """ data_in = [3.14] expected = '3.14' opts.raw = True opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # String in a list # def test_list_str(self): """ Test ['string with spaces\nand newline\ncharacters'] """ data_in = ['string with spaces\nand newline\ncharacters'] expected = '[\n "string with spaces\\nand newline\\ncharacters"\n]' self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_str_l(self): """ Test ['string with spaces\nand newline\ncharacters'] -l """ data_in = ['string with spaces\nand newline\ncharacters'] expected = '"string with spaces\\nand newline\\ncharacters"' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_str_r(self): """ Test ['string with spaces\nand newline\ncharacters'] -r """ data_in = ['string with spaces\nand newline\ncharacters'] expected = '[\n "string with spaces\\nand newline\\ncharacters"\n]' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_str_c(self): """ Test ['string with spaces\nand newline\ncharacters'] -c """ data_in = ['string with spaces\nand newline\ncharacters'] expected = '["string with spaces\\nand newline\\ncharacters"]' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_str_rl(self): """ Test ['string with spaces\nand newline\ncharacters'] -rl """ data_in = ['string with spaces\nand newline\ncharacters'] expected = 'string with spaces\\nand newline\\ncharacters' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_str_rc(self): """ Test ['string with spaces\nand newline\ncharacters'] -rc """ data_in = ['string with spaces\nand newline\ncharacters'] expected = '["string with spaces\\nand newline\\ncharacters"]' opts.raw = True opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_str_cl(self): """ Test ['string with spaces\nand newline\ncharacters'] -cl """ data_in = ['string with spaces\nand newline\ncharacters'] expected = '"string with spaces\\nand newline\\ncharacters"' opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_str_crl(self): """ Test ['string with spaces\nand newline\ncharacters'] -crl """ data_in = ['string with spaces\nand newline\ncharacters'] expected = 'string with spaces\\nand newline\\ncharacters' opts.compact = True opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # List with different types of elements # def test_list_sample(self): """ Test self.list_sample """ data_in = self.list_sample expected = '[\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42,\n 3.14\n]' self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_sample_l(self): """ Test self.list_sample -l """ data_in = self.list_sample expected = '"string\\nwith newline\\ncharacters in it"\ntrue\nfalse\n\n42\n3.14' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_sample_r(self): """ Test self.list_sample -r """ data_in = self.list_sample expected = '[\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42,\n 3.14\n]' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_sample_c(self): """ Test self.list_sample -c """ data_in = self.list_sample expected = '["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_sample_rl(self): """ Test self.list_sample -rl """ data_in = self.list_sample expected = 'string\\nwith newline\\ncharacters in it\ntrue\nfalse\n\n42\n3.14' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_sample_rc(self): """ Test self.list_sample -rc """ data_in = self.list_sample expected = '["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]' opts.raw = True opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_sample_cl(self): """ Test self.list_sample -cl """ data_in = self.list_sample expected = '"string\\nwith newline\\ncharacters in it"\ntrue\nfalse\n\n42\n3.14' opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_sample_crl(self): """ Test self.list_sample -crl """ data_in = self.list_sample expected = 'string\\nwith newline\\ncharacters in it\ntrue\nfalse\n\n42\n3.14' opts.compact = True opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # Dicts in a list # def test_list_dict(self): """ Test self.list_of_dicts_sample """ data_in = self.list_of_dicts_sample expected = '[\n {\n "string": "string\\nwith newline\\ncharacters in it",\n "true": true,\n "false": false,\n "null": null,\n "int": 42,\n "float": 3.14,\n "array": [\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42,\n 3.14\n ]\n },\n {\n "string": "another string\\nwith newline\\ncharacters in it",\n "true": true,\n "false": false,\n "null": null,\n "int": 10001,\n "float": -400.45,\n "array": [\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n -6000034,\n 999999.854321\n ]\n }\n]' self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_dict_c(self): """ Test self.list_of_dicts_sample -c """ data_in = self.list_of_dicts_sample expected = '[{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]},{"string":"another string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":10001,"float":-400.45,"array":["string\\nwith newline\\ncharacters in it",true,false,null,-6000034,999999.854321]}]' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_dict_r(self): """ Test self.list_of_dicts_sample -r """ data_in = self.list_of_dicts_sample expected = '[\n {\n "string": "string\\nwith newline\\ncharacters in it",\n "true": true,\n "false": false,\n "null": null,\n "int": 42,\n "float": 3.14,\n "array": [\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42,\n 3.14\n ]\n },\n {\n "string": "another string\\nwith newline\\ncharacters in it",\n "true": true,\n "false": false,\n "null": null,\n "int": 10001,\n "float": -400.45,\n "array": [\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n -6000034,\n 999999.854321\n ]\n }\n]' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_dict_l(self): """ Test self.list_of_dicts_sample -l """ data_in = self.list_of_dicts_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}\n{"string":"another string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":10001,"float":-400.45,"array":["string\\nwith newline\\ncharacters in it",true,false,null,-6000034,999999.854321]}' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_dict_cr(self): """ Test self.list_of_dicts_sample -cr """ data_in = self.list_of_dicts_sample expected = '[{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]},{"string":"another string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":10001,"float":-400.45,"array":["string\\nwith newline\\ncharacters in it",true,false,null,-6000034,999999.854321]}]' opts.compact = True opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_dict_cl(self): """ Test self.list_of_dicts_sample -cl """ data_in = self.list_of_dicts_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}\n{"string":"another string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":10001,"float":-400.45,"array":["string\\nwith newline\\ncharacters in it",true,false,null,-6000034,999999.854321]}' opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_dict_rl(self): """ Test self.list_of_dicts_sample -rl """ data_in = self.list_of_dicts_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}\n{"string":"another string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":10001,"float":-400.45,"array":["string\\nwith newline\\ncharacters in it",true,false,null,-6000034,999999.854321]}' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_dict_crl(self): """ Test self.list_of_dicts_sample -crl """ data_in = self.list_of_dicts_sample expected = '{"string":"string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":42,"float":3.14,"array":["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]}\n{"string":"another string\\nwith newline\\ncharacters in it","true":true,"false":false,"null":null,"int":10001,"float":-400.45,"array":["string\\nwith newline\\ncharacters in it",true,false,null,-6000034,999999.854321]}' opts.compact = True opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) # # lists in list # def test_list_list(self): """ Test self.list_of_lists_sample """ data_in = self.list_of_lists_sample expected = '[\n [\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42,\n 3.14\n ],\n [\n "another string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42001,\n -3.14\n ]\n]' self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_list_c(self): """ Test self.list_of_lists_sample -c """ data_in = self.list_of_lists_sample expected = '[["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14],["another string\\nwith newline\\ncharacters in it",true,false,null,42001,-3.14]]' opts.compact = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_list_r(self): """ Test self.list_of_lists_sample -r """ data_in = self.list_of_lists_sample expected = '[\n [\n "string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42,\n 3.14\n ],\n [\n "another string\\nwith newline\\ncharacters in it",\n true,\n false,\n null,\n 42001,\n -3.14\n ]\n]' opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_list_l(self): """ Test self.list_of_lists_sample -l """ data_in = self.list_of_lists_sample expected = '["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]\n["another string\\nwith newline\\ncharacters in it",true,false,null,42001,-3.14]' opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_list_cr(self): """ Test self.list_of_lists_sample -cr """ data_in = self.list_of_lists_sample expected = '[["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14],["another string\\nwith newline\\ncharacters in it",true,false,null,42001,-3.14]]' opts.compact = True opts.raw = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_list_cl(self): """ Test self.list_of_lists_sample -cl """ data_in = self.list_of_lists_sample expected = '["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]\n["another string\\nwith newline\\ncharacters in it",true,false,null,42001,-3.14]' opts.compact = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_list_rl(self): """ Test self.list_of_lists_sample -rl """ data_in = self.list_of_lists_sample expected = '["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]\n["another string\\nwith newline\\ncharacters in it",true,false,null,42001,-3.14]' opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_list_list_crl(self): """ Test self.list_of_lists_sample -crl """ data_in = self.list_of_lists_sample expected = '["string\\nwith newline\\ncharacters in it",true,false,null,42,3.14]\n["another string\\nwith newline\\ncharacters in it",true,false,null,42001,-3.14]' opts.compact = True opts.raw = True opts.lines = True self.assertEqual(self.json_out.create_json(data_in), expected) def test_non_serializable(self): """ Test _.items() """ data_in = OrderedDict(foo='bar').items() self.assertRaises(TypeError, self.json_out.create_json, data_in) def test_non_serializable_l(self): """ Test _.items() -l """ data_in = OrderedDict(foo='bar').items() opts.lines = True self.assertRaises(TypeError, self.json_out.create_json, data_in) if __name__ == '__main__': unittest.main() jello-1.6.1/tests/test_create_schema.py000066400000000000000000000722261501617276000202000ustar00rootroot00000000000000#!/usr/bin/env python3 import unittest import os from jello.lib import opts, Schema class MyTests(unittest.TestCase): def setUp(self): # initialize options opts.initialize = None opts.version_info = None opts.helpme = None opts.compact = None opts.nulls = None opts.raw = None opts.lines = None opts.mono = None opts.schema = None opts.types = None opts.keyname_color = None opts.keyword_color = None opts.number_color = None opts.string_color = None # initialize schema_lists self.schema = Schema() # initialize JELLO_COLORS env variable os.environ['JELLO_COLORS'] = 'default,default,default,default' # set the colors self.schema.set_colors() # create samples self.dict_sample = { 'string': 'string\nwith newline\ncharacters in it', 'true': True, 'false': False, 'null': None, 'int': 42, 'float': 3.14, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] } self.list_sample = [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] self.list_of_dicts_sample = [ { 'string': 'string\nwith newline\ncharacters in it', 'true': True, 'false': False, 'null': None, 'int': 42, 'float': 3.14, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] }, { 'string': 'another string\nwith newline\ncharacters in it', 'true': True, 'false': False, 'null': None, 'int': 10001, 'float': -400.45, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, -6000034, 999999.854321 ] } ] self.list_of_lists_sample = [ [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ], [ 'another string\nwith newline\ncharacters in it', True, False, None, 42001, -3.14 ] ] self.dict_space_keys_nest_sample = { 'string with spaces': 'string\nwith newline\ncharacters in it', 'foo': { "another with spaces": { "nested": { "nested space": True } } }, 'true': True, 'false': False, 'null': None, 'int': 42, 'float': 3.14, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] } self.deep_nest_sample = [[[[{"foo":[[[[1,2,3]]]]}]]]] self.reserved_or_invalid_keynames_sample = { "True": 1, "get": 1, "fromkeys": 1, "aquaero-hid-3-1cb1": 1, "if": 1, "return": 1, "__class__": 1 } # ------------ Tests ------------ # # Naked True # def test_true(self): """ Test True """ data_in = True expected = '\x1b[34;01m_\x1b[39;00m = \x1b[90mtrue\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_true_m(self): """ Test True -m """ data_in = True expected = '_ = true;' self.assertEqual(self.schema.create_schema(data_in), expected) # # Naked False # def test_false(self): """ Test False """ data_in = False expected = '\x1b[34;01m_\x1b[39;00m = \x1b[90mfalse\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_false_m(self): """ Test False -m """ data_in = False expected = '_ = false;' self.assertEqual(self.schema.create_schema(data_in), expected) # # Naked null # def test_null(self): """ Test None """ data_in = None expected = '\x1b[34;01m_\x1b[39;00m = \x1b[90mnull\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_null_m(self): """ Test None -m """ data_in = None expected = '_ = null;' self.assertEqual(self.schema.create_schema(data_in), expected) # # naked int # def test_int(self): """ Test int """ data_in = 42 expected = '\x1b[34;01m_\x1b[39;00m = \x1b[35m42\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_int_m(self): """ Test int -m """ data_in = 42 expected = '_ = 42;' self.assertEqual(self.schema.create_schema(data_in), expected) # # naked float # def test_float(self): """ Test float """ data_in = 3.14 expected = '\x1b[34;01m_\x1b[39;00m = \x1b[35m3.14\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_float_m(self): """ Test float -m """ data_in = 3.14 expected = '_ = 3.14;' self.assertEqual(self.schema.create_schema(data_in), expected) # # naked string # def test_string(self): """ Test string """ data_in = '"string with\\nnewline char"' expected = '\x1b[34;01m_\x1b[39;00m = \x1b[32m"\\"string with\\\\nnewline char\\""\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_string_m(self): """ Test string -m """ data_in = '"string with\\nnewline char"' expected = '_ = "\\"string with\\\\nnewline char\\"";' self.assertEqual(self.schema.create_schema(data_in), expected) # # Naked Dict # def test_dict(self): """ Test self.dict_sample """ data_in = self.dict_sample expected = '\x1b[34;01m_\x1b[39;00m = {};\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01mstring\x1b[39;00m = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mtrue\x1b[39m = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mfalse\x1b[39m = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mnull\x1b[39m = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mint\x1b[39m = \x1b[35m42\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mfloat\x1b[39m = \x1b[35m3.14\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m1\x1b[39m] = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m2\x1b[39m] = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m3\x1b[39m] = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m4\x1b[39m] = \x1b[35m42\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m5\x1b[39m] = \x1b[35m3.14\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_dict_t(self): """ Test self.dict_sample -t """ opts.types = True data_in = self.dict_sample expected = '\x1b[34;01m_\x1b[39;00m = {}; // (object)\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01mstring\x1b[39;00m = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m; // (string)\n\x1b[34;01m_\x1b[39;00m.\x1b[90mtrue\x1b[39m = \x1b[90mtrue\x1b[39m; // (boolean)\n\x1b[34;01m_\x1b[39;00m.\x1b[90mfalse\x1b[39m = \x1b[90mfalse\x1b[39m; // (boolean)\n\x1b[34;01m_\x1b[39;00m.\x1b[90mnull\x1b[39m = \x1b[90mnull\x1b[39m; // (null)\n\x1b[34;01m_\x1b[39;00m.\x1b[90mint\x1b[39m = \x1b[35m42\x1b[39m; // (number)\n\x1b[34;01m_\x1b[39;00m.\x1b[90mfloat\x1b[39m = \x1b[35m3.14\x1b[39m; // (number)\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m = []; // (array)\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m; // (string)\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m1\x1b[39m] = \x1b[90mtrue\x1b[39m; // (boolean)\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m2\x1b[39m] = \x1b[90mfalse\x1b[39m; // (boolean)\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m3\x1b[39m] = \x1b[90mnull\x1b[39m; // (null)\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m4\x1b[39m] = \x1b[35m42\x1b[39m; // (number)\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m5\x1b[39m] = \x1b[35m3.14\x1b[39m; // (number)' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_dict_m(self): """ Test self.dict_sample -m """ data_in = self.dict_sample expected = '_ = {};\n_.string = "string\\nwith newline\\ncharacters in it";\n_.true = true;\n_.false = false;\n_.null = null;\n_.int = 42;\n_.float = 3.14;\n_.array = [];\n_.array[0] = "string\\nwith newline\\ncharacters in it";\n_.array[1] = true;\n_.array[2] = false;\n_.array[3] = null;\n_.array[4] = 42;\n_.array[5] = 3.14;' self.assertEqual(self.schema.create_schema(data_in), expected) def test_dict_mt(self): """ Test self.dict_sample -mt """ opts.types = True data_in = self.dict_sample expected = '_ = {}; // (object)\n_.string = "string\\nwith newline\\ncharacters in it"; // (string)\n_.true = true; // (boolean)\n_.false = false; // (boolean)\n_.null = null; // (null)\n_.int = 42; // (number)\n_.float = 3.14; // (number)\n_.array = []; // (array)\n_.array[0] = "string\\nwith newline\\ncharacters in it"; // (string)\n_.array[1] = true; // (boolean)\n_.array[2] = false; // (boolean)\n_.array[3] = null; // (null)\n_.array[4] = 42; // (number)\n_.array[5] = 3.14; // (number)' self.assertEqual(self.schema.create_schema(data_in), expected) # # true in a list # def test_list_true(self): """ Test [True] """ data_in = [True] expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[90mtrue\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_list_true_m(self): """ Test [True] -m """ data_in = [True] expected = '_ = [];\n_[0] = true;' self.assertEqual(self.schema.create_schema(data_in), expected) # # false in a list # def test_list_false(self): """ Test [False] """ data_in = [False] expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[90mfalse\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_list_false_m(self): """ Test [False] -m """ data_in = [False] expected = '_ = [];\n_[0] = false;' self.assertEqual(self.schema.create_schema(data_in), expected) # # null in a list # def test_list_null(self): """ Test [None] """ data_in = [None] expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[90mnull\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_list_null_m(self): """ Test [None] -m """ data_in = [None] expected = '_ = [];\n_[0] = null;' self.assertEqual(self.schema.create_schema(data_in), expected) # # Int in a list # def test_list_int(self): """ Test [42] """ data_in = [42] expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[35m42\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_list_int_m(self): """ Test [42] -m """ data_in = [42] expected = '_ = [];\n_[0] = 42;' self.assertEqual(self.schema.create_schema(data_in), expected) # # Float in a list # def test_list_float(self): """ Test [3.14] """ data_in = [3.14] expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[35m3.14\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_list_float_m(self): """ Test [3.14] -m """ data_in = [3.14] expected = '_ = [];\n_[0] = 3.14;' self.assertEqual(self.schema.create_schema(data_in), expected) # # String in a list # def test_list_str(self): """ Test ['string with spaces\nand newline\ncharacters'] """ data_in = ['string with spaces\nand newline\ncharacters'] expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[32m"string with spaces\\nand newline\\ncharacters"\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_list_str_m(self): """ Test ['string with spaces\nand newline\ncharacters'] -m """ data_in = ['string with spaces\nand newline\ncharacters'] expected = '_ = [];\n_[0] = "string with spaces\\nand newline\\ncharacters";' self.assertEqual(self.schema.create_schema(data_in), expected) # # List with different types of elements # def test_list_sample(self): """ Test self.list_sample """ data_in = self.list_sample expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m] = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m2\x1b[39m] = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m3\x1b[39m] = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m4\x1b[39m] = \x1b[35m42\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m5\x1b[39m] = \x1b[35m3.14\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_list_sample_m(self): """ Test self.list_sample -m """ data_in = self.list_sample expected = '_ = [];\n_[0] = "string\\nwith newline\\ncharacters in it";\n_[1] = true;\n_[2] = false;\n_[3] = null;\n_[4] = 42;\n_[5] = 3.14;' self.assertEqual(self.schema.create_schema(data_in), expected) # # Dicts in a list # def test_list_dict(self): """ Test self.list_of_dicts_sample """ data_in = self.list_of_dicts_sample expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = {};\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[34;01mstring\x1b[39;00m = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[90mtrue\x1b[39m = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[90mfalse\x1b[39m = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[90mnull\x1b[39m = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[90mint\x1b[39m = \x1b[35m42\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[90mfloat\x1b[39m = \x1b[35m3.14\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[34;01marray\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m1\x1b[39m] = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m2\x1b[39m] = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m3\x1b[39m] = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m4\x1b[39m] = \x1b[35m42\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m5\x1b[39m] = \x1b[35m3.14\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m] = {};\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[34;01mstring\x1b[39;00m = \x1b[32m"another string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[90mtrue\x1b[39m = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[90mfalse\x1b[39m = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[90mnull\x1b[39m = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[90mint\x1b[39m = \x1b[35m10001\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[90mfloat\x1b[39m = -\x1b[35m400.45\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[34;01marray\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m1\x1b[39m] = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m2\x1b[39m] = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m3\x1b[39m] = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m4\x1b[39m] = -\x1b[35m6000034\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m].\x1b[34;01marray\x1b[39;00m[\x1b[35m5\x1b[39m] = \x1b[35m999999.854321\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_list_dict_m(self): """ Test self.list_of_dicts_sample -m """ data_in = self.list_of_dicts_sample expected = '_ = [];\n_[0] = {};\n_[0].string = "string\\nwith newline\\ncharacters in it";\n_[0].true = true;\n_[0].false = false;\n_[0].null = null;\n_[0].int = 42;\n_[0].float = 3.14;\n_[0].array = [];\n_[0].array[0] = "string\\nwith newline\\ncharacters in it";\n_[0].array[1] = true;\n_[0].array[2] = false;\n_[0].array[3] = null;\n_[0].array[4] = 42;\n_[0].array[5] = 3.14;\n_[1] = {};\n_[1].string = "another string\\nwith newline\\ncharacters in it";\n_[1].true = true;\n_[1].false = false;\n_[1].null = null;\n_[1].int = 10001;\n_[1].float = -400.45;\n_[1].array = [];\n_[1].array[0] = "string\\nwith newline\\ncharacters in it";\n_[1].array[1] = true;\n_[1].array[2] = false;\n_[1].array[3] = null;\n_[1].array[4] = -6000034;\n_[1].array[5] = 999999.854321;' self.assertEqual(self.schema.create_schema(data_in), expected) # # lists in list # def test_list_list(self): """ Test self.list_of_lists_sample """ data_in = self.list_of_lists_sample expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m] = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m1\x1b[39m] = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m2\x1b[39m] = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m3\x1b[39m] = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m4\x1b[39m] = \x1b[35m42\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m5\x1b[39m] = \x1b[35m3.14\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m] = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m][\x1b[35m0\x1b[39m] = \x1b[32m"another string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m][\x1b[35m1\x1b[39m] = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m][\x1b[35m2\x1b[39m] = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m][\x1b[35m3\x1b[39m] = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m][\x1b[35m4\x1b[39m] = \x1b[35m42001\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m1\x1b[39m][\x1b[35m5\x1b[39m] = -\x1b[35m3.14\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_list_list_m(self): """ Test self.list_of_lists_sample -m """ data_in = self.list_of_lists_sample expected = '_ = [];\n_[0] = [];\n_[0][0] = "string\\nwith newline\\ncharacters in it";\n_[0][1] = true;\n_[0][2] = false;\n_[0][3] = null;\n_[0][4] = 42;\n_[0][5] = 3.14;\n_[1] = [];\n_[1][0] = "another string\\nwith newline\\ncharacters in it";\n_[1][1] = true;\n_[1][2] = false;\n_[1][3] = null;\n_[1][4] = 42001;\n_[1][5] = -3.14;' self.assertEqual(self.schema.create_schema(data_in), expected) # # deep nest # def test_dict_space_keys_nest(self): """ Test self.dict_space_keys_nest_sample """ data_in = self.dict_space_keys_nest_sample expected = '\x1b[34;01m_\x1b[39;00m = {};\n\x1b[34;01m_\x1b[39;00m[\x1b[32m"string with spaces"\x1b[39m] = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01mfoo\x1b[39;00m = {};\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01mfoo\x1b[39;00m[\x1b[32m"another with spaces"\x1b[39m] = {};\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01mfoo\x1b[39;00m[\x1b[32m"another with spaces"\x1b[39m].\x1b[34;01mnested\x1b[39;00m = {};\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01mfoo\x1b[39;00m[\x1b[32m"another with spaces"\x1b[39m].\x1b[34;01mnested\x1b[39;00m[\x1b[32m"nested space"\x1b[39m] = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mtrue\x1b[39m = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mfalse\x1b[39m = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mnull\x1b[39m = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mint\x1b[39m = \x1b[35m42\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[90mfloat\x1b[39m = \x1b[35m3.14\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m0\x1b[39m] = \x1b[32m"string\\nwith newline\\ncharacters in it"\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m1\x1b[39m] = \x1b[90mtrue\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m2\x1b[39m] = \x1b[90mfalse\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m3\x1b[39m] = \x1b[90mnull\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m4\x1b[39m] = \x1b[35m42\x1b[39m;\n\x1b[34;01m_\x1b[39;00m.\x1b[34;01marray\x1b[39;00m[\x1b[35m5\x1b[39m] = \x1b[35m3.14\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_dict_space_keys_nest_m(self): """ Test self.dict_space_keys_nest_sample -m """ data_in = self.dict_space_keys_nest_sample expected = '_ = {};\n_["string with spaces"] = "string\\nwith newline\\ncharacters in it";\n_.foo = {};\n_.foo["another with spaces"] = {};\n_.foo["another with spaces"].nested = {};\n_.foo["another with spaces"].nested["nested space"] = true;\n_.true = true;\n_.false = false;\n_.null = null;\n_.int = 42;\n_.float = 3.14;\n_.array = [];\n_.array[0] = "string\\nwith newline\\ncharacters in it";\n_.array[1] = true;\n_.array[2] = false;\n_.array[3] = null;\n_.array[4] = 42;\n_.array[5] = 3.14;' self.assertEqual(self.schema.create_schema(data_in), expected) def test_deep_nest(self): """ Test self.deep_nest_sample """ data_in = self.deep_nest_sample expected = '\x1b[34;01m_\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m] = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m] = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m] = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m] = {};\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m].\x1b[34;01mfoo\x1b[39;00m = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m].\x1b[34;01mfoo\x1b[39;00m[\x1b[35m0\x1b[39m] = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m].\x1b[34;01mfoo\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m] = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m].\x1b[34;01mfoo\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m] = [];\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m].\x1b[34;01mfoo\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m] = \x1b[35m1\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m].\x1b[34;01mfoo\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m1\x1b[39m] = \x1b[35m2\x1b[39m;\n\x1b[34;01m_\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m].\x1b[34;01mfoo\x1b[39;00m[\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m0\x1b[39m][\x1b[35m2\x1b[39m] = \x1b[35m3\x1b[39m;' output = self.schema.create_schema(data_in) self.assertEqual(self.schema.color_output(output), expected) def test_deep_nest_m(self): """ Test self.deep_nest_sample -m """ data_in = self.deep_nest_sample expected = '_ = [];\n_[0] = [];\n_[0][0] = [];\n_[0][0][0] = [];\n_[0][0][0][0] = {};\n_[0][0][0][0].foo = [];\n_[0][0][0][0].foo[0] = [];\n_[0][0][0][0].foo[0][0] = [];\n_[0][0][0][0].foo[0][0][0] = [];\n_[0][0][0][0].foo[0][0][0][0] = 1;\n_[0][0][0][0].foo[0][0][0][1] = 2;\n_[0][0][0][0].foo[0][0][0][2] = 3;' self.assertEqual(self.schema.create_schema(data_in), expected) # # Handle invalid or reserved key names # def test_dict_reserved_or_invalid_keynames(self): """ Test self.reserved_or_invalid_keynames_sample """ data_in = self.reserved_or_invalid_keynames_sample expected = '_ = {};\n_["True"] = 1;\n_["get"] = 1;\n_["fromkeys"] = 1;\n_["aquaero-hid-3-1cb1"] = 1;\n_["if"] = 1;\n_["return"] = 1;\n_["__class__"] = 1;' output = self.schema.create_schema(data_in) self.assertEqual(output, expected) if __name__ == '__main__': unittest.main() jello-1.6.1/tests/test_load_json.py000066400000000000000000000030521501617276000173540ustar00rootroot00000000000000#!/usr/bin/env python3 import unittest from jello.lib import load_json class MyTests(unittest.TestCase): pretty_json = '''\ { "foo": 1, "bar": 2, "baz": 3 }''' compact_json = '''{"foo": 1,"bar": 2,"baz": 3}''' json_lines = '''\ {"foo": 1,"bar": 2,"baz": 3} {"foo": 4,"bar": 5,"baz": 6} {"foo": 7,"bar": 8,"baz": 9}''' json_lines_extra_spaces = '''\ {"foo": 1,"bar": 2,"baz": 3} {"foo": 4,"bar": 5,"baz": 6} {"foo": 7,"bar": 8,"baz": 9} ''' def test_load_pretty_json(self): """ Test with pretty JSON """ expected = {'foo': 1, 'bar': 2, 'baz': 3} self.assertEqual(load_json(self.pretty_json), expected) def test_load_compact_json(self): """ Test with compact JSON """ expected = {'foo': 1, 'bar': 2, 'baz': 3} self.assertEqual(load_json(self.compact_json), expected) def test_load_json_lines(self): """ Test with JSON Lines """ expected = [{'foo': 1, 'bar': 2, 'baz': 3}, {'foo': 4, 'bar': 5, 'baz': 6}, {'foo': 7, 'bar': 8, 'baz': 9}] self.assertEqual(load_json(self.json_lines), expected) def test_load_json_lines_with_extra_whitespace(self): """ Test with JSON Lines with extra blank lines and whitespace """ expected = [{'foo': 1, 'bar': 2, 'baz': 3}, {'foo': 4, 'bar': 5, 'baz': 6}, {'foo': 7, 'bar': 8, 'baz': 9}] self.assertEqual(load_json(self.json_lines_extra_spaces), expected) if __name__ == '__main__': unittest.main() jello-1.6.1/tests/test_main.py000066400000000000000000005013711501617276000163370ustar00rootroot00000000000000#!/usr/bin/env python3 import os import sys import io import contextlib import copy import unittest from unittest.mock import patch import jello.cli from jello.lib import opts THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): def setUp(self): # initialize options opts.initialize = None opts.version_info = None opts.helpme = None opts.compact = None opts.nulls = None opts.empty = None opts.raw = None opts.lines = None opts.force_color = None opts.mono = None opts.schema = None opts.types = None opts.keyname_color = None opts.keyword_color = None opts.number_color = None opts.string_color = None self.jc_a_output = '''{"name": "jc", "version": "1.9.3", "description": "jc cli output JSON conversion tool", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "parser_count": 50, "parsers": [{"name": "airport", "argument": "--airport", "version": "1.0", "description": "airport -I command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["darwin"], "magic_commands": ["airport -I"]}, {"name": "airport_s", "argument": "--airport-s", "version": "1.0", "description": "airport -s command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["darwin"], "magic_commands": ["airport -s"]}, {"name": "arp", "argument": "--arp", "version": "1.2", "description": "arp command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "aix", "freebsd", "darwin"], "magic_commands": ["arp"]}, {"name": "blkid", "argument": "--blkid", "version": "1.0", "description": "blkid command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["blkid"]}, {"name": "crontab", "argument": "--crontab", "version": "1.1", "description": "crontab command and file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "aix", "freebsd"], "magic_commands": ["crontab"]}, {"name": "crontab_u", "argument": "--crontab-u", "version": "1.0", "description": "crontab file parser with user support", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "aix", "freebsd"]}, {"name": "csv", "argument": "--csv", "version": "1.0", "description": "CSV file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using the python standard csv library", "compatible": ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"]}, {"name": "df", "argument": "--df", "version": "1.1", "description": "df command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin"], "magic_commands": ["df"]}, {"name": "dig", "argument": "--dig", "version": "1.1", "description": "dig command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "aix", "freebsd", "darwin"], "magic_commands": ["dig"]}, {"name": "du", "argument": "--du", "version": "1.1", "description": "du command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "aix", "freebsd"], "magic_commands": ["du"]}, {"name": "env", "argument": "--env", "version": "1.1", "description": "env command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"], "magic_commands": ["env"]}, {"name": "file", "argument": "--file", "version": "1.1", "description": "file command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "aix", "freebsd", "darwin"], "magic_commands": ["file"]}, {"name": "free", "argument": "--free", "version": "1.0", "description": "free command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["free"]}, {"name": "fstab", "argument": "--fstab", "version": "1.0", "description": "fstab file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"]}, {"name": "group", "argument": "--group", "version": "1.0", "description": "/etc/group file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "aix", "freebsd"]}, {"name": "gshadow", "argument": "--gshadow", "version": "1.0", "description": "/etc/gshadow file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "aix", "freebsd"]}, {"name": "history", "argument": "--history", "version": "1.2", "description": "history command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Optimizations by https://github.com/philippeitis", "compatible": ["linux", "darwin", "cygwin", "aix", "freebsd"]}, {"name": "hosts", "argument": "--hosts", "version": "1.0", "description": "/etc/hosts file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"]}, {"name": "id", "argument": "--id", "version": "1.0", "description": "id command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "aix", "freebsd"], "magic_commands": ["id"]}, {"name": "ifconfig", "argument": "--ifconfig", "version": "1.5", "description": "ifconfig command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using ifconfig-parser package from https://github.com/KnightWhoSayNi/ifconfig-parser", "compatible": ["linux", "aix", "freebsd", "darwin"], "magic_commands": ["ifconfig"]}, {"name": "ini", "argument": "--ini", "version": "1.0", "description": "INI file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using configparser from the standard library", "compatible": ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"]}, {"name": "iptables", "argument": "--iptables", "version": "1.1", "description": "iptables command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["iptables"]}, {"name": "jobs", "argument": "--jobs", "version": "1.0", "description": "jobs command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "aix", "freebsd"], "magic_commands": ["jobs"]}, {"name": "last", "argument": "--last", "version": "1.0", "description": "last and lastb command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "aix", "freebsd"], "magic_commands": ["last", "lastb"]}, {"name": "ls", "argument": "--ls", "version": "1.3", "description": "ls command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "aix", "freebsd"], "magic_commands": ["ls"]}, {"name": "lsblk", "argument": "--lsblk", "version": "1.3", "description": "lsblk command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["lsblk"]}, {"name": "lsmod", "argument": "--lsmod", "version": "1.1", "description": "lsmod command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["lsmod"]}, {"name": "lsof", "argument": "--lsof", "version": "1.0", "description": "lsof command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["lsof"]}, {"name": "mount", "argument": "--mount", "version": "1.1", "description": "mount command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin"], "magic_commands": ["mount"]}, {"name": "netstat", "argument": "--netstat", "version": "1.2", "description": "netstat command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["netstat"]}, {"name": "ntpq", "argument": "--ntpq", "version": "1.0", "description": "ntpq -p command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["ntpq"]}, {"name": "passwd", "argument": "--passwd", "version": "1.0", "description": "/etc/passwd file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "aix", "freebsd"]}, {"name": "pip_list", "argument": "--pip-list", "version": "1.0", "description": "pip list command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"], "magic_commands": ["pip list", "pip3 list"]}, {"name": "pip_show", "argument": "--pip-show", "version": "1.0", "description": "pip show command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"], "magic_commands": ["pip show", "pip3 show"]}, {"name": "ps", "argument": "--ps", "version": "1.1", "description": "ps command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "aix", "freebsd"], "magic_commands": ["ps"]}, {"name": "route", "argument": "--route", "version": "1.0", "description": "route command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["route"]}, {"name": "shadow", "argument": "--shadow", "version": "1.0", "description": "/etc/shadow file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "aix", "freebsd"]}, {"name": "ss", "argument": "--ss", "version": "1.0", "description": "ss command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["ss"]}, {"name": "stat", "argument": "--stat", "version": "1.0", "description": "stat command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["stat"]}, {"name": "systemctl", "argument": "--systemctl", "version": "1.0", "description": "systemctl command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["systemctl"]}, {"name": "systemctl_lj", "argument": "--systemctl-lj", "version": "1.0", "description": "systemctl list-jobs command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["systemctl list-jobs"]}, {"name": "systemctl_ls", "argument": "--systemctl-ls", "version": "1.0", "description": "systemctl list-sockets command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["systemctl list-sockets"]}, {"name": "systemctl_luf", "argument": "--systemctl-luf", "version": "1.0", "description": "systemctl list-unit-files command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["systemctl list-unit-files"]}, {"name": "timedatectl", "argument": "--timedatectl", "version": "1.0", "description": "timedatectl status command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux"], "magic_commands": ["timedatectl", "timedatectl status"]}, {"name": "uname", "argument": "--uname", "version": "1.1", "description": "uname -a command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin"], "magic_commands": ["uname"]}, {"name": "uptime", "argument": "--uptime", "version": "1.0", "description": "uptime command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "aix", "freebsd"], "magic_commands": ["uptime"]}, {"name": "w", "argument": "--w", "version": "1.0", "description": "w command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "aix", "freebsd"], "magic_commands": ["w"]}, {"name": "who", "argument": "--who", "version": "1.0", "description": "who command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": ["linux", "darwin", "cygwin", "aix", "freebsd"], "magic_commands": ["who"]}, {"name": "xml", "argument": "--xml", "version": "1.0", "description": "XML file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using the xmltodict library at https://github.com/martinblech/xmltodict", "compatible": ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"]}, {"name": "yaml", "argument": "--yaml", "version": "1.0", "description": "YAML file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml", "compatible": ["linux", "darwin", "cygwin", "win32", "aix", "freebsd"]}]}''' with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/twitterdata.jlines'), 'r', encoding='utf-8') as f: self.twitterdata = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/twitterdata.json'), 'r', encoding='utf-8') as f: self.twitterdata_output = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/twitter-table-output.jlines'), 'r', encoding='utf-8') as f: self.twitter_table_output = f.read() with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/twitter-table-output.schema'), 'r', encoding='utf-8') as f: self.twitter_table_output_schema = f.read() def test_jc_a(self): """ Test jc -a | jello """ expected = '''\ { "name": "jc", "version": "1.9.3", "description": "jc cli output JSON conversion tool", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "parser_count": 50, "parsers": [ { "name": "airport", "argument": "--airport", "version": "1.0", "description": "airport -I command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "darwin" ], "magic_commands": [ "airport -I" ] }, { "name": "airport_s", "argument": "--airport-s", "version": "1.0", "description": "airport -s command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "darwin" ], "magic_commands": [ "airport -s" ] }, { "name": "arp", "argument": "--arp", "version": "1.2", "description": "arp command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "aix", "freebsd", "darwin" ], "magic_commands": [ "arp" ] }, { "name": "blkid", "argument": "--blkid", "version": "1.0", "description": "blkid command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "blkid" ] }, { "name": "crontab", "argument": "--crontab", "version": "1.1", "description": "crontab command and file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "crontab" ] }, { "name": "crontab_u", "argument": "--crontab-u", "version": "1.0", "description": "crontab file parser with user support", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ] }, { "name": "csv", "argument": "--csv", "version": "1.0", "description": "CSV file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using the python standard csv library", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] }, { "name": "df", "argument": "--df", "version": "1.1", "description": "df command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin" ], "magic_commands": [ "df" ] }, { "name": "dig", "argument": "--dig", "version": "1.1", "description": "dig command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "aix", "freebsd", "darwin" ], "magic_commands": [ "dig" ] }, { "name": "du", "argument": "--du", "version": "1.1", "description": "du command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "du" ] }, { "name": "env", "argument": "--env", "version": "1.1", "description": "env command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ], "magic_commands": [ "env" ] }, { "name": "file", "argument": "--file", "version": "1.1", "description": "file command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "aix", "freebsd", "darwin" ], "magic_commands": [ "file" ] }, { "name": "free", "argument": "--free", "version": "1.0", "description": "free command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "free" ] }, { "name": "fstab", "argument": "--fstab", "version": "1.0", "description": "fstab file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ] }, { "name": "group", "argument": "--group", "version": "1.0", "description": "/etc/group file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ] }, { "name": "gshadow", "argument": "--gshadow", "version": "1.0", "description": "/etc/gshadow file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "aix", "freebsd" ] }, { "name": "history", "argument": "--history", "version": "1.2", "description": "history command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Optimizations by https://github.com/philippeitis", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ] }, { "name": "hosts", "argument": "--hosts", "version": "1.0", "description": "/etc/hosts file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] }, { "name": "id", "argument": "--id", "version": "1.0", "description": "id command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "id" ] }, { "name": "ifconfig", "argument": "--ifconfig", "version": "1.5", "description": "ifconfig command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using ifconfig-parser package from https://github.com/KnightWhoSayNi/ifconfig-parser", "compatible": [ "linux", "aix", "freebsd", "darwin" ], "magic_commands": [ "ifconfig" ] }, { "name": "ini", "argument": "--ini", "version": "1.0", "description": "INI file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using configparser from the standard library", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] }, { "name": "iptables", "argument": "--iptables", "version": "1.1", "description": "iptables command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "iptables" ] }, { "name": "jobs", "argument": "--jobs", "version": "1.0", "description": "jobs command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "jobs" ] }, { "name": "last", "argument": "--last", "version": "1.0", "description": "last and lastb command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "last", "lastb" ] }, { "name": "ls", "argument": "--ls", "version": "1.3", "description": "ls command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "ls" ] }, { "name": "lsblk", "argument": "--lsblk", "version": "1.3", "description": "lsblk command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "lsblk" ] }, { "name": "lsmod", "argument": "--lsmod", "version": "1.1", "description": "lsmod command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "lsmod" ] }, { "name": "lsof", "argument": "--lsof", "version": "1.0", "description": "lsof command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "lsof" ] }, { "name": "mount", "argument": "--mount", "version": "1.1", "description": "mount command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin" ], "magic_commands": [ "mount" ] }, { "name": "netstat", "argument": "--netstat", "version": "1.2", "description": "netstat command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "netstat" ] }, { "name": "ntpq", "argument": "--ntpq", "version": "1.0", "description": "ntpq -p command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "ntpq" ] }, { "name": "passwd", "argument": "--passwd", "version": "1.0", "description": "/etc/passwd file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ] }, { "name": "pip_list", "argument": "--pip-list", "version": "1.0", "description": "pip list command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ], "magic_commands": [ "pip list", "pip3 list" ] }, { "name": "pip_show", "argument": "--pip-show", "version": "1.0", "description": "pip show command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ], "magic_commands": [ "pip show", "pip3 show" ] }, { "name": "ps", "argument": "--ps", "version": "1.1", "description": "ps command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "ps" ] }, { "name": "route", "argument": "--route", "version": "1.0", "description": "route command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "route" ] }, { "name": "shadow", "argument": "--shadow", "version": "1.0", "description": "/etc/shadow file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ] }, { "name": "ss", "argument": "--ss", "version": "1.0", "description": "ss command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "ss" ] }, { "name": "stat", "argument": "--stat", "version": "1.0", "description": "stat command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "stat" ] }, { "name": "systemctl", "argument": "--systemctl", "version": "1.0", "description": "systemctl command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "systemctl" ] }, { "name": "systemctl_lj", "argument": "--systemctl-lj", "version": "1.0", "description": "systemctl list-jobs command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "systemctl list-jobs" ] }, { "name": "systemctl_ls", "argument": "--systemctl-ls", "version": "1.0", "description": "systemctl list-sockets command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "systemctl list-sockets" ] }, { "name": "systemctl_luf", "argument": "--systemctl-luf", "version": "1.0", "description": "systemctl list-unit-files command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "systemctl list-unit-files" ] }, { "name": "timedatectl", "argument": "--timedatectl", "version": "1.0", "description": "timedatectl status command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "timedatectl", "timedatectl status" ] }, { "name": "uname", "argument": "--uname", "version": "1.1", "description": "uname -a command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin" ], "magic_commands": [ "uname" ] }, { "name": "uptime", "argument": "--uptime", "version": "1.0", "description": "uptime command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "uptime" ] }, { "name": "w", "argument": "--w", "version": "1.0", "description": "w command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "w" ] }, { "name": "who", "argument": "--who", "version": "1.0", "description": "who command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "who" ] }, { "name": "xml", "argument": "--xml", "version": "1.0", "description": "XML file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using the xmltodict library at https://github.com/martinblech/xmltodict", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] }, { "name": "yaml", "argument": "--yaml", "version": "1.0", "description": "YAML file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] } ] } ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_s(self): """ Test jc -a | jello -s """ expected = '''\ _ = {}; _.name = "jc"; _.version = "1.9.3"; _.description = "jc cli output JSON conversion tool"; _.author = "Kelly Brazil"; _.author_email = "kellyjonbrazil@gmail.com"; _.parser_count = 50; _.parsers = []; _.parsers[0] = {}; _.parsers[0].name = "airport"; _.parsers[0].argument = "--airport"; _.parsers[0].version = "1.0"; _.parsers[0].description = "airport -I command parser"; _.parsers[0].author = "Kelly Brazil"; _.parsers[0].author_email = "kellyjonbrazil@gmail.com"; _.parsers[0].compatible = []; _.parsers[0].compatible[0] = "darwin"; _.parsers[0].magic_commands = []; _.parsers[0].magic_commands[0] = "airport -I"; _.parsers[1] = {}; _.parsers[1].name = "airport_s"; _.parsers[1].argument = "--airport-s"; _.parsers[1].version = "1.0"; _.parsers[1].description = "airport -s command parser"; _.parsers[1].author = "Kelly Brazil"; _.parsers[1].author_email = "kellyjonbrazil@gmail.com"; _.parsers[1].compatible = []; _.parsers[1].compatible[0] = "darwin"; _.parsers[1].magic_commands = []; _.parsers[1].magic_commands[0] = "airport -s"; _.parsers[2] = {}; _.parsers[2].name = "arp"; _.parsers[2].argument = "--arp"; _.parsers[2].version = "1.2"; _.parsers[2].description = "arp command parser"; _.parsers[2].author = "Kelly Brazil"; _.parsers[2].author_email = "kellyjonbrazil@gmail.com"; _.parsers[2].compatible = []; _.parsers[2].compatible[0] = "linux"; _.parsers[2].compatible[1] = "aix"; _.parsers[2].compatible[2] = "freebsd"; _.parsers[2].compatible[3] = "darwin"; _.parsers[2].magic_commands = []; _.parsers[2].magic_commands[0] = "arp"; _.parsers[3] = {}; _.parsers[3].name = "blkid"; _.parsers[3].argument = "--blkid"; _.parsers[3].version = "1.0"; _.parsers[3].description = "blkid command parser"; _.parsers[3].author = "Kelly Brazil"; _.parsers[3].author_email = "kellyjonbrazil@gmail.com"; _.parsers[3].compatible = []; _.parsers[3].compatible[0] = "linux"; _.parsers[3].magic_commands = []; _.parsers[3].magic_commands[0] = "blkid"; _.parsers[4] = {}; _.parsers[4].name = "crontab"; _.parsers[4].argument = "--crontab"; _.parsers[4].version = "1.1"; _.parsers[4].description = "crontab command and file parser"; _.parsers[4].author = "Kelly Brazil"; _.parsers[4].author_email = "kellyjonbrazil@gmail.com"; _.parsers[4].compatible = []; _.parsers[4].compatible[0] = "linux"; _.parsers[4].compatible[1] = "darwin"; _.parsers[4].compatible[2] = "aix"; _.parsers[4].compatible[3] = "freebsd"; _.parsers[4].magic_commands = []; _.parsers[4].magic_commands[0] = "crontab"; _.parsers[5] = {}; _.parsers[5].name = "crontab_u"; _.parsers[5].argument = "--crontab-u"; _.parsers[5].version = "1.0"; _.parsers[5].description = "crontab file parser with user support"; _.parsers[5].author = "Kelly Brazil"; _.parsers[5].author_email = "kellyjonbrazil@gmail.com"; _.parsers[5].compatible = []; _.parsers[5].compatible[0] = "linux"; _.parsers[5].compatible[1] = "darwin"; _.parsers[5].compatible[2] = "aix"; _.parsers[5].compatible[3] = "freebsd"; _.parsers[6] = {}; _.parsers[6].name = "csv"; _.parsers[6].argument = "--csv"; _.parsers[6].version = "1.0"; _.parsers[6].description = "CSV file parser"; _.parsers[6].author = "Kelly Brazil"; _.parsers[6].author_email = "kellyjonbrazil@gmail.com"; _.parsers[6].details = "Using the python standard csv library"; _.parsers[6].compatible = []; _.parsers[6].compatible[0] = "linux"; _.parsers[6].compatible[1] = "darwin"; _.parsers[6].compatible[2] = "cygwin"; _.parsers[6].compatible[3] = "win32"; _.parsers[6].compatible[4] = "aix"; _.parsers[6].compatible[5] = "freebsd"; _.parsers[7] = {}; _.parsers[7].name = "df"; _.parsers[7].argument = "--df"; _.parsers[7].version = "1.1"; _.parsers[7].description = "df command parser"; _.parsers[7].author = "Kelly Brazil"; _.parsers[7].author_email = "kellyjonbrazil@gmail.com"; _.parsers[7].compatible = []; _.parsers[7].compatible[0] = "linux"; _.parsers[7].compatible[1] = "darwin"; _.parsers[7].magic_commands = []; _.parsers[7].magic_commands[0] = "df"; _.parsers[8] = {}; _.parsers[8].name = "dig"; _.parsers[8].argument = "--dig"; _.parsers[8].version = "1.1"; _.parsers[8].description = "dig command parser"; _.parsers[8].author = "Kelly Brazil"; _.parsers[8].author_email = "kellyjonbrazil@gmail.com"; _.parsers[8].compatible = []; _.parsers[8].compatible[0] = "linux"; _.parsers[8].compatible[1] = "aix"; _.parsers[8].compatible[2] = "freebsd"; _.parsers[8].compatible[3] = "darwin"; _.parsers[8].magic_commands = []; _.parsers[8].magic_commands[0] = "dig"; _.parsers[9] = {}; _.parsers[9].name = "du"; _.parsers[9].argument = "--du"; _.parsers[9].version = "1.1"; _.parsers[9].description = "du command parser"; _.parsers[9].author = "Kelly Brazil"; _.parsers[9].author_email = "kellyjonbrazil@gmail.com"; _.parsers[9].compatible = []; _.parsers[9].compatible[0] = "linux"; _.parsers[9].compatible[1] = "darwin"; _.parsers[9].compatible[2] = "aix"; _.parsers[9].compatible[3] = "freebsd"; _.parsers[9].magic_commands = []; _.parsers[9].magic_commands[0] = "du"; _.parsers[10] = {}; _.parsers[10].name = "env"; _.parsers[10].argument = "--env"; _.parsers[10].version = "1.1"; _.parsers[10].description = "env command parser"; _.parsers[10].author = "Kelly Brazil"; _.parsers[10].author_email = "kellyjonbrazil@gmail.com"; _.parsers[10].compatible = []; _.parsers[10].compatible[0] = "linux"; _.parsers[10].compatible[1] = "darwin"; _.parsers[10].compatible[2] = "cygwin"; _.parsers[10].compatible[3] = "win32"; _.parsers[10].compatible[4] = "aix"; _.parsers[10].compatible[5] = "freebsd"; _.parsers[10].magic_commands = []; _.parsers[10].magic_commands[0] = "env"; _.parsers[11] = {}; _.parsers[11].name = "file"; _.parsers[11].argument = "--file"; _.parsers[11].version = "1.1"; _.parsers[11].description = "file command parser"; _.parsers[11].author = "Kelly Brazil"; _.parsers[11].author_email = "kellyjonbrazil@gmail.com"; _.parsers[11].compatible = []; _.parsers[11].compatible[0] = "linux"; _.parsers[11].compatible[1] = "aix"; _.parsers[11].compatible[2] = "freebsd"; _.parsers[11].compatible[3] = "darwin"; _.parsers[11].magic_commands = []; _.parsers[11].magic_commands[0] = "file"; _.parsers[12] = {}; _.parsers[12].name = "free"; _.parsers[12].argument = "--free"; _.parsers[12].version = "1.0"; _.parsers[12].description = "free command parser"; _.parsers[12].author = "Kelly Brazil"; _.parsers[12].author_email = "kellyjonbrazil@gmail.com"; _.parsers[12].compatible = []; _.parsers[12].compatible[0] = "linux"; _.parsers[12].magic_commands = []; _.parsers[12].magic_commands[0] = "free"; _.parsers[13] = {}; _.parsers[13].name = "fstab"; _.parsers[13].argument = "--fstab"; _.parsers[13].version = "1.0"; _.parsers[13].description = "fstab file parser"; _.parsers[13].author = "Kelly Brazil"; _.parsers[13].author_email = "kellyjonbrazil@gmail.com"; _.parsers[13].compatible = []; _.parsers[13].compatible[0] = "linux"; _.parsers[14] = {}; _.parsers[14].name = "group"; _.parsers[14].argument = "--group"; _.parsers[14].version = "1.0"; _.parsers[14].description = "/etc/group file parser"; _.parsers[14].author = "Kelly Brazil"; _.parsers[14].author_email = "kellyjonbrazil@gmail.com"; _.parsers[14].compatible = []; _.parsers[14].compatible[0] = "linux"; _.parsers[14].compatible[1] = "darwin"; _.parsers[14].compatible[2] = "aix"; _.parsers[14].compatible[3] = "freebsd"; _.parsers[15] = {}; _.parsers[15].name = "gshadow"; _.parsers[15].argument = "--gshadow"; _.parsers[15].version = "1.0"; _.parsers[15].description = "/etc/gshadow file parser"; _.parsers[15].author = "Kelly Brazil"; _.parsers[15].author_email = "kellyjonbrazil@gmail.com"; _.parsers[15].compatible = []; _.parsers[15].compatible[0] = "linux"; _.parsers[15].compatible[1] = "aix"; _.parsers[15].compatible[2] = "freebsd"; _.parsers[16] = {}; _.parsers[16].name = "history"; _.parsers[16].argument = "--history"; _.parsers[16].version = "1.2"; _.parsers[16].description = "history command parser"; _.parsers[16].author = "Kelly Brazil"; _.parsers[16].author_email = "kellyjonbrazil@gmail.com"; _.parsers[16].details = "Optimizations by https://github.com/philippeitis"; _.parsers[16].compatible = []; _.parsers[16].compatible[0] = "linux"; _.parsers[16].compatible[1] = "darwin"; _.parsers[16].compatible[2] = "cygwin"; _.parsers[16].compatible[3] = "aix"; _.parsers[16].compatible[4] = "freebsd"; _.parsers[17] = {}; _.parsers[17].name = "hosts"; _.parsers[17].argument = "--hosts"; _.parsers[17].version = "1.0"; _.parsers[17].description = "/etc/hosts file parser"; _.parsers[17].author = "Kelly Brazil"; _.parsers[17].author_email = "kellyjonbrazil@gmail.com"; _.parsers[17].compatible = []; _.parsers[17].compatible[0] = "linux"; _.parsers[17].compatible[1] = "darwin"; _.parsers[17].compatible[2] = "cygwin"; _.parsers[17].compatible[3] = "win32"; _.parsers[17].compatible[4] = "aix"; _.parsers[17].compatible[5] = "freebsd"; _.parsers[18] = {}; _.parsers[18].name = "id"; _.parsers[18].argument = "--id"; _.parsers[18].version = "1.0"; _.parsers[18].description = "id command parser"; _.parsers[18].author = "Kelly Brazil"; _.parsers[18].author_email = "kellyjonbrazil@gmail.com"; _.parsers[18].compatible = []; _.parsers[18].compatible[0] = "linux"; _.parsers[18].compatible[1] = "darwin"; _.parsers[18].compatible[2] = "aix"; _.parsers[18].compatible[3] = "freebsd"; _.parsers[18].magic_commands = []; _.parsers[18].magic_commands[0] = "id"; _.parsers[19] = {}; _.parsers[19].name = "ifconfig"; _.parsers[19].argument = "--ifconfig"; _.parsers[19].version = "1.5"; _.parsers[19].description = "ifconfig command parser"; _.parsers[19].author = "Kelly Brazil"; _.parsers[19].author_email = "kellyjonbrazil@gmail.com"; _.parsers[19].details = "Using ifconfig-parser package from https://github.com/KnightWhoSayNi/ifconfig-parser"; _.parsers[19].compatible = []; _.parsers[19].compatible[0] = "linux"; _.parsers[19].compatible[1] = "aix"; _.parsers[19].compatible[2] = "freebsd"; _.parsers[19].compatible[3] = "darwin"; _.parsers[19].magic_commands = []; _.parsers[19].magic_commands[0] = "ifconfig"; _.parsers[20] = {}; _.parsers[20].name = "ini"; _.parsers[20].argument = "--ini"; _.parsers[20].version = "1.0"; _.parsers[20].description = "INI file parser"; _.parsers[20].author = "Kelly Brazil"; _.parsers[20].author_email = "kellyjonbrazil@gmail.com"; _.parsers[20].details = "Using configparser from the standard library"; _.parsers[20].compatible = []; _.parsers[20].compatible[0] = "linux"; _.parsers[20].compatible[1] = "darwin"; _.parsers[20].compatible[2] = "cygwin"; _.parsers[20].compatible[3] = "win32"; _.parsers[20].compatible[4] = "aix"; _.parsers[20].compatible[5] = "freebsd"; _.parsers[21] = {}; _.parsers[21].name = "iptables"; _.parsers[21].argument = "--iptables"; _.parsers[21].version = "1.1"; _.parsers[21].description = "iptables command parser"; _.parsers[21].author = "Kelly Brazil"; _.parsers[21].author_email = "kellyjonbrazil@gmail.com"; _.parsers[21].compatible = []; _.parsers[21].compatible[0] = "linux"; _.parsers[21].magic_commands = []; _.parsers[21].magic_commands[0] = "iptables"; _.parsers[22] = {}; _.parsers[22].name = "jobs"; _.parsers[22].argument = "--jobs"; _.parsers[22].version = "1.0"; _.parsers[22].description = "jobs command parser"; _.parsers[22].author = "Kelly Brazil"; _.parsers[22].author_email = "kellyjonbrazil@gmail.com"; _.parsers[22].compatible = []; _.parsers[22].compatible[0] = "linux"; _.parsers[22].compatible[1] = "darwin"; _.parsers[22].compatible[2] = "cygwin"; _.parsers[22].compatible[3] = "aix"; _.parsers[22].compatible[4] = "freebsd"; _.parsers[22].magic_commands = []; _.parsers[22].magic_commands[0] = "jobs"; _.parsers[23] = {}; _.parsers[23].name = "last"; _.parsers[23].argument = "--last"; _.parsers[23].version = "1.0"; _.parsers[23].description = "last and lastb command parser"; _.parsers[23].author = "Kelly Brazil"; _.parsers[23].author_email = "kellyjonbrazil@gmail.com"; _.parsers[23].compatible = []; _.parsers[23].compatible[0] = "linux"; _.parsers[23].compatible[1] = "darwin"; _.parsers[23].compatible[2] = "aix"; _.parsers[23].compatible[3] = "freebsd"; _.parsers[23].magic_commands = []; _.parsers[23].magic_commands[0] = "last"; _.parsers[23].magic_commands[1] = "lastb"; _.parsers[24] = {}; _.parsers[24].name = "ls"; _.parsers[24].argument = "--ls"; _.parsers[24].version = "1.3"; _.parsers[24].description = "ls command parser"; _.parsers[24].author = "Kelly Brazil"; _.parsers[24].author_email = "kellyjonbrazil@gmail.com"; _.parsers[24].compatible = []; _.parsers[24].compatible[0] = "linux"; _.parsers[24].compatible[1] = "darwin"; _.parsers[24].compatible[2] = "cygwin"; _.parsers[24].compatible[3] = "aix"; _.parsers[24].compatible[4] = "freebsd"; _.parsers[24].magic_commands = []; _.parsers[24].magic_commands[0] = "ls"; _.parsers[25] = {}; _.parsers[25].name = "lsblk"; _.parsers[25].argument = "--lsblk"; _.parsers[25].version = "1.3"; _.parsers[25].description = "lsblk command parser"; _.parsers[25].author = "Kelly Brazil"; _.parsers[25].author_email = "kellyjonbrazil@gmail.com"; _.parsers[25].compatible = []; _.parsers[25].compatible[0] = "linux"; _.parsers[25].magic_commands = []; _.parsers[25].magic_commands[0] = "lsblk"; _.parsers[26] = {}; _.parsers[26].name = "lsmod"; _.parsers[26].argument = "--lsmod"; _.parsers[26].version = "1.1"; _.parsers[26].description = "lsmod command parser"; _.parsers[26].author = "Kelly Brazil"; _.parsers[26].author_email = "kellyjonbrazil@gmail.com"; _.parsers[26].compatible = []; _.parsers[26].compatible[0] = "linux"; _.parsers[26].magic_commands = []; _.parsers[26].magic_commands[0] = "lsmod"; _.parsers[27] = {}; _.parsers[27].name = "lsof"; _.parsers[27].argument = "--lsof"; _.parsers[27].version = "1.0"; _.parsers[27].description = "lsof command parser"; _.parsers[27].author = "Kelly Brazil"; _.parsers[27].author_email = "kellyjonbrazil@gmail.com"; _.parsers[27].compatible = []; _.parsers[27].compatible[0] = "linux"; _.parsers[27].magic_commands = []; _.parsers[27].magic_commands[0] = "lsof"; _.parsers[28] = {}; _.parsers[28].name = "mount"; _.parsers[28].argument = "--mount"; _.parsers[28].version = "1.1"; _.parsers[28].description = "mount command parser"; _.parsers[28].author = "Kelly Brazil"; _.parsers[28].author_email = "kellyjonbrazil@gmail.com"; _.parsers[28].compatible = []; _.parsers[28].compatible[0] = "linux"; _.parsers[28].compatible[1] = "darwin"; _.parsers[28].magic_commands = []; _.parsers[28].magic_commands[0] = "mount"; _.parsers[29] = {}; _.parsers[29].name = "netstat"; _.parsers[29].argument = "--netstat"; _.parsers[29].version = "1.2"; _.parsers[29].description = "netstat command parser"; _.parsers[29].author = "Kelly Brazil"; _.parsers[29].author_email = "kellyjonbrazil@gmail.com"; _.parsers[29].compatible = []; _.parsers[29].compatible[0] = "linux"; _.parsers[29].magic_commands = []; _.parsers[29].magic_commands[0] = "netstat"; _.parsers[30] = {}; _.parsers[30].name = "ntpq"; _.parsers[30].argument = "--ntpq"; _.parsers[30].version = "1.0"; _.parsers[30].description = "ntpq -p command parser"; _.parsers[30].author = "Kelly Brazil"; _.parsers[30].author_email = "kellyjonbrazil@gmail.com"; _.parsers[30].compatible = []; _.parsers[30].compatible[0] = "linux"; _.parsers[30].magic_commands = []; _.parsers[30].magic_commands[0] = "ntpq"; _.parsers[31] = {}; _.parsers[31].name = "passwd"; _.parsers[31].argument = "--passwd"; _.parsers[31].version = "1.0"; _.parsers[31].description = "/etc/passwd file parser"; _.parsers[31].author = "Kelly Brazil"; _.parsers[31].author_email = "kellyjonbrazil@gmail.com"; _.parsers[31].compatible = []; _.parsers[31].compatible[0] = "linux"; _.parsers[31].compatible[1] = "darwin"; _.parsers[31].compatible[2] = "aix"; _.parsers[31].compatible[3] = "freebsd"; _.parsers[32] = {}; _.parsers[32].name = "pip_list"; _.parsers[32].argument = "--pip-list"; _.parsers[32].version = "1.0"; _.parsers[32].description = "pip list command parser"; _.parsers[32].author = "Kelly Brazil"; _.parsers[32].author_email = "kellyjonbrazil@gmail.com"; _.parsers[32].compatible = []; _.parsers[32].compatible[0] = "linux"; _.parsers[32].compatible[1] = "darwin"; _.parsers[32].compatible[2] = "cygwin"; _.parsers[32].compatible[3] = "win32"; _.parsers[32].compatible[4] = "aix"; _.parsers[32].compatible[5] = "freebsd"; _.parsers[32].magic_commands = []; _.parsers[32].magic_commands[0] = "pip list"; _.parsers[32].magic_commands[1] = "pip3 list"; _.parsers[33] = {}; _.parsers[33].name = "pip_show"; _.parsers[33].argument = "--pip-show"; _.parsers[33].version = "1.0"; _.parsers[33].description = "pip show command parser"; _.parsers[33].author = "Kelly Brazil"; _.parsers[33].author_email = "kellyjonbrazil@gmail.com"; _.parsers[33].compatible = []; _.parsers[33].compatible[0] = "linux"; _.parsers[33].compatible[1] = "darwin"; _.parsers[33].compatible[2] = "cygwin"; _.parsers[33].compatible[3] = "win32"; _.parsers[33].compatible[4] = "aix"; _.parsers[33].compatible[5] = "freebsd"; _.parsers[33].magic_commands = []; _.parsers[33].magic_commands[0] = "pip show"; _.parsers[33].magic_commands[1] = "pip3 show"; _.parsers[34] = {}; _.parsers[34].name = "ps"; _.parsers[34].argument = "--ps"; _.parsers[34].version = "1.1"; _.parsers[34].description = "ps command parser"; _.parsers[34].author = "Kelly Brazil"; _.parsers[34].author_email = "kellyjonbrazil@gmail.com"; _.parsers[34].compatible = []; _.parsers[34].compatible[0] = "linux"; _.parsers[34].compatible[1] = "darwin"; _.parsers[34].compatible[2] = "cygwin"; _.parsers[34].compatible[3] = "aix"; _.parsers[34].compatible[4] = "freebsd"; _.parsers[34].magic_commands = []; _.parsers[34].magic_commands[0] = "ps"; _.parsers[35] = {}; _.parsers[35].name = "route"; _.parsers[35].argument = "--route"; _.parsers[35].version = "1.0"; _.parsers[35].description = "route command parser"; _.parsers[35].author = "Kelly Brazil"; _.parsers[35].author_email = "kellyjonbrazil@gmail.com"; _.parsers[35].compatible = []; _.parsers[35].compatible[0] = "linux"; _.parsers[35].magic_commands = []; _.parsers[35].magic_commands[0] = "route"; _.parsers[36] = {}; _.parsers[36].name = "shadow"; _.parsers[36].argument = "--shadow"; _.parsers[36].version = "1.0"; _.parsers[36].description = "/etc/shadow file parser"; _.parsers[36].author = "Kelly Brazil"; _.parsers[36].author_email = "kellyjonbrazil@gmail.com"; _.parsers[36].compatible = []; _.parsers[36].compatible[0] = "linux"; _.parsers[36].compatible[1] = "darwin"; _.parsers[36].compatible[2] = "aix"; _.parsers[36].compatible[3] = "freebsd"; _.parsers[37] = {}; _.parsers[37].name = "ss"; _.parsers[37].argument = "--ss"; _.parsers[37].version = "1.0"; _.parsers[37].description = "ss command parser"; _.parsers[37].author = "Kelly Brazil"; _.parsers[37].author_email = "kellyjonbrazil@gmail.com"; _.parsers[37].compatible = []; _.parsers[37].compatible[0] = "linux"; _.parsers[37].magic_commands = []; _.parsers[37].magic_commands[0] = "ss"; _.parsers[38] = {}; _.parsers[38].name = "stat"; _.parsers[38].argument = "--stat"; _.parsers[38].version = "1.0"; _.parsers[38].description = "stat command parser"; _.parsers[38].author = "Kelly Brazil"; _.parsers[38].author_email = "kellyjonbrazil@gmail.com"; _.parsers[38].compatible = []; _.parsers[38].compatible[0] = "linux"; _.parsers[38].magic_commands = []; _.parsers[38].magic_commands[0] = "stat"; _.parsers[39] = {}; _.parsers[39].name = "systemctl"; _.parsers[39].argument = "--systemctl"; _.parsers[39].version = "1.0"; _.parsers[39].description = "systemctl command parser"; _.parsers[39].author = "Kelly Brazil"; _.parsers[39].author_email = "kellyjonbrazil@gmail.com"; _.parsers[39].compatible = []; _.parsers[39].compatible[0] = "linux"; _.parsers[39].magic_commands = []; _.parsers[39].magic_commands[0] = "systemctl"; _.parsers[40] = {}; _.parsers[40].name = "systemctl_lj"; _.parsers[40].argument = "--systemctl-lj"; _.parsers[40].version = "1.0"; _.parsers[40].description = "systemctl list-jobs command parser"; _.parsers[40].author = "Kelly Brazil"; _.parsers[40].author_email = "kellyjonbrazil@gmail.com"; _.parsers[40].compatible = []; _.parsers[40].compatible[0] = "linux"; _.parsers[40].magic_commands = []; _.parsers[40].magic_commands[0] = "systemctl list-jobs"; _.parsers[41] = {}; _.parsers[41].name = "systemctl_ls"; _.parsers[41].argument = "--systemctl-ls"; _.parsers[41].version = "1.0"; _.parsers[41].description = "systemctl list-sockets command parser"; _.parsers[41].author = "Kelly Brazil"; _.parsers[41].author_email = "kellyjonbrazil@gmail.com"; _.parsers[41].compatible = []; _.parsers[41].compatible[0] = "linux"; _.parsers[41].magic_commands = []; _.parsers[41].magic_commands[0] = "systemctl list-sockets"; _.parsers[42] = {}; _.parsers[42].name = "systemctl_luf"; _.parsers[42].argument = "--systemctl-luf"; _.parsers[42].version = "1.0"; _.parsers[42].description = "systemctl list-unit-files command parser"; _.parsers[42].author = "Kelly Brazil"; _.parsers[42].author_email = "kellyjonbrazil@gmail.com"; _.parsers[42].compatible = []; _.parsers[42].compatible[0] = "linux"; _.parsers[42].magic_commands = []; _.parsers[42].magic_commands[0] = "systemctl list-unit-files"; _.parsers[43] = {}; _.parsers[43].name = "timedatectl"; _.parsers[43].argument = "--timedatectl"; _.parsers[43].version = "1.0"; _.parsers[43].description = "timedatectl status command parser"; _.parsers[43].author = "Kelly Brazil"; _.parsers[43].author_email = "kellyjonbrazil@gmail.com"; _.parsers[43].compatible = []; _.parsers[43].compatible[0] = "linux"; _.parsers[43].magic_commands = []; _.parsers[43].magic_commands[0] = "timedatectl"; _.parsers[43].magic_commands[1] = "timedatectl status"; _.parsers[44] = {}; _.parsers[44].name = "uname"; _.parsers[44].argument = "--uname"; _.parsers[44].version = "1.1"; _.parsers[44].description = "uname -a command parser"; _.parsers[44].author = "Kelly Brazil"; _.parsers[44].author_email = "kellyjonbrazil@gmail.com"; _.parsers[44].compatible = []; _.parsers[44].compatible[0] = "linux"; _.parsers[44].compatible[1] = "darwin"; _.parsers[44].magic_commands = []; _.parsers[44].magic_commands[0] = "uname"; _.parsers[45] = {}; _.parsers[45].name = "uptime"; _.parsers[45].argument = "--uptime"; _.parsers[45].version = "1.0"; _.parsers[45].description = "uptime command parser"; _.parsers[45].author = "Kelly Brazil"; _.parsers[45].author_email = "kellyjonbrazil@gmail.com"; _.parsers[45].compatible = []; _.parsers[45].compatible[0] = "linux"; _.parsers[45].compatible[1] = "darwin"; _.parsers[45].compatible[2] = "cygwin"; _.parsers[45].compatible[3] = "aix"; _.parsers[45].compatible[4] = "freebsd"; _.parsers[45].magic_commands = []; _.parsers[45].magic_commands[0] = "uptime"; _.parsers[46] = {}; _.parsers[46].name = "w"; _.parsers[46].argument = "--w"; _.parsers[46].version = "1.0"; _.parsers[46].description = "w command parser"; _.parsers[46].author = "Kelly Brazil"; _.parsers[46].author_email = "kellyjonbrazil@gmail.com"; _.parsers[46].compatible = []; _.parsers[46].compatible[0] = "linux"; _.parsers[46].compatible[1] = "darwin"; _.parsers[46].compatible[2] = "cygwin"; _.parsers[46].compatible[3] = "aix"; _.parsers[46].compatible[4] = "freebsd"; _.parsers[46].magic_commands = []; _.parsers[46].magic_commands[0] = "w"; _.parsers[47] = {}; _.parsers[47].name = "who"; _.parsers[47].argument = "--who"; _.parsers[47].version = "1.0"; _.parsers[47].description = "who command parser"; _.parsers[47].author = "Kelly Brazil"; _.parsers[47].author_email = "kellyjonbrazil@gmail.com"; _.parsers[47].compatible = []; _.parsers[47].compatible[0] = "linux"; _.parsers[47].compatible[1] = "darwin"; _.parsers[47].compatible[2] = "cygwin"; _.parsers[47].compatible[3] = "aix"; _.parsers[47].compatible[4] = "freebsd"; _.parsers[47].magic_commands = []; _.parsers[47].magic_commands[0] = "who"; _.parsers[48] = {}; _.parsers[48].name = "xml"; _.parsers[48].argument = "--xml"; _.parsers[48].version = "1.0"; _.parsers[48].description = "XML file parser"; _.parsers[48].author = "Kelly Brazil"; _.parsers[48].author_email = "kellyjonbrazil@gmail.com"; _.parsers[48].details = "Using the xmltodict library at https://github.com/martinblech/xmltodict"; _.parsers[48].compatible = []; _.parsers[48].compatible[0] = "linux"; _.parsers[48].compatible[1] = "darwin"; _.parsers[48].compatible[2] = "cygwin"; _.parsers[48].compatible[3] = "win32"; _.parsers[48].compatible[4] = "aix"; _.parsers[48].compatible[5] = "freebsd"; _.parsers[49] = {}; _.parsers[49].name = "yaml"; _.parsers[49].argument = "--yaml"; _.parsers[49].version = "1.0"; _.parsers[49].description = "YAML file parser"; _.parsers[49].author = "Kelly Brazil"; _.parsers[49].author_email = "kellyjonbrazil@gmail.com"; _.parsers[49].details = "Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml"; _.parsers[49].compatible = []; _.parsers[49].compatible[0] = "linux"; _.parsers[49].compatible[1] = "darwin"; _.parsers[49].compatible[2] = "cygwin"; _.parsers[49].compatible[3] = "win32"; _.parsers[49].compatible[4] = "aix"; _.parsers[49].compatible[5] = "freebsd"; ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-s'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_parsers(self): """ Test jc -a | jello '_["parsers"]' """ expected = '''\ [ { "name": "airport", "argument": "--airport", "version": "1.0", "description": "airport -I command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "darwin" ], "magic_commands": [ "airport -I" ] }, { "name": "airport_s", "argument": "--airport-s", "version": "1.0", "description": "airport -s command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "darwin" ], "magic_commands": [ "airport -s" ] }, { "name": "arp", "argument": "--arp", "version": "1.2", "description": "arp command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "aix", "freebsd", "darwin" ], "magic_commands": [ "arp" ] }, { "name": "blkid", "argument": "--blkid", "version": "1.0", "description": "blkid command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "blkid" ] }, { "name": "crontab", "argument": "--crontab", "version": "1.1", "description": "crontab command and file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "crontab" ] }, { "name": "crontab_u", "argument": "--crontab-u", "version": "1.0", "description": "crontab file parser with user support", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ] }, { "name": "csv", "argument": "--csv", "version": "1.0", "description": "CSV file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using the python standard csv library", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] }, { "name": "df", "argument": "--df", "version": "1.1", "description": "df command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin" ], "magic_commands": [ "df" ] }, { "name": "dig", "argument": "--dig", "version": "1.1", "description": "dig command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "aix", "freebsd", "darwin" ], "magic_commands": [ "dig" ] }, { "name": "du", "argument": "--du", "version": "1.1", "description": "du command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "du" ] }, { "name": "env", "argument": "--env", "version": "1.1", "description": "env command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ], "magic_commands": [ "env" ] }, { "name": "file", "argument": "--file", "version": "1.1", "description": "file command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "aix", "freebsd", "darwin" ], "magic_commands": [ "file" ] }, { "name": "free", "argument": "--free", "version": "1.0", "description": "free command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "free" ] }, { "name": "fstab", "argument": "--fstab", "version": "1.0", "description": "fstab file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ] }, { "name": "group", "argument": "--group", "version": "1.0", "description": "/etc/group file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ] }, { "name": "gshadow", "argument": "--gshadow", "version": "1.0", "description": "/etc/gshadow file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "aix", "freebsd" ] }, { "name": "history", "argument": "--history", "version": "1.2", "description": "history command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Optimizations by https://github.com/philippeitis", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ] }, { "name": "hosts", "argument": "--hosts", "version": "1.0", "description": "/etc/hosts file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] }, { "name": "id", "argument": "--id", "version": "1.0", "description": "id command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "id" ] }, { "name": "ifconfig", "argument": "--ifconfig", "version": "1.5", "description": "ifconfig command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using ifconfig-parser package from https://github.com/KnightWhoSayNi/ifconfig-parser", "compatible": [ "linux", "aix", "freebsd", "darwin" ], "magic_commands": [ "ifconfig" ] }, { "name": "ini", "argument": "--ini", "version": "1.0", "description": "INI file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using configparser from the standard library", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] }, { "name": "iptables", "argument": "--iptables", "version": "1.1", "description": "iptables command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "iptables" ] }, { "name": "jobs", "argument": "--jobs", "version": "1.0", "description": "jobs command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "jobs" ] }, { "name": "last", "argument": "--last", "version": "1.0", "description": "last and lastb command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "last", "lastb" ] }, { "name": "ls", "argument": "--ls", "version": "1.3", "description": "ls command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "ls" ] }, { "name": "lsblk", "argument": "--lsblk", "version": "1.3", "description": "lsblk command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "lsblk" ] }, { "name": "lsmod", "argument": "--lsmod", "version": "1.1", "description": "lsmod command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "lsmod" ] }, { "name": "lsof", "argument": "--lsof", "version": "1.0", "description": "lsof command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "lsof" ] }, { "name": "mount", "argument": "--mount", "version": "1.1", "description": "mount command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin" ], "magic_commands": [ "mount" ] }, { "name": "netstat", "argument": "--netstat", "version": "1.2", "description": "netstat command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "netstat" ] }, { "name": "ntpq", "argument": "--ntpq", "version": "1.0", "description": "ntpq -p command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "ntpq" ] }, { "name": "passwd", "argument": "--passwd", "version": "1.0", "description": "/etc/passwd file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ] }, { "name": "pip_list", "argument": "--pip-list", "version": "1.0", "description": "pip list command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ], "magic_commands": [ "pip list", "pip3 list" ] }, { "name": "pip_show", "argument": "--pip-show", "version": "1.0", "description": "pip show command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ], "magic_commands": [ "pip show", "pip3 show" ] }, { "name": "ps", "argument": "--ps", "version": "1.1", "description": "ps command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "ps" ] }, { "name": "route", "argument": "--route", "version": "1.0", "description": "route command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "route" ] }, { "name": "shadow", "argument": "--shadow", "version": "1.0", "description": "/etc/shadow file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ] }, { "name": "ss", "argument": "--ss", "version": "1.0", "description": "ss command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "ss" ] }, { "name": "stat", "argument": "--stat", "version": "1.0", "description": "stat command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "stat" ] }, { "name": "systemctl", "argument": "--systemctl", "version": "1.0", "description": "systemctl command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "systemctl" ] }, { "name": "systemctl_lj", "argument": "--systemctl-lj", "version": "1.0", "description": "systemctl list-jobs command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "systemctl list-jobs" ] }, { "name": "systemctl_ls", "argument": "--systemctl-ls", "version": "1.0", "description": "systemctl list-sockets command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "systemctl list-sockets" ] }, { "name": "systemctl_luf", "argument": "--systemctl-luf", "version": "1.0", "description": "systemctl list-unit-files command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "systemctl list-unit-files" ] }, { "name": "timedatectl", "argument": "--timedatectl", "version": "1.0", "description": "timedatectl status command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux" ], "magic_commands": [ "timedatectl", "timedatectl status" ] }, { "name": "uname", "argument": "--uname", "version": "1.1", "description": "uname -a command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin" ], "magic_commands": [ "uname" ] }, { "name": "uptime", "argument": "--uptime", "version": "1.0", "description": "uptime command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "uptime" ] }, { "name": "w", "argument": "--w", "version": "1.0", "description": "w command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "w" ] }, { "name": "who", "argument": "--who", "version": "1.0", "description": "who command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "cygwin", "aix", "freebsd" ], "magic_commands": [ "who" ] }, { "name": "xml", "argument": "--xml", "version": "1.0", "description": "XML file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using the xmltodict library at https://github.com/martinblech/xmltodict", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] }, { "name": "yaml", "argument": "--yaml", "version": "1.0", "description": "YAML file parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "details": "Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml", "compatible": [ "linux", "darwin", "cygwin", "win32", "aix", "freebsd" ] } ] ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '_["parsers"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_s_parsers_dot(self): """ Test jc -a | jello -s '_.parsers' """ expected = '''\ _ = []; _[0] = {}; _[0].name = "airport"; _[0].argument = "--airport"; _[0].version = "1.0"; _[0].description = "airport -I command parser"; _[0].author = "Kelly Brazil"; _[0].author_email = "kellyjonbrazil@gmail.com"; _[0].compatible = []; _[0].compatible[0] = "darwin"; _[0].magic_commands = []; _[0].magic_commands[0] = "airport -I"; _[1] = {}; _[1].name = "airport_s"; _[1].argument = "--airport-s"; _[1].version = "1.0"; _[1].description = "airport -s command parser"; _[1].author = "Kelly Brazil"; _[1].author_email = "kellyjonbrazil@gmail.com"; _[1].compatible = []; _[1].compatible[0] = "darwin"; _[1].magic_commands = []; _[1].magic_commands[0] = "airport -s"; _[2] = {}; _[2].name = "arp"; _[2].argument = "--arp"; _[2].version = "1.2"; _[2].description = "arp command parser"; _[2].author = "Kelly Brazil"; _[2].author_email = "kellyjonbrazil@gmail.com"; _[2].compatible = []; _[2].compatible[0] = "linux"; _[2].compatible[1] = "aix"; _[2].compatible[2] = "freebsd"; _[2].compatible[3] = "darwin"; _[2].magic_commands = []; _[2].magic_commands[0] = "arp"; _[3] = {}; _[3].name = "blkid"; _[3].argument = "--blkid"; _[3].version = "1.0"; _[3].description = "blkid command parser"; _[3].author = "Kelly Brazil"; _[3].author_email = "kellyjonbrazil@gmail.com"; _[3].compatible = []; _[3].compatible[0] = "linux"; _[3].magic_commands = []; _[3].magic_commands[0] = "blkid"; _[4] = {}; _[4].name = "crontab"; _[4].argument = "--crontab"; _[4].version = "1.1"; _[4].description = "crontab command and file parser"; _[4].author = "Kelly Brazil"; _[4].author_email = "kellyjonbrazil@gmail.com"; _[4].compatible = []; _[4].compatible[0] = "linux"; _[4].compatible[1] = "darwin"; _[4].compatible[2] = "aix"; _[4].compatible[3] = "freebsd"; _[4].magic_commands = []; _[4].magic_commands[0] = "crontab"; _[5] = {}; _[5].name = "crontab_u"; _[5].argument = "--crontab-u"; _[5].version = "1.0"; _[5].description = "crontab file parser with user support"; _[5].author = "Kelly Brazil"; _[5].author_email = "kellyjonbrazil@gmail.com"; _[5].compatible = []; _[5].compatible[0] = "linux"; _[5].compatible[1] = "darwin"; _[5].compatible[2] = "aix"; _[5].compatible[3] = "freebsd"; _[6] = {}; _[6].name = "csv"; _[6].argument = "--csv"; _[6].version = "1.0"; _[6].description = "CSV file parser"; _[6].author = "Kelly Brazil"; _[6].author_email = "kellyjonbrazil@gmail.com"; _[6].details = "Using the python standard csv library"; _[6].compatible = []; _[6].compatible[0] = "linux"; _[6].compatible[1] = "darwin"; _[6].compatible[2] = "cygwin"; _[6].compatible[3] = "win32"; _[6].compatible[4] = "aix"; _[6].compatible[5] = "freebsd"; _[7] = {}; _[7].name = "df"; _[7].argument = "--df"; _[7].version = "1.1"; _[7].description = "df command parser"; _[7].author = "Kelly Brazil"; _[7].author_email = "kellyjonbrazil@gmail.com"; _[7].compatible = []; _[7].compatible[0] = "linux"; _[7].compatible[1] = "darwin"; _[7].magic_commands = []; _[7].magic_commands[0] = "df"; _[8] = {}; _[8].name = "dig"; _[8].argument = "--dig"; _[8].version = "1.1"; _[8].description = "dig command parser"; _[8].author = "Kelly Brazil"; _[8].author_email = "kellyjonbrazil@gmail.com"; _[8].compatible = []; _[8].compatible[0] = "linux"; _[8].compatible[1] = "aix"; _[8].compatible[2] = "freebsd"; _[8].compatible[3] = "darwin"; _[8].magic_commands = []; _[8].magic_commands[0] = "dig"; _[9] = {}; _[9].name = "du"; _[9].argument = "--du"; _[9].version = "1.1"; _[9].description = "du command parser"; _[9].author = "Kelly Brazil"; _[9].author_email = "kellyjonbrazil@gmail.com"; _[9].compatible = []; _[9].compatible[0] = "linux"; _[9].compatible[1] = "darwin"; _[9].compatible[2] = "aix"; _[9].compatible[3] = "freebsd"; _[9].magic_commands = []; _[9].magic_commands[0] = "du"; _[10] = {}; _[10].name = "env"; _[10].argument = "--env"; _[10].version = "1.1"; _[10].description = "env command parser"; _[10].author = "Kelly Brazil"; _[10].author_email = "kellyjonbrazil@gmail.com"; _[10].compatible = []; _[10].compatible[0] = "linux"; _[10].compatible[1] = "darwin"; _[10].compatible[2] = "cygwin"; _[10].compatible[3] = "win32"; _[10].compatible[4] = "aix"; _[10].compatible[5] = "freebsd"; _[10].magic_commands = []; _[10].magic_commands[0] = "env"; _[11] = {}; _[11].name = "file"; _[11].argument = "--file"; _[11].version = "1.1"; _[11].description = "file command parser"; _[11].author = "Kelly Brazil"; _[11].author_email = "kellyjonbrazil@gmail.com"; _[11].compatible = []; _[11].compatible[0] = "linux"; _[11].compatible[1] = "aix"; _[11].compatible[2] = "freebsd"; _[11].compatible[3] = "darwin"; _[11].magic_commands = []; _[11].magic_commands[0] = "file"; _[12] = {}; _[12].name = "free"; _[12].argument = "--free"; _[12].version = "1.0"; _[12].description = "free command parser"; _[12].author = "Kelly Brazil"; _[12].author_email = "kellyjonbrazil@gmail.com"; _[12].compatible = []; _[12].compatible[0] = "linux"; _[12].magic_commands = []; _[12].magic_commands[0] = "free"; _[13] = {}; _[13].name = "fstab"; _[13].argument = "--fstab"; _[13].version = "1.0"; _[13].description = "fstab file parser"; _[13].author = "Kelly Brazil"; _[13].author_email = "kellyjonbrazil@gmail.com"; _[13].compatible = []; _[13].compatible[0] = "linux"; _[14] = {}; _[14].name = "group"; _[14].argument = "--group"; _[14].version = "1.0"; _[14].description = "/etc/group file parser"; _[14].author = "Kelly Brazil"; _[14].author_email = "kellyjonbrazil@gmail.com"; _[14].compatible = []; _[14].compatible[0] = "linux"; _[14].compatible[1] = "darwin"; _[14].compatible[2] = "aix"; _[14].compatible[3] = "freebsd"; _[15] = {}; _[15].name = "gshadow"; _[15].argument = "--gshadow"; _[15].version = "1.0"; _[15].description = "/etc/gshadow file parser"; _[15].author = "Kelly Brazil"; _[15].author_email = "kellyjonbrazil@gmail.com"; _[15].compatible = []; _[15].compatible[0] = "linux"; _[15].compatible[1] = "aix"; _[15].compatible[2] = "freebsd"; _[16] = {}; _[16].name = "history"; _[16].argument = "--history"; _[16].version = "1.2"; _[16].description = "history command parser"; _[16].author = "Kelly Brazil"; _[16].author_email = "kellyjonbrazil@gmail.com"; _[16].details = "Optimizations by https://github.com/philippeitis"; _[16].compatible = []; _[16].compatible[0] = "linux"; _[16].compatible[1] = "darwin"; _[16].compatible[2] = "cygwin"; _[16].compatible[3] = "aix"; _[16].compatible[4] = "freebsd"; _[17] = {}; _[17].name = "hosts"; _[17].argument = "--hosts"; _[17].version = "1.0"; _[17].description = "/etc/hosts file parser"; _[17].author = "Kelly Brazil"; _[17].author_email = "kellyjonbrazil@gmail.com"; _[17].compatible = []; _[17].compatible[0] = "linux"; _[17].compatible[1] = "darwin"; _[17].compatible[2] = "cygwin"; _[17].compatible[3] = "win32"; _[17].compatible[4] = "aix"; _[17].compatible[5] = "freebsd"; _[18] = {}; _[18].name = "id"; _[18].argument = "--id"; _[18].version = "1.0"; _[18].description = "id command parser"; _[18].author = "Kelly Brazil"; _[18].author_email = "kellyjonbrazil@gmail.com"; _[18].compatible = []; _[18].compatible[0] = "linux"; _[18].compatible[1] = "darwin"; _[18].compatible[2] = "aix"; _[18].compatible[3] = "freebsd"; _[18].magic_commands = []; _[18].magic_commands[0] = "id"; _[19] = {}; _[19].name = "ifconfig"; _[19].argument = "--ifconfig"; _[19].version = "1.5"; _[19].description = "ifconfig command parser"; _[19].author = "Kelly Brazil"; _[19].author_email = "kellyjonbrazil@gmail.com"; _[19].details = "Using ifconfig-parser package from https://github.com/KnightWhoSayNi/ifconfig-parser"; _[19].compatible = []; _[19].compatible[0] = "linux"; _[19].compatible[1] = "aix"; _[19].compatible[2] = "freebsd"; _[19].compatible[3] = "darwin"; _[19].magic_commands = []; _[19].magic_commands[0] = "ifconfig"; _[20] = {}; _[20].name = "ini"; _[20].argument = "--ini"; _[20].version = "1.0"; _[20].description = "INI file parser"; _[20].author = "Kelly Brazil"; _[20].author_email = "kellyjonbrazil@gmail.com"; _[20].details = "Using configparser from the standard library"; _[20].compatible = []; _[20].compatible[0] = "linux"; _[20].compatible[1] = "darwin"; _[20].compatible[2] = "cygwin"; _[20].compatible[3] = "win32"; _[20].compatible[4] = "aix"; _[20].compatible[5] = "freebsd"; _[21] = {}; _[21].name = "iptables"; _[21].argument = "--iptables"; _[21].version = "1.1"; _[21].description = "iptables command parser"; _[21].author = "Kelly Brazil"; _[21].author_email = "kellyjonbrazil@gmail.com"; _[21].compatible = []; _[21].compatible[0] = "linux"; _[21].magic_commands = []; _[21].magic_commands[0] = "iptables"; _[22] = {}; _[22].name = "jobs"; _[22].argument = "--jobs"; _[22].version = "1.0"; _[22].description = "jobs command parser"; _[22].author = "Kelly Brazil"; _[22].author_email = "kellyjonbrazil@gmail.com"; _[22].compatible = []; _[22].compatible[0] = "linux"; _[22].compatible[1] = "darwin"; _[22].compatible[2] = "cygwin"; _[22].compatible[3] = "aix"; _[22].compatible[4] = "freebsd"; _[22].magic_commands = []; _[22].magic_commands[0] = "jobs"; _[23] = {}; _[23].name = "last"; _[23].argument = "--last"; _[23].version = "1.0"; _[23].description = "last and lastb command parser"; _[23].author = "Kelly Brazil"; _[23].author_email = "kellyjonbrazil@gmail.com"; _[23].compatible = []; _[23].compatible[0] = "linux"; _[23].compatible[1] = "darwin"; _[23].compatible[2] = "aix"; _[23].compatible[3] = "freebsd"; _[23].magic_commands = []; _[23].magic_commands[0] = "last"; _[23].magic_commands[1] = "lastb"; _[24] = {}; _[24].name = "ls"; _[24].argument = "--ls"; _[24].version = "1.3"; _[24].description = "ls command parser"; _[24].author = "Kelly Brazil"; _[24].author_email = "kellyjonbrazil@gmail.com"; _[24].compatible = []; _[24].compatible[0] = "linux"; _[24].compatible[1] = "darwin"; _[24].compatible[2] = "cygwin"; _[24].compatible[3] = "aix"; _[24].compatible[4] = "freebsd"; _[24].magic_commands = []; _[24].magic_commands[0] = "ls"; _[25] = {}; _[25].name = "lsblk"; _[25].argument = "--lsblk"; _[25].version = "1.3"; _[25].description = "lsblk command parser"; _[25].author = "Kelly Brazil"; _[25].author_email = "kellyjonbrazil@gmail.com"; _[25].compatible = []; _[25].compatible[0] = "linux"; _[25].magic_commands = []; _[25].magic_commands[0] = "lsblk"; _[26] = {}; _[26].name = "lsmod"; _[26].argument = "--lsmod"; _[26].version = "1.1"; _[26].description = "lsmod command parser"; _[26].author = "Kelly Brazil"; _[26].author_email = "kellyjonbrazil@gmail.com"; _[26].compatible = []; _[26].compatible[0] = "linux"; _[26].magic_commands = []; _[26].magic_commands[0] = "lsmod"; _[27] = {}; _[27].name = "lsof"; _[27].argument = "--lsof"; _[27].version = "1.0"; _[27].description = "lsof command parser"; _[27].author = "Kelly Brazil"; _[27].author_email = "kellyjonbrazil@gmail.com"; _[27].compatible = []; _[27].compatible[0] = "linux"; _[27].magic_commands = []; _[27].magic_commands[0] = "lsof"; _[28] = {}; _[28].name = "mount"; _[28].argument = "--mount"; _[28].version = "1.1"; _[28].description = "mount command parser"; _[28].author = "Kelly Brazil"; _[28].author_email = "kellyjonbrazil@gmail.com"; _[28].compatible = []; _[28].compatible[0] = "linux"; _[28].compatible[1] = "darwin"; _[28].magic_commands = []; _[28].magic_commands[0] = "mount"; _[29] = {}; _[29].name = "netstat"; _[29].argument = "--netstat"; _[29].version = "1.2"; _[29].description = "netstat command parser"; _[29].author = "Kelly Brazil"; _[29].author_email = "kellyjonbrazil@gmail.com"; _[29].compatible = []; _[29].compatible[0] = "linux"; _[29].magic_commands = []; _[29].magic_commands[0] = "netstat"; _[30] = {}; _[30].name = "ntpq"; _[30].argument = "--ntpq"; _[30].version = "1.0"; _[30].description = "ntpq -p command parser"; _[30].author = "Kelly Brazil"; _[30].author_email = "kellyjonbrazil@gmail.com"; _[30].compatible = []; _[30].compatible[0] = "linux"; _[30].magic_commands = []; _[30].magic_commands[0] = "ntpq"; _[31] = {}; _[31].name = "passwd"; _[31].argument = "--passwd"; _[31].version = "1.0"; _[31].description = "/etc/passwd file parser"; _[31].author = "Kelly Brazil"; _[31].author_email = "kellyjonbrazil@gmail.com"; _[31].compatible = []; _[31].compatible[0] = "linux"; _[31].compatible[1] = "darwin"; _[31].compatible[2] = "aix"; _[31].compatible[3] = "freebsd"; _[32] = {}; _[32].name = "pip_list"; _[32].argument = "--pip-list"; _[32].version = "1.0"; _[32].description = "pip list command parser"; _[32].author = "Kelly Brazil"; _[32].author_email = "kellyjonbrazil@gmail.com"; _[32].compatible = []; _[32].compatible[0] = "linux"; _[32].compatible[1] = "darwin"; _[32].compatible[2] = "cygwin"; _[32].compatible[3] = "win32"; _[32].compatible[4] = "aix"; _[32].compatible[5] = "freebsd"; _[32].magic_commands = []; _[32].magic_commands[0] = "pip list"; _[32].magic_commands[1] = "pip3 list"; _[33] = {}; _[33].name = "pip_show"; _[33].argument = "--pip-show"; _[33].version = "1.0"; _[33].description = "pip show command parser"; _[33].author = "Kelly Brazil"; _[33].author_email = "kellyjonbrazil@gmail.com"; _[33].compatible = []; _[33].compatible[0] = "linux"; _[33].compatible[1] = "darwin"; _[33].compatible[2] = "cygwin"; _[33].compatible[3] = "win32"; _[33].compatible[4] = "aix"; _[33].compatible[5] = "freebsd"; _[33].magic_commands = []; _[33].magic_commands[0] = "pip show"; _[33].magic_commands[1] = "pip3 show"; _[34] = {}; _[34].name = "ps"; _[34].argument = "--ps"; _[34].version = "1.1"; _[34].description = "ps command parser"; _[34].author = "Kelly Brazil"; _[34].author_email = "kellyjonbrazil@gmail.com"; _[34].compatible = []; _[34].compatible[0] = "linux"; _[34].compatible[1] = "darwin"; _[34].compatible[2] = "cygwin"; _[34].compatible[3] = "aix"; _[34].compatible[4] = "freebsd"; _[34].magic_commands = []; _[34].magic_commands[0] = "ps"; _[35] = {}; _[35].name = "route"; _[35].argument = "--route"; _[35].version = "1.0"; _[35].description = "route command parser"; _[35].author = "Kelly Brazil"; _[35].author_email = "kellyjonbrazil@gmail.com"; _[35].compatible = []; _[35].compatible[0] = "linux"; _[35].magic_commands = []; _[35].magic_commands[0] = "route"; _[36] = {}; _[36].name = "shadow"; _[36].argument = "--shadow"; _[36].version = "1.0"; _[36].description = "/etc/shadow file parser"; _[36].author = "Kelly Brazil"; _[36].author_email = "kellyjonbrazil@gmail.com"; _[36].compatible = []; _[36].compatible[0] = "linux"; _[36].compatible[1] = "darwin"; _[36].compatible[2] = "aix"; _[36].compatible[3] = "freebsd"; _[37] = {}; _[37].name = "ss"; _[37].argument = "--ss"; _[37].version = "1.0"; _[37].description = "ss command parser"; _[37].author = "Kelly Brazil"; _[37].author_email = "kellyjonbrazil@gmail.com"; _[37].compatible = []; _[37].compatible[0] = "linux"; _[37].magic_commands = []; _[37].magic_commands[0] = "ss"; _[38] = {}; _[38].name = "stat"; _[38].argument = "--stat"; _[38].version = "1.0"; _[38].description = "stat command parser"; _[38].author = "Kelly Brazil"; _[38].author_email = "kellyjonbrazil@gmail.com"; _[38].compatible = []; _[38].compatible[0] = "linux"; _[38].magic_commands = []; _[38].magic_commands[0] = "stat"; _[39] = {}; _[39].name = "systemctl"; _[39].argument = "--systemctl"; _[39].version = "1.0"; _[39].description = "systemctl command parser"; _[39].author = "Kelly Brazil"; _[39].author_email = "kellyjonbrazil@gmail.com"; _[39].compatible = []; _[39].compatible[0] = "linux"; _[39].magic_commands = []; _[39].magic_commands[0] = "systemctl"; _[40] = {}; _[40].name = "systemctl_lj"; _[40].argument = "--systemctl-lj"; _[40].version = "1.0"; _[40].description = "systemctl list-jobs command parser"; _[40].author = "Kelly Brazil"; _[40].author_email = "kellyjonbrazil@gmail.com"; _[40].compatible = []; _[40].compatible[0] = "linux"; _[40].magic_commands = []; _[40].magic_commands[0] = "systemctl list-jobs"; _[41] = {}; _[41].name = "systemctl_ls"; _[41].argument = "--systemctl-ls"; _[41].version = "1.0"; _[41].description = "systemctl list-sockets command parser"; _[41].author = "Kelly Brazil"; _[41].author_email = "kellyjonbrazil@gmail.com"; _[41].compatible = []; _[41].compatible[0] = "linux"; _[41].magic_commands = []; _[41].magic_commands[0] = "systemctl list-sockets"; _[42] = {}; _[42].name = "systemctl_luf"; _[42].argument = "--systemctl-luf"; _[42].version = "1.0"; _[42].description = "systemctl list-unit-files command parser"; _[42].author = "Kelly Brazil"; _[42].author_email = "kellyjonbrazil@gmail.com"; _[42].compatible = []; _[42].compatible[0] = "linux"; _[42].magic_commands = []; _[42].magic_commands[0] = "systemctl list-unit-files"; _[43] = {}; _[43].name = "timedatectl"; _[43].argument = "--timedatectl"; _[43].version = "1.0"; _[43].description = "timedatectl status command parser"; _[43].author = "Kelly Brazil"; _[43].author_email = "kellyjonbrazil@gmail.com"; _[43].compatible = []; _[43].compatible[0] = "linux"; _[43].magic_commands = []; _[43].magic_commands[0] = "timedatectl"; _[43].magic_commands[1] = "timedatectl status"; _[44] = {}; _[44].name = "uname"; _[44].argument = "--uname"; _[44].version = "1.1"; _[44].description = "uname -a command parser"; _[44].author = "Kelly Brazil"; _[44].author_email = "kellyjonbrazil@gmail.com"; _[44].compatible = []; _[44].compatible[0] = "linux"; _[44].compatible[1] = "darwin"; _[44].magic_commands = []; _[44].magic_commands[0] = "uname"; _[45] = {}; _[45].name = "uptime"; _[45].argument = "--uptime"; _[45].version = "1.0"; _[45].description = "uptime command parser"; _[45].author = "Kelly Brazil"; _[45].author_email = "kellyjonbrazil@gmail.com"; _[45].compatible = []; _[45].compatible[0] = "linux"; _[45].compatible[1] = "darwin"; _[45].compatible[2] = "cygwin"; _[45].compatible[3] = "aix"; _[45].compatible[4] = "freebsd"; _[45].magic_commands = []; _[45].magic_commands[0] = "uptime"; _[46] = {}; _[46].name = "w"; _[46].argument = "--w"; _[46].version = "1.0"; _[46].description = "w command parser"; _[46].author = "Kelly Brazil"; _[46].author_email = "kellyjonbrazil@gmail.com"; _[46].compatible = []; _[46].compatible[0] = "linux"; _[46].compatible[1] = "darwin"; _[46].compatible[2] = "cygwin"; _[46].compatible[3] = "aix"; _[46].compatible[4] = "freebsd"; _[46].magic_commands = []; _[46].magic_commands[0] = "w"; _[47] = {}; _[47].name = "who"; _[47].argument = "--who"; _[47].version = "1.0"; _[47].description = "who command parser"; _[47].author = "Kelly Brazil"; _[47].author_email = "kellyjonbrazil@gmail.com"; _[47].compatible = []; _[47].compatible[0] = "linux"; _[47].compatible[1] = "darwin"; _[47].compatible[2] = "cygwin"; _[47].compatible[3] = "aix"; _[47].compatible[4] = "freebsd"; _[47].magic_commands = []; _[47].magic_commands[0] = "who"; _[48] = {}; _[48].name = "xml"; _[48].argument = "--xml"; _[48].version = "1.0"; _[48].description = "XML file parser"; _[48].author = "Kelly Brazil"; _[48].author_email = "kellyjonbrazil@gmail.com"; _[48].details = "Using the xmltodict library at https://github.com/martinblech/xmltodict"; _[48].compatible = []; _[48].compatible[0] = "linux"; _[48].compatible[1] = "darwin"; _[48].compatible[2] = "cygwin"; _[48].compatible[3] = "win32"; _[48].compatible[4] = "aix"; _[48].compatible[5] = "freebsd"; _[49] = {}; _[49].name = "yaml"; _[49].argument = "--yaml"; _[49].version = "1.0"; _[49].description = "YAML file parser"; _[49].author = "Kelly Brazil"; _[49].author_email = "kellyjonbrazil@gmail.com"; _[49].details = "Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml"; _[49].compatible = []; _[49].compatible[0] = "linux"; _[49].compatible[1] = "darwin"; _[49].compatible[2] = "cygwin"; _[49].compatible[3] = "win32"; _[49].compatible[4] = "aix"; _[49].compatible[5] = "freebsd"; ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-s', '_.parsers'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_c_parsers(self): """ Test jc -a | jello -c '_["parsers"]' """ expected = '''[{"name":"airport","argument":"--airport","version":"1.0","description":"airport -I command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["darwin"],"magic_commands":["airport -I"]},{"name":"airport_s","argument":"--airport-s","version":"1.0","description":"airport -s command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["darwin"],"magic_commands":["airport -s"]},{"name":"arp","argument":"--arp","version":"1.2","description":"arp command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["arp"]},{"name":"blkid","argument":"--blkid","version":"1.0","description":"blkid command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["blkid"]},{"name":"crontab","argument":"--crontab","version":"1.1","description":"crontab command and file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["crontab"]},{"name":"crontab_u","argument":"--crontab-u","version":"1.0","description":"crontab file parser with user support","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]},{"name":"csv","argument":"--csv","version":"1.0","description":"CSV file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the python standard csv library","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]},{"name":"df","argument":"--df","version":"1.1","description":"df command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["df"]},{"name":"dig","argument":"--dig","version":"1.1","description":"dig command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["dig"]},{"name":"du","argument":"--du","version":"1.1","description":"du command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["du"]},{"name":"env","argument":"--env","version":"1.1","description":"env command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["env"]},{"name":"file","argument":"--file","version":"1.1","description":"file command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["file"]},{"name":"free","argument":"--free","version":"1.0","description":"free command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["free"]},{"name":"fstab","argument":"--fstab","version":"1.0","description":"fstab file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"]},{"name":"group","argument":"--group","version":"1.0","description":"/etc/group file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]},{"name":"gshadow","argument":"--gshadow","version":"1.0","description":"/etc/gshadow file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd"]},{"name":"history","argument":"--history","version":"1.2","description":"history command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Optimizations by https://github.com/philippeitis","compatible":["linux","darwin","cygwin","aix","freebsd"]},{"name":"hosts","argument":"--hosts","version":"1.0","description":"/etc/hosts file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]},{"name":"id","argument":"--id","version":"1.0","description":"id command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["id"]},{"name":"ifconfig","argument":"--ifconfig","version":"1.5","description":"ifconfig command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using ifconfig-parser package from https://github.com/KnightWhoSayNi/ifconfig-parser","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["ifconfig"]},{"name":"ini","argument":"--ini","version":"1.0","description":"INI file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using configparser from the standard library","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]},{"name":"iptables","argument":"--iptables","version":"1.1","description":"iptables command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["iptables"]},{"name":"jobs","argument":"--jobs","version":"1.0","description":"jobs command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["jobs"]},{"name":"last","argument":"--last","version":"1.0","description":"last and lastb command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["last","lastb"]},{"name":"ls","argument":"--ls","version":"1.3","description":"ls command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["ls"]},{"name":"lsblk","argument":"--lsblk","version":"1.3","description":"lsblk command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsblk"]},{"name":"lsmod","argument":"--lsmod","version":"1.1","description":"lsmod command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsmod"]},{"name":"lsof","argument":"--lsof","version":"1.0","description":"lsof command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsof"]},{"name":"mount","argument":"--mount","version":"1.1","description":"mount command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["mount"]},{"name":"netstat","argument":"--netstat","version":"1.2","description":"netstat command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["netstat"]},{"name":"ntpq","argument":"--ntpq","version":"1.0","description":"ntpq -p command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["ntpq"]},{"name":"passwd","argument":"--passwd","version":"1.0","description":"/etc/passwd file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]},{"name":"pip_list","argument":"--pip-list","version":"1.0","description":"pip list command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["pip list","pip3 list"]},{"name":"pip_show","argument":"--pip-show","version":"1.0","description":"pip show command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["pip show","pip3 show"]},{"name":"ps","argument":"--ps","version":"1.1","description":"ps command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["ps"]},{"name":"route","argument":"--route","version":"1.0","description":"route command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["route"]},{"name":"shadow","argument":"--shadow","version":"1.0","description":"/etc/shadow file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]},{"name":"ss","argument":"--ss","version":"1.0","description":"ss command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["ss"]},{"name":"stat","argument":"--stat","version":"1.0","description":"stat command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["stat"]},{"name":"systemctl","argument":"--systemctl","version":"1.0","description":"systemctl command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl"]},{"name":"systemctl_lj","argument":"--systemctl-lj","version":"1.0","description":"systemctl list-jobs command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-jobs"]},{"name":"systemctl_ls","argument":"--systemctl-ls","version":"1.0","description":"systemctl list-sockets command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-sockets"]},{"name":"systemctl_luf","argument":"--systemctl-luf","version":"1.0","description":"systemctl list-unit-files command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-unit-files"]},{"name":"timedatectl","argument":"--timedatectl","version":"1.0","description":"timedatectl status command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["timedatectl","timedatectl status"]},{"name":"uname","argument":"--uname","version":"1.1","description":"uname -a command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["uname"]},{"name":"uptime","argument":"--uptime","version":"1.0","description":"uptime command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["uptime"]},{"name":"w","argument":"--w","version":"1.0","description":"w command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["w"]},{"name":"who","argument":"--who","version":"1.0","description":"who command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["who"]},{"name":"xml","argument":"--xml","version":"1.0","description":"XML file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the xmltodict library at https://github.com/martinblech/xmltodict","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]},{"name":"yaml","argument":"--yaml","version":"1.0","description":"YAML file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]}] ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-c', '_["parsers"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_c_parsers_dot(self): """ Test jc -a | jello -c _.parsers """ expected = '''[{"name":"airport","argument":"--airport","version":"1.0","description":"airport -I command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["darwin"],"magic_commands":["airport -I"]},{"name":"airport_s","argument":"--airport-s","version":"1.0","description":"airport -s command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["darwin"],"magic_commands":["airport -s"]},{"name":"arp","argument":"--arp","version":"1.2","description":"arp command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["arp"]},{"name":"blkid","argument":"--blkid","version":"1.0","description":"blkid command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["blkid"]},{"name":"crontab","argument":"--crontab","version":"1.1","description":"crontab command and file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["crontab"]},{"name":"crontab_u","argument":"--crontab-u","version":"1.0","description":"crontab file parser with user support","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]},{"name":"csv","argument":"--csv","version":"1.0","description":"CSV file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the python standard csv library","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]},{"name":"df","argument":"--df","version":"1.1","description":"df command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["df"]},{"name":"dig","argument":"--dig","version":"1.1","description":"dig command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["dig"]},{"name":"du","argument":"--du","version":"1.1","description":"du command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["du"]},{"name":"env","argument":"--env","version":"1.1","description":"env command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["env"]},{"name":"file","argument":"--file","version":"1.1","description":"file command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["file"]},{"name":"free","argument":"--free","version":"1.0","description":"free command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["free"]},{"name":"fstab","argument":"--fstab","version":"1.0","description":"fstab file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"]},{"name":"group","argument":"--group","version":"1.0","description":"/etc/group file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]},{"name":"gshadow","argument":"--gshadow","version":"1.0","description":"/etc/gshadow file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd"]},{"name":"history","argument":"--history","version":"1.2","description":"history command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Optimizations by https://github.com/philippeitis","compatible":["linux","darwin","cygwin","aix","freebsd"]},{"name":"hosts","argument":"--hosts","version":"1.0","description":"/etc/hosts file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]},{"name":"id","argument":"--id","version":"1.0","description":"id command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["id"]},{"name":"ifconfig","argument":"--ifconfig","version":"1.5","description":"ifconfig command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using ifconfig-parser package from https://github.com/KnightWhoSayNi/ifconfig-parser","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["ifconfig"]},{"name":"ini","argument":"--ini","version":"1.0","description":"INI file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using configparser from the standard library","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]},{"name":"iptables","argument":"--iptables","version":"1.1","description":"iptables command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["iptables"]},{"name":"jobs","argument":"--jobs","version":"1.0","description":"jobs command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["jobs"]},{"name":"last","argument":"--last","version":"1.0","description":"last and lastb command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["last","lastb"]},{"name":"ls","argument":"--ls","version":"1.3","description":"ls command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["ls"]},{"name":"lsblk","argument":"--lsblk","version":"1.3","description":"lsblk command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsblk"]},{"name":"lsmod","argument":"--lsmod","version":"1.1","description":"lsmod command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsmod"]},{"name":"lsof","argument":"--lsof","version":"1.0","description":"lsof command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsof"]},{"name":"mount","argument":"--mount","version":"1.1","description":"mount command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["mount"]},{"name":"netstat","argument":"--netstat","version":"1.2","description":"netstat command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["netstat"]},{"name":"ntpq","argument":"--ntpq","version":"1.0","description":"ntpq -p command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["ntpq"]},{"name":"passwd","argument":"--passwd","version":"1.0","description":"/etc/passwd file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]},{"name":"pip_list","argument":"--pip-list","version":"1.0","description":"pip list command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["pip list","pip3 list"]},{"name":"pip_show","argument":"--pip-show","version":"1.0","description":"pip show command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["pip show","pip3 show"]},{"name":"ps","argument":"--ps","version":"1.1","description":"ps command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["ps"]},{"name":"route","argument":"--route","version":"1.0","description":"route command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["route"]},{"name":"shadow","argument":"--shadow","version":"1.0","description":"/etc/shadow file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]},{"name":"ss","argument":"--ss","version":"1.0","description":"ss command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["ss"]},{"name":"stat","argument":"--stat","version":"1.0","description":"stat command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["stat"]},{"name":"systemctl","argument":"--systemctl","version":"1.0","description":"systemctl command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl"]},{"name":"systemctl_lj","argument":"--systemctl-lj","version":"1.0","description":"systemctl list-jobs command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-jobs"]},{"name":"systemctl_ls","argument":"--systemctl-ls","version":"1.0","description":"systemctl list-sockets command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-sockets"]},{"name":"systemctl_luf","argument":"--systemctl-luf","version":"1.0","description":"systemctl list-unit-files command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-unit-files"]},{"name":"timedatectl","argument":"--timedatectl","version":"1.0","description":"timedatectl status command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["timedatectl","timedatectl status"]},{"name":"uname","argument":"--uname","version":"1.1","description":"uname -a command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["uname"]},{"name":"uptime","argument":"--uptime","version":"1.0","description":"uptime command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["uptime"]},{"name":"w","argument":"--w","version":"1.0","description":"w command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["w"]},{"name":"who","argument":"--who","version":"1.0","description":"who command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["who"]},{"name":"xml","argument":"--xml","version":"1.0","description":"XML file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the xmltodict library at https://github.com/martinblech/xmltodict","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]},{"name":"yaml","argument":"--yaml","version":"1.0","description":"YAML file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]}] ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-c', '_.parsers'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_l_parsers(self): """ Test jc -a | jello -l '_["parsers"]' """ expected = '''\ {"name":"airport","argument":"--airport","version":"1.0","description":"airport -I command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["darwin"],"magic_commands":["airport -I"]} {"name":"airport_s","argument":"--airport-s","version":"1.0","description":"airport -s command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["darwin"],"magic_commands":["airport -s"]} {"name":"arp","argument":"--arp","version":"1.2","description":"arp command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["arp"]} {"name":"blkid","argument":"--blkid","version":"1.0","description":"blkid command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["blkid"]} {"name":"crontab","argument":"--crontab","version":"1.1","description":"crontab command and file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["crontab"]} {"name":"crontab_u","argument":"--crontab-u","version":"1.0","description":"crontab file parser with user support","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]} {"name":"csv","argument":"--csv","version":"1.0","description":"CSV file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the python standard csv library","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} {"name":"df","argument":"--df","version":"1.1","description":"df command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["df"]} {"name":"dig","argument":"--dig","version":"1.1","description":"dig command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["dig"]} {"name":"du","argument":"--du","version":"1.1","description":"du command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["du"]} {"name":"env","argument":"--env","version":"1.1","description":"env command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["env"]} {"name":"file","argument":"--file","version":"1.1","description":"file command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["file"]} {"name":"free","argument":"--free","version":"1.0","description":"free command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["free"]} {"name":"fstab","argument":"--fstab","version":"1.0","description":"fstab file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"]} {"name":"group","argument":"--group","version":"1.0","description":"/etc/group file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]} {"name":"gshadow","argument":"--gshadow","version":"1.0","description":"/etc/gshadow file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd"]} {"name":"history","argument":"--history","version":"1.2","description":"history command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Optimizations by https://github.com/philippeitis","compatible":["linux","darwin","cygwin","aix","freebsd"]} {"name":"hosts","argument":"--hosts","version":"1.0","description":"/etc/hosts file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} {"name":"id","argument":"--id","version":"1.0","description":"id command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["id"]} {"name":"ifconfig","argument":"--ifconfig","version":"1.5","description":"ifconfig command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using ifconfig-parser package from https://github.com/KnightWhoSayNi/ifconfig-parser","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["ifconfig"]} {"name":"ini","argument":"--ini","version":"1.0","description":"INI file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using configparser from the standard library","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} {"name":"iptables","argument":"--iptables","version":"1.1","description":"iptables command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["iptables"]} {"name":"jobs","argument":"--jobs","version":"1.0","description":"jobs command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["jobs"]} {"name":"last","argument":"--last","version":"1.0","description":"last and lastb command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["last","lastb"]} {"name":"ls","argument":"--ls","version":"1.3","description":"ls command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["ls"]} {"name":"lsblk","argument":"--lsblk","version":"1.3","description":"lsblk command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsblk"]} {"name":"lsmod","argument":"--lsmod","version":"1.1","description":"lsmod command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsmod"]} {"name":"lsof","argument":"--lsof","version":"1.0","description":"lsof command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsof"]} {"name":"mount","argument":"--mount","version":"1.1","description":"mount command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["mount"]} {"name":"netstat","argument":"--netstat","version":"1.2","description":"netstat command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["netstat"]} {"name":"ntpq","argument":"--ntpq","version":"1.0","description":"ntpq -p command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["ntpq"]} {"name":"passwd","argument":"--passwd","version":"1.0","description":"/etc/passwd file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]} {"name":"pip_list","argument":"--pip-list","version":"1.0","description":"pip list command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["pip list","pip3 list"]} {"name":"pip_show","argument":"--pip-show","version":"1.0","description":"pip show command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["pip show","pip3 show"]} {"name":"ps","argument":"--ps","version":"1.1","description":"ps command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["ps"]} {"name":"route","argument":"--route","version":"1.0","description":"route command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["route"]} {"name":"shadow","argument":"--shadow","version":"1.0","description":"/etc/shadow file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]} {"name":"ss","argument":"--ss","version":"1.0","description":"ss command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["ss"]} {"name":"stat","argument":"--stat","version":"1.0","description":"stat command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["stat"]} {"name":"systemctl","argument":"--systemctl","version":"1.0","description":"systemctl command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl"]} {"name":"systemctl_lj","argument":"--systemctl-lj","version":"1.0","description":"systemctl list-jobs command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-jobs"]} {"name":"systemctl_ls","argument":"--systemctl-ls","version":"1.0","description":"systemctl list-sockets command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-sockets"]} {"name":"systemctl_luf","argument":"--systemctl-luf","version":"1.0","description":"systemctl list-unit-files command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-unit-files"]} {"name":"timedatectl","argument":"--timedatectl","version":"1.0","description":"timedatectl status command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["timedatectl","timedatectl status"]} {"name":"uname","argument":"--uname","version":"1.1","description":"uname -a command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["uname"]} {"name":"uptime","argument":"--uptime","version":"1.0","description":"uptime command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["uptime"]} {"name":"w","argument":"--w","version":"1.0","description":"w command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["w"]} {"name":"who","argument":"--who","version":"1.0","description":"who command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["who"]} {"name":"xml","argument":"--xml","version":"1.0","description":"XML file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the xmltodict library at https://github.com/martinblech/xmltodict","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} {"name":"yaml","argument":"--yaml","version":"1.0","description":"YAML file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-l', '_["parsers"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_l_parsers_dot(self): """ Test jc -a | jello -l _.parsers """ expected = '''\ {"name":"airport","argument":"--airport","version":"1.0","description":"airport -I command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["darwin"],"magic_commands":["airport -I"]} {"name":"airport_s","argument":"--airport-s","version":"1.0","description":"airport -s command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["darwin"],"magic_commands":["airport -s"]} {"name":"arp","argument":"--arp","version":"1.2","description":"arp command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["arp"]} {"name":"blkid","argument":"--blkid","version":"1.0","description":"blkid command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["blkid"]} {"name":"crontab","argument":"--crontab","version":"1.1","description":"crontab command and file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["crontab"]} {"name":"crontab_u","argument":"--crontab-u","version":"1.0","description":"crontab file parser with user support","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]} {"name":"csv","argument":"--csv","version":"1.0","description":"CSV file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the python standard csv library","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} {"name":"df","argument":"--df","version":"1.1","description":"df command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["df"]} {"name":"dig","argument":"--dig","version":"1.1","description":"dig command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["dig"]} {"name":"du","argument":"--du","version":"1.1","description":"du command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["du"]} {"name":"env","argument":"--env","version":"1.1","description":"env command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["env"]} {"name":"file","argument":"--file","version":"1.1","description":"file command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["file"]} {"name":"free","argument":"--free","version":"1.0","description":"free command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["free"]} {"name":"fstab","argument":"--fstab","version":"1.0","description":"fstab file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"]} {"name":"group","argument":"--group","version":"1.0","description":"/etc/group file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]} {"name":"gshadow","argument":"--gshadow","version":"1.0","description":"/etc/gshadow file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","aix","freebsd"]} {"name":"history","argument":"--history","version":"1.2","description":"history command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Optimizations by https://github.com/philippeitis","compatible":["linux","darwin","cygwin","aix","freebsd"]} {"name":"hosts","argument":"--hosts","version":"1.0","description":"/etc/hosts file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} {"name":"id","argument":"--id","version":"1.0","description":"id command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["id"]} {"name":"ifconfig","argument":"--ifconfig","version":"1.5","description":"ifconfig command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using ifconfig-parser package from https://github.com/KnightWhoSayNi/ifconfig-parser","compatible":["linux","aix","freebsd","darwin"],"magic_commands":["ifconfig"]} {"name":"ini","argument":"--ini","version":"1.0","description":"INI file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using configparser from the standard library","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} {"name":"iptables","argument":"--iptables","version":"1.1","description":"iptables command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["iptables"]} {"name":"jobs","argument":"--jobs","version":"1.0","description":"jobs command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["jobs"]} {"name":"last","argument":"--last","version":"1.0","description":"last and lastb command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"],"magic_commands":["last","lastb"]} {"name":"ls","argument":"--ls","version":"1.3","description":"ls command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["ls"]} {"name":"lsblk","argument":"--lsblk","version":"1.3","description":"lsblk command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsblk"]} {"name":"lsmod","argument":"--lsmod","version":"1.1","description":"lsmod command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsmod"]} {"name":"lsof","argument":"--lsof","version":"1.0","description":"lsof command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["lsof"]} {"name":"mount","argument":"--mount","version":"1.1","description":"mount command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["mount"]} {"name":"netstat","argument":"--netstat","version":"1.2","description":"netstat command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["netstat"]} {"name":"ntpq","argument":"--ntpq","version":"1.0","description":"ntpq -p command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["ntpq"]} {"name":"passwd","argument":"--passwd","version":"1.0","description":"/etc/passwd file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]} {"name":"pip_list","argument":"--pip-list","version":"1.0","description":"pip list command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["pip list","pip3 list"]} {"name":"pip_show","argument":"--pip-show","version":"1.0","description":"pip show command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","win32","aix","freebsd"],"magic_commands":["pip show","pip3 show"]} {"name":"ps","argument":"--ps","version":"1.1","description":"ps command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["ps"]} {"name":"route","argument":"--route","version":"1.0","description":"route command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["route"]} {"name":"shadow","argument":"--shadow","version":"1.0","description":"/etc/shadow file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","aix","freebsd"]} {"name":"ss","argument":"--ss","version":"1.0","description":"ss command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["ss"]} {"name":"stat","argument":"--stat","version":"1.0","description":"stat command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["stat"]} {"name":"systemctl","argument":"--systemctl","version":"1.0","description":"systemctl command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl"]} {"name":"systemctl_lj","argument":"--systemctl-lj","version":"1.0","description":"systemctl list-jobs command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-jobs"]} {"name":"systemctl_ls","argument":"--systemctl-ls","version":"1.0","description":"systemctl list-sockets command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-sockets"]} {"name":"systemctl_luf","argument":"--systemctl-luf","version":"1.0","description":"systemctl list-unit-files command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["systemctl list-unit-files"]} {"name":"timedatectl","argument":"--timedatectl","version":"1.0","description":"timedatectl status command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux"],"magic_commands":["timedatectl","timedatectl status"]} {"name":"uname","argument":"--uname","version":"1.1","description":"uname -a command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin"],"magic_commands":["uname"]} {"name":"uptime","argument":"--uptime","version":"1.0","description":"uptime command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["uptime"]} {"name":"w","argument":"--w","version":"1.0","description":"w command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["w"]} {"name":"who","argument":"--who","version":"1.0","description":"who command parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","compatible":["linux","darwin","cygwin","aix","freebsd"],"magic_commands":["who"]} {"name":"xml","argument":"--xml","version":"1.0","description":"XML file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the xmltodict library at https://github.com/martinblech/xmltodict","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} {"name":"yaml","argument":"--yaml","version":"1.0","description":"YAML file parser","author":"Kelly Brazil","author_email":"kellyjonbrazil@gmail.com","details":"Using the ruamel.yaml library at https://pypi.org/project/ruamel.yaml","compatible":["linux","darwin","cygwin","win32","aix","freebsd"]} ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-l', '_.parsers'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_parsers_18(self): """ Test jc -a | jello '_["parsers"][18]' """ expected = '''\ { "name": "id", "argument": "--id", "version": "1.0", "description": "id command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "id" ] } ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '_["parsers"][18]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_parsers_18_dot(self): """ Test jc -a | jello _.parsers[18] """ expected = '''\ { "name": "id", "argument": "--id", "version": "1.0", "description": "id command parser", "author": "Kelly Brazil", "author_email": "kellyjonbrazil@gmail.com", "compatible": [ "linux", "darwin", "aix", "freebsd" ], "magic_commands": [ "id" ] } ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '_.parsers[18]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_s_parsers_18_dot(self): """ Test jc -a | jello -s _.parsers[18] """ expected = '''\ _ = {}; _.name = "id"; _.argument = "--id"; _.version = "1.0"; _.description = "id command parser"; _.author = "Kelly Brazil"; _.author_email = "kellyjonbrazil@gmail.com"; _.compatible = []; _.compatible[0] = "linux"; _.compatible[1] = "darwin"; _.compatible[2] = "aix"; _.compatible[3] = "freebsd"; _.magic_commands = []; _.magic_commands[0] = "id"; ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-s', '_.parsers[18]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_parsers_18_name(self): """ Test jc -a | jello '_["parsers"][18]["name"]' """ expected = '"id"\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '_["parsers"][18]["name"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_parsers_18_name_dot(self): """ Test jc -a | jello _.parsers[18].name """ expected = '"id"\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '_.parsers[18].name'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_l_parsers_18_name(self): """ Test jc -a | jello -l '_["parsers"][18]["name"]' """ expected = '"id"\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-l', '_["parsers"][18]["name"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_l_parsers_18_name_dot(self): """ Test jc -a | jello -l _.parsers[18].name """ expected = '"id"\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-l', '_.parsers[18].name'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_r_parsers_18_name(self): """ Test jc -a | jello -r '_["parsers"][18]["name"]' """ expected = 'id\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-r', '_["parsers"][18]["name"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_r_parsers_18_name_dot(self): """ Test jc -a | jello -r _.parsers[18].name """ expected = 'id\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-r', '_.parsers[18].name'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_parsers_18_compatible(self): """ Test jc -a | jello '_["parsers"][18]["compatible"]' """ expected = '''\ [ "linux", "darwin", "aix", "freebsd" ] ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '_["parsers"][18]["compatible"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_parsers_18_compatible_dot(self): """ Test jc -a | jello _.parsers[18].compatible """ expected = '''\ [ "linux", "darwin", "aix", "freebsd" ] ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '_.parsers[18].compatible'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_s_parsers_18_compatible_dot(self): """ Test jc -a | jello -s _.parsers[18].compatible """ expected = '''\ _ = []; _[0] = "linux"; _[1] = "darwin"; _[2] = "aix"; _[3] = "freebsd"; ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-s', '_.parsers[18].compatible'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_c_parsers_18_compatible(self): """ Test jc -a | jello -c '_["parsers"][18]["compatible"]' """ expected = '["linux","darwin","aix","freebsd"]\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-c', '_["parsers"][18]["compatible"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_c_parsers_18_compatible_dot(self): """ Test jc -a | jello -c _.parsers[18].compatible """ expected = '["linux","darwin","aix","freebsd"]\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-c', '_.parsers[18].compatible'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_l_parsers_18_compatible(self): """ Test jc -a | jello -l '_["parsers"][18]["compatible"]' """ expected = '''\ "linux" "darwin" "aix" "freebsd" ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-l', '_["parsers"][18]["compatible"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_l_parsers_18_compatible_dot(self): """ Test jc -a | jello -l _.parsers[18].compatible """ expected = '''\ "linux" "darwin" "aix" "freebsd" ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-l', '_.parsers[18].compatible'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_lr_parsers_18_compatible(self): """ Test jc -a | jello -lr '_["parsers"][18]["compatible"]' """ expected = '''\ linux darwin aix freebsd ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-lr', '_["parsers"][18]["compatible"]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_lr_parsers_18_compatible_dot(self): """ Test jc -a | jello -lr _.parsers[18].compatible """ expected = '''\ linux darwin aix freebsd ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-lr', '_.parsers[18].compatible'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_c_list_comprehension(self): """ Test jc -a | jello -c '[entry["name"] for entry in _["parsers"] if "darwin" in entry["compatible"]]' """ expected = '["airport","airport_s","arp","crontab","crontab_u","csv","df","dig","du","env","file","group","history","hosts","id","ifconfig","ini","jobs","last","ls","mount","passwd","pip_list","pip_show","ps","shadow","uname","uptime","w","who","xml","yaml"]\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-c', '[entry["name"] for entry in _["parsers"] if "darwin" in entry["compatible"]]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_jc_a_c_list_comprehension_dot(self): """ Test jc -a | jello -c '[entry.name for entry in _.parsers if "darwin" in entry.compatible]' """ expected = '["airport","airport_s","arp","crontab","crontab_u","csv","df","dig","du","env","file","group","history","hosts","id","ifconfig","ini","jobs","last","ls","mount","passwd","pip_list","pip_show","ps","shadow","uname","uptime","w","who","xml","yaml"]\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-c', '[entry.name for entry in _.parsers if "darwin" in entry.compatible]'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.jc_a_output) self.assertEqual(f.getvalue(), expected) def test_twitter_jlines_to_json(self): """ Test cat twitterdata.jlines | jello """ expected = self.twitterdata_output f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.twitterdata) self.assertEqual(f.getvalue(), expected) def test_twitter_lines_table(self): """ Test cat twitterdata.jlines | jello -l '\ user_ids = set() result = [] for tweet in _: user_ids.add(tweet["user"]["id"]) for user in user_ids: user_profile = {} tweet_ids = [] for tweet in _: if tweet["user"]["id"] == user: user_profile.update({ "user_id": user, "user_name": tweet["user"]["screen_name"], "user_followers": tweet["user"]["followers_count"]}) tweet_ids.append(str(tweet["id"])) user_profile["tweet_ids"] = ";".join(tweet_ids) result.append(user_profile) result' """ query = '''\ user_ids = set() result = [] for tweet in _: user_ids.add(tweet["user"]["id"]) for user in sorted(user_ids): user_profile = {} tweet_ids = [] for tweet in _: if tweet["user"]["id"] == user: user_profile.update({ "user_id": user, "user_name": tweet["user"]["screen_name"], "user_followers": tweet["user"]["followers_count"]}) tweet_ids.append(str(tweet["id"])) user_profile["tweet_ids"] = ";".join(tweet_ids) result.append(user_profile) result ''' expected = self.twitter_table_output f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-l', query] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.twitterdata) self.assertEqual(f.getvalue(), expected) def test_twitter_lines_table_schema(self): """ Test cat twitterdata.jlines | jello -s '\ user_ids = set() result = [] for tweet in _: user_ids.add(tweet["user"]["id"]) for user in sorted(user_ids): user_profile = {} tweet_ids = [] for tweet in _: if tweet["user"]["id"] == user: user_profile.update({ "user_id": user, "user_name": tweet["user"]["screen_name"], "user_followers": tweet["user"]["followers_count"]}) tweet_ids.append(str(tweet["id"])) user_profile["tweet_ids"] = ";".join(tweet_ids) result.append(user_profile) result' """ query = '''\ user_ids = set() result = [] for tweet in _: user_ids.add(tweet["user"]["id"]) for user in sorted(user_ids): user_profile = {} tweet_ids = [] for tweet in _: if tweet["user"]["id"] == user: user_profile.update({ "user_id": user, "user_name": tweet["user"]["screen_name"], "user_followers": tweet["user"]["followers_count"]}) tweet_ids.append(str(tweet["id"])) user_profile["tweet_ids"] = ";".join(tweet_ids) result.append(user_profile) result ''' expected = self.twitter_table_output_schema f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-s', query] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.twitterdata) self.assertEqual(f.getvalue(), expected) def test_twitter_lines_table_dot(self): """ Test cat twitterdata.jlines | jello -l '\ user_ids = set() result = [] for tweet in _: user_ids.add(tweet.user.id) for user in user_ids: user_profile = {} tweet_ids = [] for tweet in _: if tweet.user.id == user: user_profile.update({ "user_id": user, "user_name": tweet.user.screen_name, "user_followers": tweet.user.followers_count}) tweet_ids.append(str(tweet.id)) user_profile.tweet_ids = ";".join(tweet_ids) result.append(user_profile) result' """ query = '''\ user_ids = set() result = [] for tweet in _: user_ids.add(tweet.user.id) for user in sorted(user_ids): user_profile = {} tweet_ids = [] for tweet in _: if tweet.user.id == user: user_profile.update({ "user_id": user, "user_name": tweet.user.screen_name, "user_followers": tweet.user.followers_count}) tweet_ids.append(str(tweet.id)) user_profile["tweet_ids"] = ";".join(tweet_ids) result.append(user_profile) result ''' expected = self.twitter_table_output f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-l', query] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=self.twitterdata) self.assertEqual(f.getvalue(), expected) def test_scope_with_comprehension(self): """ fix for https://github.com/kellyjonbrazil/jello/issues/46 """ sample = '''\ { "foods": [ { "name": "carrot" }, { "name": "banana" } ], "people": [ { "name": "alice", "likes": "apples" }, { "name": "bob", "likes": "banana" }, { "name": "carrol", "likes": "carrot" }, { "name": "dave", "likes": "donuts" } ] }''' query = '''\ foods = set(f.name for f in _.foods) [p.name for p in _.people if p.likes not in foods]''' expected = '''[ "alice", "dave" ] ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', query] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=sample) self.assertEqual(f.getvalue(), expected) def test_scope_with_comprehension2(self): """ fix for https://github.com/kellyjonbrazil/jello/issues/46 """ sample = '''\ { "foods": [ { "name": "carrot" }, { "name": "banana" } ], "people": [ { "name": "alice", "likes": "apples" }, { "name": "bob", "likes": "banana" }, { "name": "carrol", "likes": "carrot" }, { "name": "dave", "likes": "donuts" } ] }''' query = '''\ [p.name for p in _.people if p.likes not in (f.name for f in _.foods)]''' expected = '''[ "alice", "dave" ] ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', query] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=sample) self.assertEqual(f.getvalue(), expected) def test_initialization_file(self): # patch read_file function to mock initialization file old_read_file = copy.copy(jello.lib.read_file) jello.lib.read_file = lambda x: 'init_var = "test"' sample = '''{"a": "hello world"}''' expected = '"test"\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-i', 'init_var'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=sample) jello.lib.read_file = old_read_file self.assertEqual(f.getvalue(), expected) def test_query_file(self): # patch read_file function to mock initialization file old_read_file = copy.copy(jello.cli.read_file) jello.cli.read_file = lambda x: 'init_var = "test"\ninit_var' sample = '''{"a": "hello world"}''' expected = '"test"\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-q', 'myqueryfile'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=sample) jello.cli.read_file = old_read_file self.assertEqual(f.getvalue(), expected) def test_data_file(self): # patch read_file function to mock initialization file old_read_file = copy.copy(jello.cli.read_file) jello.cli.read_file = lambda x: '''{"a": "hello world"}''' sample = '' expected = '"hello world"\n' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '_.a', '-f', 'mydatafile'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=sample) jello.cli.read_file = old_read_file self.assertEqual(f.getvalue(), expected) def test_empty_data_option(self): sample = '' expected = '''\ { "a": "test" } ''' f = io.StringIO() with contextlib.redirect_stdout(f): testargs = ['jello', '-e', '{"a": "test"}'] with patch.object(sys, 'argv', testargs): _ = jello.cli.main(data=sample) self.assertEqual(f.getvalue(), expected) if __name__ == '__main__': unittest.main() jello-1.6.1/tests/test_pyquery.py000066400000000000000000000104031501617276000171200ustar00rootroot00000000000000#!/usr/bin/env python3 import unittest import jello.cli from jello.cli import opts class MyTests(unittest.TestCase): def setUp(self): # initialize options opts.initialize = None opts.version_info = None opts.helpme = None opts.compact = None opts.nulls = None opts.raw = None opts.lines = None opts.mono = None opts.schema = None opts.types = None opts.keyname_color = None opts.keyword_color = None opts.number_color = None opts.string_color = None # create samples self.dict_sample = { 'string': 'string\nwith newline\ncharacters in it', 'true': True, 'false': False, 'null': None, 'int': 42, 'float': 3.14, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] } self.list_sample = [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] self.list_of_dicts_sample = [ { 'string': 'string\nwith newline\ncharacters in it', 'true': True, 'false': False, 'null': None, 'int': 42, 'float': 3.14, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ] }, { 'string': 'another string\nwith newline\ncharacters in it', 'true': True, 'false': False, 'null': None, 'int': 10001, 'float': -400.45, 'array': [ 'string\nwith newline\ncharacters in it', True, False, None, -6000034, 999999.854321 ] } ] self.list_of_lists_sample = [ [ 'string\nwith newline\ncharacters in it', True, False, None, 42, 3.14 ], [ 'another string\nwith newline\ncharacters in it', True, False, None, 42001, -3.14 ] ] # ------------ Tests ------------ def test_KeyError(self): """ Test _.foo.nonexistent_key (KeyError) """ data_in = {"foo": "bar"} query = '_.nonexistent_key' self.assertRaises(KeyError, jello.cli.pyquery, data_in, query) def test_IndexError(self): """ Test _.foo[99] (IndexError) """ data_in = [1, 2, 3] query = '_[9]' self.assertRaises(IndexError, jello.cli.pyquery, data_in, query) def test_SyntaxError(self): """ Test % (SyntaxError) """ data_in = [1, 2, 3] query = '%' self.assertRaises(SyntaxError, jello.cli.pyquery, data_in, query) def test_TypeError(self): """ Test _[5] on None (TypeError) """ data_in = None query = '_[5]' self.assertRaises(TypeError, jello.cli.pyquery, data_in, query) def test_AttributeError(self): """ Test _.items() on list (AttributeError) """ data_in = [1, 2, 3] query = '_.items()' self.assertRaises(AttributeError, jello.cli.pyquery, data_in, query) def test_NameError(self): """ Test variable (NameError) """ data_in = {"foo": "bar"} query = 'variable' self.assertRaises(NameError, jello.cli.pyquery, data_in, query) def test_ValueError(self): """ Test _.get (ValueError) """ data_in = {"foo": "bar"} query = '_.get' self.assertRaises(ValueError, jello.cli.pyquery, data_in, query) if __name__ == '__main__': unittest.main()