{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"(content:json_creation)=\n",
"# Creating a custom JSON file for a data collection\n",
"\n",
"This notebook will overview a few recent improvements to help us create a custom data collection.\n",
"Note that, right now, the only way to use these features is by installing pySocialWarcther from [Joao's GitHub repo](https://github.com/joaopalotti/pySocialWatcher). We will need to clone it and install it with ``python setup.py install``."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-24T11:27:45.721963Z",
"start_time": "2021-02-24T11:27:45.508450Z"
}
},
"outputs": [],
"source": [
"import pandas as pd\n",
"from pysocialwatcher import watcherAPI\n",
"\n",
"# helper functions to build a json file\n",
"from pysocialwatcher.json_builder import JSONBuilder, AgeList, Age, Genders, LocationList\n",
"from pysocialwatcher.json_builder import get_predefined_behavior"
]
},
{
"cell_type": "markdown",
"metadata": {
"ExecuteTime": {
"end_time": "2021-01-30T21:03:05.472114Z",
"start_time": "2021-01-30T21:03:05.466244Z"
}
},
"source": [
"## Creating a collection from a list of locations\n",
"One potential use case that we envision is creating a data collection from a list of locations (e.g., city names). In the following example, we will load a list of cities from a file (`worldcities.csv`) and use some of the pySocialWatcher tools to find these cities' internal Facebook unique identifiers."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-24T11:27:47.114887Z",
"start_time": "2021-02-24T11:27:47.076852Z"
}
},
"outputs": [
{
"data": {
"text/html": [
"
\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" city | \n",
" city_ascii | \n",
" lat | \n",
" lng | \n",
" country | \n",
" iso2 | \n",
" iso3 | \n",
" admin_name | \n",
" capital | \n",
" population | \n",
" id | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" Tokyo | \n",
" Tokyo | \n",
" 35.6850 | \n",
" 139.7514 | \n",
" Japan | \n",
" JP | \n",
" JPN | \n",
" Tōkyō | \n",
" primary | \n",
" 35676000.0 | \n",
" 1392685764 | \n",
"
\n",
" \n",
" 1 | \n",
" New York | \n",
" New York | \n",
" 40.6943 | \n",
" -73.9249 | \n",
" United States | \n",
" US | \n",
" USA | \n",
" New York | \n",
" NaN | \n",
" 19354922.0 | \n",
" 1840034016 | \n",
"
\n",
" \n",
" 2 | \n",
" Mexico City | \n",
" Mexico City | \n",
" 19.4424 | \n",
" -99.1310 | \n",
" Mexico | \n",
" MX | \n",
" MEX | \n",
" Ciudad de México | \n",
" primary | \n",
" 19028000.0 | \n",
" 1484247881 | \n",
"
\n",
" \n",
" 3 | \n",
" Mumbai | \n",
" Mumbai | \n",
" 19.0170 | \n",
" 72.8570 | \n",
" India | \n",
" IN | \n",
" IND | \n",
" Mahārāshtra | \n",
" admin | \n",
" 18978000.0 | \n",
" 1356226629 | \n",
"
\n",
" \n",
" 4 | \n",
" São Paulo | \n",
" Sao Paulo | \n",
" -23.5587 | \n",
" -46.6250 | \n",
" Brazil | \n",
" BR | \n",
" BRA | \n",
" São Paulo | \n",
" admin | \n",
" 18845000.0 | \n",
" 1076532519 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" city city_ascii lat lng country iso2 iso3 \\\n",
"0 Tokyo Tokyo 35.6850 139.7514 Japan JP JPN \n",
"1 New York New York 40.6943 -73.9249 United States US USA \n",
"2 Mexico City Mexico City 19.4424 -99.1310 Mexico MX MEX \n",
"3 Mumbai Mumbai 19.0170 72.8570 India IN IND \n",
"4 São Paulo Sao Paulo -23.5587 -46.6250 Brazil BR BRA \n",
"\n",
" admin_name capital population id \n",
"0 Tōkyō primary 35676000.0 1392685764 \n",
"1 New York NaN 19354922.0 1840034016 \n",
"2 Ciudad de México primary 19028000.0 1484247881 \n",
"3 Mahārāshtra admin 18978000.0 1356226629 \n",
"4 São Paulo admin 18845000.0 1076532519 "
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# From a list of locations, e.g., \"worldcities.csv\", containing the list of most populated \n",
"# cities in the world, our first goal is to find what are their FB ids\n",
"df_cities = pd.read_csv(\"./worldcities.csv\")\n",
"df_cities.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We always start by loading the library with:"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-24T10:39:19.096881Z",
"start_time": "2021-02-24T10:39:19.084930Z"
}
},
"outputs": [],
"source": [
"watcher = watcherAPI(api_version=\"9.0\", sleep_time=5) \n",
"watcher.load_credentials_file(\"credentials.csv\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This time we are using the parameter ``sleep_time`` to inform pySocialWatcher that after every API call, it should sleep for 5 seconds before issuing another API call, instead of the default 8 seconds. \n",
"Note that we can decrease the ``sleep_time`` as much as we want (e.g., try using ``0.5``). However, we risk being blocked by Facebook for issuing API calls too often. There are different token levels, but if you only have a normal standard one, I recommend using a ``sleep_time`` of 5 or 6 seconds."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"There are multiple ways to find out the internal FB ID of a location, and one of them is using the pySocialWatcher function ``watcherAPI.get_geo_locations_given_query_and_location_type``.\n",
"\n",
"In the following example, we create a helper function ``find_most_likely_city_given_name``, which queries the Graph API looking for cities with a given name and retrieving the top 1 location found."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-24T10:39:21.079074Z",
"start_time": "2021-02-24T10:39:21.068209Z"
}
},
"outputs": [],
"source": [
"def find_most_likely_city_given_name(cityname):\n",
" df = watcherAPI.get_geo_locations_given_query_and_location_type(cityname, \"city\", limit=1)\n",
" return None if df.empty else (None if \"name\" not in df.iloc[0] else df.iloc[0][\"name\"], df.iloc[0][\"key\"],\n",
" None if \"region\" not in df.iloc[0] else df.iloc[0][\"region\"], df.iloc[0][\"region_id\"],\n",
" df.iloc[0][\"country_name\"], df.iloc[0][\"country_code\"])"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-24T10:39:23.619027Z",
"start_time": "2021-02-24T10:39:22.533121Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"('Belo Horizonte', '244661', 'Minas Gerais', 449, 'Brazil', 'BR')"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"find_most_likely_city_given_name(\"Belo Horizonte\")"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:23:26.900792Z",
"start_time": "2021-02-01T16:23:21.140884Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"('Washington', '2516005', 'Rhode Island', 3882, 'United States', 'US')"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"find_most_likely_city_given_name(\"Washington\")"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:23:32.767695Z",
"start_time": "2021-02-01T16:23:26.904921Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"('Washington D. C.',\n",
" '2427178',\n",
" 'Washington, District of Columbia',\n",
" 3851,\n",
" 'United States',\n",
" 'US')"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"find_most_likely_city_given_name(\"Washington DC\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This simple example shows that this function is not perfect but should help us in this tutorial. Some of the problems here can be alleviated by looking beyond the first match retrieved by Facebook Graph API or by specifying more than a simple city name (e.g., having as input not only the city name but also appending the state and country name as well).\n",
"\n",
"The second element in the tuple returned by ``find_most_likely_city_given_name`` is the FB identifier for that city (assuming it is a correct match). In general, we highly recommend you spend some time inspecting the full list of retrieved locations instead of only relying on the top one."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:23:32.889650Z",
"start_time": "2021-02-01T16:23:32.773969Z"
}
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" city | \n",
" city_ascii | \n",
" lat | \n",
" lng | \n",
" country | \n",
" iso2 | \n",
" iso3 | \n",
" admin_name | \n",
" capital | \n",
" population | \n",
" id | \n",
" fb_query | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" Tokyo | \n",
" Tokyo | \n",
" 35.6850 | \n",
" 139.7514 | \n",
" Japan | \n",
" JP | \n",
" JPN | \n",
" Tōkyō | \n",
" primary | \n",
" 35676000.0 | \n",
" 1392685764 | \n",
" Tokyo | \n",
"
\n",
" \n",
" 1 | \n",
" New York | \n",
" New York | \n",
" 40.6943 | \n",
" -73.9249 | \n",
" United States | \n",
" US | \n",
" USA | \n",
" New York | \n",
" NaN | \n",
" 19354922.0 | \n",
" 1840034016 | \n",
" New York | \n",
"
\n",
" \n",
" 2 | \n",
" Mexico City | \n",
" Mexico City | \n",
" 19.4424 | \n",
" -99.1310 | \n",
" Mexico | \n",
" MX | \n",
" MEX | \n",
" Ciudad de México | \n",
" primary | \n",
" 19028000.0 | \n",
" 1484247881 | \n",
" Mexico City | \n",
"
\n",
" \n",
" 3 | \n",
" Mumbai | \n",
" Mumbai | \n",
" 19.0170 | \n",
" 72.8570 | \n",
" India | \n",
" IN | \n",
" IND | \n",
" Mahārāshtra | \n",
" admin | \n",
" 18978000.0 | \n",
" 1356226629 | \n",
" Mumbai | \n",
"
\n",
" \n",
" 4 | \n",
" São Paulo | \n",
" Sao Paulo | \n",
" -23.5587 | \n",
" -46.6250 | \n",
" Brazil | \n",
" BR | \n",
" BRA | \n",
" São Paulo | \n",
" admin | \n",
" 18845000.0 | \n",
" 1076532519 | \n",
" São Paulo | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" city city_ascii lat lng country iso2 iso3 \\\n",
"0 Tokyo Tokyo 35.6850 139.7514 Japan JP JPN \n",
"1 New York New York 40.6943 -73.9249 United States US USA \n",
"2 Mexico City Mexico City 19.4424 -99.1310 Mexico MX MEX \n",
"3 Mumbai Mumbai 19.0170 72.8570 India IN IND \n",
"4 São Paulo Sao Paulo -23.5587 -46.6250 Brazil BR BRA \n",
"\n",
" admin_name capital population id fb_query \n",
"0 Tōkyō primary 35676000.0 1392685764 Tokyo \n",
"1 New York NaN 19354922.0 1840034016 New York \n",
"2 Ciudad de México primary 19028000.0 1484247881 Mexico City \n",
"3 Mahārāshtra admin 18978000.0 1356226629 Mumbai \n",
"4 São Paulo admin 18845000.0 1076532519 São Paulo "
]
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# NOTE: the following code might need hours to process depending on the kind of token that you have.\n",
"# To shorten this example, we are only collecting the information for the top 5 cities in the list.\n",
"df_cities[\"fb_query\"] = df_cities[[\"city\", \"iso2\"]].apply(lambda x: \"%s\" % (x[0]), axis=1)\n",
"\n",
"df_cities = df_cities.head(5)\n",
"df_cities"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:24:01.312693Z",
"start_time": "2021-02-01T16:23:32.891054Z"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0 Tokyo\n",
"0 Tokyo ('Minato-ku', '2880782', 'Tokyo', 1922, 'Japan', 'JP')\n",
"1 New York\n",
"1 New York ('New York', '2490299', 'New York', 3875, 'United States', 'US')\n",
"2 Mexico City\n",
"2 Mexico City ('Mexico City', '2673660', 'Distrito Federal', 2513, 'Mexico', 'MX')\n",
"3 Mumbai\n",
"3 Mumbai ('Mumbai', '1035921', 'Maharashtra', 1735, 'India', 'IN')\n",
"4 São Paulo\n",
"4 São Paulo ('São Paulo', '269969', 'São Paulo (state)', 460, 'Brazil', 'BR')\n"
]
}
],
"source": [
"# The following code will loop over the list and issue one FB API call per row.\n",
"# The results will be saved in the same data frame.\n",
"rows = []\n",
"for idx, row in df_cities.iterrows():\n",
" print(idx, row[\"fb_query\"])\n",
" r = find_most_likely_city_given_name(row[\"fb_query\"])\n",
" print(idx, row[\"fb_query\"], r)\n",
" if r:\n",
" row = {\"idx\": idx, \"name\": r[0], \"key\": r[1], \"region\": r[2], \"region_id\": r[3],\n",
" \"country_name\": r[4], \"country_code\": r[5]}\n",
" rows.append(row)\n",
"\n",
"df_cities = pd.merge(df_cities, pd.DataFrame(rows).set_index(\"idx\"), left_index=True, right_index=True, how=\"outer\")\n",
"df_cities[\"type\"] = \"city\"\n",
"\n",
"# Optionally, we can save locally output with FB keys\n",
"df_cities.to_csv(\"worldcities_fb_keys.csv\", index=False)"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:24:01.328830Z",
"start_time": "2021-02-01T16:24:01.313883Z"
}
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" city | \n",
" city_ascii | \n",
" lat | \n",
" lng | \n",
" country | \n",
" iso2 | \n",
" iso3 | \n",
" admin_name | \n",
" capital | \n",
" population | \n",
" id | \n",
" fb_query | \n",
" name | \n",
" key | \n",
" region | \n",
" region_id | \n",
" country_name | \n",
" country_code | \n",
" type | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" Tokyo | \n",
" Tokyo | \n",
" 35.6850 | \n",
" 139.7514 | \n",
" Japan | \n",
" JP | \n",
" JPN | \n",
" Tōkyō | \n",
" primary | \n",
" 35676000.0 | \n",
" 1392685764 | \n",
" Tokyo | \n",
" Minato-ku | \n",
" 2880782 | \n",
" Tokyo | \n",
" 1922 | \n",
" Japan | \n",
" JP | \n",
" city | \n",
"
\n",
" \n",
" 1 | \n",
" New York | \n",
" New York | \n",
" 40.6943 | \n",
" -73.9249 | \n",
" United States | \n",
" US | \n",
" USA | \n",
" New York | \n",
" NaN | \n",
" 19354922.0 | \n",
" 1840034016 | \n",
" New York | \n",
" New York | \n",
" 2490299 | \n",
" New York | \n",
" 3875 | \n",
" United States | \n",
" US | \n",
" city | \n",
"
\n",
" \n",
" 2 | \n",
" Mexico City | \n",
" Mexico City | \n",
" 19.4424 | \n",
" -99.1310 | \n",
" Mexico | \n",
" MX | \n",
" MEX | \n",
" Ciudad de México | \n",
" primary | \n",
" 19028000.0 | \n",
" 1484247881 | \n",
" Mexico City | \n",
" Mexico City | \n",
" 2673660 | \n",
" Distrito Federal | \n",
" 2513 | \n",
" Mexico | \n",
" MX | \n",
" city | \n",
"
\n",
" \n",
" 3 | \n",
" Mumbai | \n",
" Mumbai | \n",
" 19.0170 | \n",
" 72.8570 | \n",
" India | \n",
" IN | \n",
" IND | \n",
" Mahārāshtra | \n",
" admin | \n",
" 18978000.0 | \n",
" 1356226629 | \n",
" Mumbai | \n",
" Mumbai | \n",
" 1035921 | \n",
" Maharashtra | \n",
" 1735 | \n",
" India | \n",
" IN | \n",
" city | \n",
"
\n",
" \n",
" 4 | \n",
" São Paulo | \n",
" Sao Paulo | \n",
" -23.5587 | \n",
" -46.6250 | \n",
" Brazil | \n",
" BR | \n",
" BRA | \n",
" São Paulo | \n",
" admin | \n",
" 18845000.0 | \n",
" 1076532519 | \n",
" São Paulo | \n",
" São Paulo | \n",
" 269969 | \n",
" São Paulo (state) | \n",
" 460 | \n",
" Brazil | \n",
" BR | \n",
" city | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" city city_ascii lat lng country iso2 iso3 \\\n",
"0 Tokyo Tokyo 35.6850 139.7514 Japan JP JPN \n",
"1 New York New York 40.6943 -73.9249 United States US USA \n",
"2 Mexico City Mexico City 19.4424 -99.1310 Mexico MX MEX \n",
"3 Mumbai Mumbai 19.0170 72.8570 India IN IND \n",
"4 São Paulo Sao Paulo -23.5587 -46.6250 Brazil BR BRA \n",
"\n",
" admin_name capital population id fb_query \\\n",
"0 Tōkyō primary 35676000.0 1392685764 Tokyo \n",
"1 New York NaN 19354922.0 1840034016 New York \n",
"2 Ciudad de México primary 19028000.0 1484247881 Mexico City \n",
"3 Mahārāshtra admin 18978000.0 1356226629 Mumbai \n",
"4 São Paulo admin 18845000.0 1076532519 São Paulo \n",
"\n",
" name key region region_id country_name \\\n",
"0 Minato-ku 2880782 Tokyo 1922 Japan \n",
"1 New York 2490299 New York 3875 United States \n",
"2 Mexico City 2673660 Distrito Federal 2513 Mexico \n",
"3 Mumbai 1035921 Maharashtra 1735 India \n",
"4 São Paulo 269969 São Paulo (state) 460 Brazil \n",
"\n",
" country_code type \n",
"0 JP city \n",
"1 US city \n",
"2 MX city \n",
"3 IN city \n",
"4 BR city "
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_cities.head(5) # Note as only Minato-ku is collected as if it were the whole Tokyo."
]
},
{
"cell_type": "markdown",
"metadata": {
"ExecuteTime": {
"end_time": "2021-01-30T21:37:46.833485Z",
"start_time": "2021-01-30T21:37:46.828385Z"
}
},
"source": [
"(content:listing_all_cities_states_in_a_country_region)=\n",
"## Listing all cities/states in a country/region"
]
},
{
"cell_type": "markdown",
"metadata": {
"ExecuteTime": {
"end_time": "2020-09-01T03:42:09.990339Z",
"start_time": "2020-09-01T03:42:09.985049Z"
}
},
"source": [
"Another typical use case is collecting data for all cities in a region or all regions in a country.\n",
"``pySocialWatcher`` has a couple of functions that might help us to get started.\n",
"\n",
"For example, ``watcherAPI.get_KMLs_for_regions_in_country`` allow us to retrieve all the regions for a given country:"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-24T10:40:26.910128Z",
"start_time": "2021-02-24T10:40:12.261211Z"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Obtained 51 regions.\n",
"Obtained 51 KMLs.\n"
]
},
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" key | \n",
" name | \n",
" type | \n",
" country_code | \n",
" country_name | \n",
" supports_region | \n",
" supports_city | \n",
" kml | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" 3866 | \n",
" Minnesota | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
" 1 | \n",
" 3855 | \n",
" Idaho | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
" 2 | \n",
" 3856 | \n",
" Illinois | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
" 3 | \n",
" 3864 | \n",
" Massachusetts | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
" 4 | \n",
" 3846 | \n",
" Arkansas | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
" 5 | \n",
" 3886 | \n",
" Texas | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
" 6 | \n",
" 3843 | \n",
" Alabama | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
" 7 | \n",
" 3882 | \n",
" Rhode Island | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
" 8 | \n",
" 3862 | \n",
" Maine | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
" 9 | \n",
" 3873 | \n",
" New Jersey | \n",
" region | \n",
" US | \n",
" United States | \n",
" True | \n",
" True | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" key name type country_code country_name supports_region \\\n",
"0 3866 Minnesota region US United States True \n",
"1 3855 Idaho region US United States True \n",
"2 3856 Illinois region US United States True \n",
"3 3864 Massachusetts region US United States True \n",
"4 3846 Arkansas region US United States True \n",
"5 3886 Texas region US United States True \n",
"6 3843 Alabama region US United States True \n",
"7 3882 Rhode Island region US United States True \n",
"8 3862 Maine region US United States True \n",
"9 3873 New Jersey region US United States True \n",
"\n",
" supports_city kml \n",
"0 True \n",
"\n",
"\n",
" \n",
" \n",
" | \n",
" name | \n",
" kml | \n",
" key | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" United States | \n",
" <Polygon><outerBoundaryIs><LinearRing><coordin... | \n",
" US | \n",
"
\n",
" \n",
"
\n",
""
],
"text/plain": [
" name kml key\n",
"0 United States \n",
"\n",
"\n",
" \n",
" \n",
" | \n",
" key | \n",
" name | \n",
" type | \n",
" country_code | \n",
" country_name | \n",
" region | \n",
" region_id | \n",
" supports_region | \n",
" supports_city | \n",
" geo_hierarchy_level | \n",
" geo_hierarchy_name | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" 2464828 | \n",
" Boston | \n",
" city | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" 1 | \n",
" 2731172 | \n",
" Readville | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 2 | \n",
" 2732785 | \n",
" West End | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 3 | \n",
" 2732101 | \n",
" Deer Island | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 4 | \n",
" 2732925 | \n",
" North End | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 5 | \n",
" 2466700 | \n",
" West New Boston | \n",
" subcity | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" SUBCITY | \n",
" CITY | \n",
"
\n",
" \n",
" 6 | \n",
" 2465869 | \n",
" New Boston | \n",
" city | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" 7 | \n",
" 2732248 | \n",
" Bellevue Hill | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 8 | \n",
" 2731737 | \n",
" Brook Farm | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 9 | \n",
" 2733152 | \n",
" Ashmont | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 10 | \n",
" 2733186 | \n",
" Boston Road | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 11 | \n",
" 3000616 | \n",
" Downtown Boston | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 12 | \n",
" 2731330 | \n",
" Bay Village | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 13 | \n",
" 2732351 | \n",
" Mission Hill | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 14 | \n",
" 2732536 | \n",
" Columbia Point | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 15 | \n",
" 2699666 | \n",
" Dorchester | \n",
" subcity | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" SUBCITY | \n",
" BOROUGH | \n",
"
\n",
" \n",
" 16 | \n",
" 2731848 | \n",
" South End | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 17 | \n",
" 2464696 | \n",
" Allston | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 18 | \n",
" 2733606 | \n",
" Back Bay | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 19 | \n",
" 2734017 | \n",
" Beacon Hill | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
" 20 | \n",
" 3005446 | \n",
" Fort Hill | \n",
" neighborhood | \n",
" US | \n",
" United States | \n",
" Massachusetts | \n",
" 3864 | \n",
" True | \n",
" True | \n",
" NEIGHBORHOOD | \n",
" NEIGHBORHOOD | \n",
"
\n",
" \n",
"
\n",
""
],
"text/plain": [
" key name type country_code country_name \\\n",
"0 2464828 Boston city US United States \n",
"1 2731172 Readville neighborhood US United States \n",
"2 2732785 West End neighborhood US United States \n",
"3 2732101 Deer Island neighborhood US United States \n",
"4 2732925 North End neighborhood US United States \n",
"5 2466700 West New Boston subcity US United States \n",
"6 2465869 New Boston city US United States \n",
"7 2732248 Bellevue Hill neighborhood US United States \n",
"8 2731737 Brook Farm neighborhood US United States \n",
"9 2733152 Ashmont neighborhood US United States \n",
"10 2733186 Boston Road neighborhood US United States \n",
"11 3000616 Downtown Boston neighborhood US United States \n",
"12 2731330 Bay Village neighborhood US United States \n",
"13 2732351 Mission Hill neighborhood US United States \n",
"14 2732536 Columbia Point neighborhood US United States \n",
"15 2699666 Dorchester subcity US United States \n",
"16 2731848 South End neighborhood US United States \n",
"17 2464696 Allston neighborhood US United States \n",
"18 2733606 Back Bay neighborhood US United States \n",
"19 2734017 Beacon Hill neighborhood US United States \n",
"20 3005446 Fort Hill neighborhood US United States \n",
"\n",
" region region_id supports_region supports_city \\\n",
"0 Massachusetts 3864 True True \n",
"1 Massachusetts 3864 True True \n",
"2 Massachusetts 3864 True True \n",
"3 Massachusetts 3864 True True \n",
"4 Massachusetts 3864 True True \n",
"5 Massachusetts 3864 True True \n",
"6 Massachusetts 3864 True True \n",
"7 Massachusetts 3864 True True \n",
"8 Massachusetts 3864 True True \n",
"9 Massachusetts 3864 True True \n",
"10 Massachusetts 3864 True True \n",
"11 Massachusetts 3864 True True \n",
"12 Massachusetts 3864 True True \n",
"13 Massachusetts 3864 True True \n",
"14 Massachusetts 3864 True True \n",
"15 Massachusetts 3864 True True \n",
"16 Massachusetts 3864 True True \n",
"17 Massachusetts 3864 True True \n",
"18 Massachusetts 3864 True True \n",
"19 Massachusetts 3864 True True \n",
"20 Massachusetts 3864 True True \n",
"\n",
" geo_hierarchy_level geo_hierarchy_name \n",
"0 NaN NaN \n",
"1 NEIGHBORHOOD NEIGHBORHOOD \n",
"2 NEIGHBORHOOD NEIGHBORHOOD \n",
"3 NEIGHBORHOOD NEIGHBORHOOD \n",
"4 NEIGHBORHOOD NEIGHBORHOOD \n",
"5 SUBCITY CITY \n",
"6 NaN NaN \n",
"7 NEIGHBORHOOD NEIGHBORHOOD \n",
"8 NEIGHBORHOOD NEIGHBORHOOD \n",
"9 NEIGHBORHOOD NEIGHBORHOOD \n",
"10 NEIGHBORHOOD NEIGHBORHOOD \n",
"11 NEIGHBORHOOD NEIGHBORHOOD \n",
"12 NEIGHBORHOOD NEIGHBORHOOD \n",
"13 NEIGHBORHOOD NEIGHBORHOOD \n",
"14 NEIGHBORHOOD NEIGHBORHOOD \n",
"15 SUBCITY BOROUGH \n",
"16 NEIGHBORHOOD NEIGHBORHOOD \n",
"17 NEIGHBORHOOD NEIGHBORHOOD \n",
"18 NEIGHBORHOOD NEIGHBORHOOD \n",
"19 NEIGHBORHOOD NEIGHBORHOOD \n",
"20 NEIGHBORHOOD NEIGHBORHOOD "
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# The function below queries the FB Graph API for \"cities\" that have \"bos\" in their names and are located\n",
"# in Massachusetts (region_id=3864), United States. \n",
"watcher.get_geo_locations_given_query_and_location_type(\"bos\", [\"city\"], country_code=\"US\", region_id=3864)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"As we can see, for the case of locations in the USA, the API version 9.0 retrieves cities, subcities and neighborhoods.\n",
"\n",
"Although we only asked for cities that contain (not necessarily starting with) the string _\"bos\"_ (Boston, New Boston), it also retrieved neighborhoods on these cities (e.g., Beacon Hill, Back Bay, South End in Boston)."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Build upon ``watcher.get_geo_locations_given_query_and_location_type``, the function ``watcher.get_all_cities_given_country_code`` will query Facebook for all the states in a country and then, for each state, it will query for all cities that contain an _\"a\"_, all the cities that contain a _\"b\"_ and so on.\n",
"\n",
"When many results are retrieved for a specific search, Facebook throws and an error instead of retrieving the results. In this situation, we are forced to narrow our search by including another letter in the current search. For example, if there are too many cities that contain an _\"a\"_ in a given state, we have to narrow our search by including a second letter, e.g., searching for all cities in that state that contain _\"aa\"_, _\"ab\"_, _\"ac\"_, and so on. Overall, this is a prolonged process but it just needs to be done once."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-24T10:40:32.508430Z",
"start_time": "2021-02-24T10:40:32.505893Z"
},
"scrolled": true
},
"outputs": [],
"source": [
"# This function takes a long time to process, use it carefully and save the results afterwards.\n",
"watcher.get_all_cities_given_country_code(\"US\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"(content:jsonbuilder)=\n",
"## JSONBuilder: building a json file for a collection with different desagregations (Locations, Age, Gender, etc)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"``JSONBuilder`` is the class used by `pySocialWatcher` to create a valid json file with all configuation required to start our data collection.\n",
"It requires a set of objects that need to be previously initialized (``LocationList``, ``AgeList`` and ``Genders``) and allows the configuation of some optional objects (``behavior_groups`` and ``scholarities``).\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Starting by ``LocationList``, a list of locations can be directly loaded from a dataframe like `df_cities` that we have previously created."
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:24:57.687550Z",
"start_time": "2021-02-01T16:24:57.663349Z"
}
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" city | \n",
" city_ascii | \n",
" lat | \n",
" lng | \n",
" country | \n",
" iso2 | \n",
" iso3 | \n",
" admin_name | \n",
" capital | \n",
" population | \n",
" id | \n",
" fb_query | \n",
" name | \n",
" key | \n",
" region | \n",
" region_id | \n",
" country_name | \n",
" country_code | \n",
" type | \n",
"
\n",
" \n",
" \n",
" \n",
" 0 | \n",
" Tokyo | \n",
" Tokyo | \n",
" 35.6850 | \n",
" 139.7514 | \n",
" Japan | \n",
" JP | \n",
" JPN | \n",
" Tōkyō | \n",
" primary | \n",
" 35676000.0 | \n",
" 1392685764 | \n",
" Tokyo | \n",
" Minato-ku | \n",
" 2880782 | \n",
" Tokyo | \n",
" 1922 | \n",
" Japan | \n",
" JP | \n",
" city | \n",
"
\n",
" \n",
" 1 | \n",
" New York | \n",
" New York | \n",
" 40.6943 | \n",
" -73.9249 | \n",
" United States | \n",
" US | \n",
" USA | \n",
" New York | \n",
" NaN | \n",
" 19354922.0 | \n",
" 1840034016 | \n",
" New York | \n",
" New York | \n",
" 2490299 | \n",
" New York | \n",
" 3875 | \n",
" United States | \n",
" US | \n",
" city | \n",
"
\n",
" \n",
" 2 | \n",
" Mexico City | \n",
" Mexico City | \n",
" 19.4424 | \n",
" -99.1310 | \n",
" Mexico | \n",
" MX | \n",
" MEX | \n",
" Ciudad de México | \n",
" primary | \n",
" 19028000.0 | \n",
" 1484247881 | \n",
" Mexico City | \n",
" Mexico City | \n",
" 2673660 | \n",
" Distrito Federal | \n",
" 2513 | \n",
" Mexico | \n",
" MX | \n",
" city | \n",
"
\n",
" \n",
" 3 | \n",
" Mumbai | \n",
" Mumbai | \n",
" 19.0170 | \n",
" 72.8570 | \n",
" India | \n",
" IN | \n",
" IND | \n",
" Mahārāshtra | \n",
" admin | \n",
" 18978000.0 | \n",
" 1356226629 | \n",
" Mumbai | \n",
" Mumbai | \n",
" 1035921 | \n",
" Maharashtra | \n",
" 1735 | \n",
" India | \n",
" IN | \n",
" city | \n",
"
\n",
" \n",
" 4 | \n",
" São Paulo | \n",
" Sao Paulo | \n",
" -23.5587 | \n",
" -46.6250 | \n",
" Brazil | \n",
" BR | \n",
" BRA | \n",
" São Paulo | \n",
" admin | \n",
" 18845000.0 | \n",
" 1076532519 | \n",
" São Paulo | \n",
" São Paulo | \n",
" 269969 | \n",
" São Paulo (state) | \n",
" 460 | \n",
" Brazil | \n",
" BR | \n",
" city | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" city city_ascii lat lng country iso2 iso3 \\\n",
"0 Tokyo Tokyo 35.6850 139.7514 Japan JP JPN \n",
"1 New York New York 40.6943 -73.9249 United States US USA \n",
"2 Mexico City Mexico City 19.4424 -99.1310 Mexico MX MEX \n",
"3 Mumbai Mumbai 19.0170 72.8570 India IN IND \n",
"4 São Paulo Sao Paulo -23.5587 -46.6250 Brazil BR BRA \n",
"\n",
" admin_name capital population id fb_query \\\n",
"0 Tōkyō primary 35676000.0 1392685764 Tokyo \n",
"1 New York NaN 19354922.0 1840034016 New York \n",
"2 Ciudad de México primary 19028000.0 1484247881 Mexico City \n",
"3 Mahārāshtra admin 18978000.0 1356226629 Mumbai \n",
"4 São Paulo admin 18845000.0 1076532519 São Paulo \n",
"\n",
" name key region region_id country_name \\\n",
"0 Minato-ku 2880782 Tokyo 1922 Japan \n",
"1 New York 2490299 New York 3875 United States \n",
"2 Mexico City 2673660 Distrito Federal 2513 Mexico \n",
"3 Mumbai 1035921 Maharashtra 1735 India \n",
"4 São Paulo 269969 São Paulo (state) 460 Brazil \n",
"\n",
" country_code type \n",
"0 JP city \n",
"1 US city \n",
"2 MX city \n",
"3 IN city \n",
"4 BR city "
]
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df_cities"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The required columns are ``key`` (with the FB Ids) and ``name``. Other colunms like ``region_id`` and ``country_code`` can be loaded as well if they are available."
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:24:59.049112Z",
"start_time": "2021-02-01T16:24:59.034081Z"
}
},
"outputs": [],
"source": [
"loclist = LocationList()\n",
"loclist.get_location_list_from_df(df_cities)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The gender and age groups that we are interested and can be espcified simply as follows:"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:25:00.236335Z",
"start_time": "2021-02-01T16:25:00.232462Z"
}
},
"outputs": [],
"source": [
"# Age Groups\n",
"ageList = AgeList()\n",
"ageList.add(Age(18, None))\n",
"ageList.add(Age(18, 40))\n",
"ageList.add(Age(41, 54))\n",
"ageList.add(Age(55, None))\n",
"\n",
"# Gender\n",
"genders = Genders(male=True, female=True, combined=True)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Two predefined user behaviors are supported by `pySocialWatcher`:\n",
"- **'connectivity'**: retrieves information on the primarily network used by people to connect to Facebook. Options are 2G, 3G, 4G or Wifi.\n",
"- **'phones'**: retrieves information on the kind of mobile device primarily used to connect to Facebook. Options are iOS, Android, or other."
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:25:01.528057Z",
"start_time": "2021-02-01T16:25:01.525889Z"
}
},
"outputs": [],
"source": [
"connetivity = get_predefined_behavior(option=\"connectivity\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we just need to put everything together in the `JSONBuilder` object and save it to a file with the function ``jsonfy``."
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-01T16:25:02.804305Z",
"start_time": "2021-02-01T16:25:02.786284Z"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Created file top5_cities.json.\n"
]
},
{
"data": {
"text/plain": [
"{'name': 'test',\n",
" 'geo_locations': [{'name': 'cities',\n",
" 'values': [{'key': 2880782,\n",
" 'region': 'Tokyo',\n",
" 'region_id': 1922,\n",
" 'country_code': 'JP',\n",
" 'name': 'Minato-ku',\n",
" 'distance_unit': 'kilometer',\n",
" 'radius': 0}],\n",
" 'location_types': ['home', 'recent']},\n",
" {'name': 'cities',\n",
" 'values': [{'key': 2490299,\n",
" 'region': 'New York',\n",
" 'region_id': 3875,\n",
" 'country_code': 'US',\n",
" 'name': 'New York',\n",
" 'distance_unit': 'kilometer',\n",
" 'radius': 0}],\n",
" 'location_types': ['home', 'recent']},\n",
" {'name': 'cities',\n",
" 'values': [{'key': 2673660,\n",
" 'region': 'Distrito Federal',\n",
" 'region_id': 2513,\n",
" 'country_code': 'MX',\n",
" 'name': 'Mexico City',\n",
" 'distance_unit': 'kilometer',\n",
" 'radius': 0}],\n",
" 'location_types': ['home', 'recent']},\n",
" {'name': 'cities',\n",
" 'values': [{'key': 1035921,\n",
" 'region': 'Maharashtra',\n",
" 'region_id': 1735,\n",
" 'country_code': 'IN',\n",
" 'name': 'Mumbai',\n",
" 'distance_unit': 'kilometer',\n",
" 'radius': 0}],\n",
" 'location_types': ['home', 'recent']},\n",
" {'name': 'cities',\n",
" 'values': [{'key': 269969,\n",
" 'region': 'São Paulo (state)',\n",
" 'region_id': 460,\n",
" 'country_code': 'BR',\n",
" 'name': 'São Paulo',\n",
" 'distance_unit': 'kilometer',\n",
" 'radius': 0}],\n",
" 'location_types': ['home', 'recent']}],\n",
" 'ages_ranges': [{'min': 18},\n",
" {'min': 18, 'max': 40},\n",
" {'min': 41, 'max': 54},\n",
" {'min': 55}],\n",
" 'genders': [0, 1, 2],\n",
" 'behavior': {'access_device': [{'name': '2G', 'or': [6017253486583]},\n",
" {'name': '3G', 'or': [6017253511583]},\n",
" {'name': '4G', 'or': [6017253531383]},\n",
" {'name': 'Wifi', 'or': [6015235495383]},\n",
" None]}}"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"jsonb = JSONBuilder(name=\"test\", age_list=ageList, location_list=loclist, \n",
" genders=genders, behavior_groups=connetivity)\n",
"\n",
"jsonb.jsonfy(\"top5_cities.json\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"That is it. If everything went file, we can start our collection with the file above.\n",
"Eventually, manual adjustments will be needed, but `JSONBuild` does already a great part of the work."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"ExecuteTime": {
"end_time": "2021-02-24T11:34:22.354270Z",
"start_time": "2021-02-24T11:28:02.075306Z"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:28:02 donna root[119238] INFO Building Collection Dataframe\n",
"2021-02-24 14:28:02 donna root[119238] WARNING Field not expecified: interests\n",
"2021-02-24 14:28:02 donna root[119238] WARNING Field not expecified: scholarities\n",
"2021-02-24 14:28:02 donna root[119238] WARNING Field not expecified: languages\n",
"2021-02-24 14:28:02 donna root[119238] WARNING Field not expecified: family_statuses\n",
"2021-02-24 14:28:02 donna root[119238] WARNING Field not expecified: relationship_statuses\n",
"2021-02-24 14:28:02 donna root[119238] WARNING Field not expecified: household_composition\n",
"2021-02-24 14:28:02 donna root[119238] INFO Total API Requests:300\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 0.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 0.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 0.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 1.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 1.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 1.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 2.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 2.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 2.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 3.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 3.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 3.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 4.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 4.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 4.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 5.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 5.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 5.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 6.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 6.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 6.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 7.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 7.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 7.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 8.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 8.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 8.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 9.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 9.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 9.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 10.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 10.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 10.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 11.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 11.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 11.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 12.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 12.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 12.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 13.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 13.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 13.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 14.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 14.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 14.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 15.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 15.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 15.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 16.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 16.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 16.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 17.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 17.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 17.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 18.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 18.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 18.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 19.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 19.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 19.67\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 20.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 20.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 20.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 21.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 21.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 21.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 22.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 22.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 22.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 23.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 23.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 23.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 24.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 24.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 24.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 25.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 25.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 25.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 26.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 26.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 26.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 27.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 27.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 27.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 28.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 28.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 28.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 29.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 29.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 29.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 30.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 30.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 30.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 31.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 31.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 31.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 32.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 32.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 32.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 33.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 33.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 33.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 34.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 34.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 34.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 35.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 35.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 35.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 36.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 36.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 36.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 37.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 37.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 37.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 38.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 38.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 38.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 39.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 39.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 39.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 40.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 40.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 40.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 41.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 41.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 41.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 42.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 42.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 42.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 43.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 43.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 43.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 44.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 44.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 44.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 45.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 45.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 45.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 46.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 46.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 46.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 47.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 47.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 47.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 48.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 48.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 48.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 49.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 49.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 49.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 50.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 50.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 50.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 51.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 51.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 51.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 52.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 52.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 52.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 53.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 53.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 53.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 54.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 54.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 54.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 55.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 55.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 55.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 56.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 56.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 56.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 57.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 57.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 57.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 58.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 58.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 58.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 59.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 59.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 59.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 60.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 60.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 60.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 61.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 61.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 61.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 62.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 62.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 62.67\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 63.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 63.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 63.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 64.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 64.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 64.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 65.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 65.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 65.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 66.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 66.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 66.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 67.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 67.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 67.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 68.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 68.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 68.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 69.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 69.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 69.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 70.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 70.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 70.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 71.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 71.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 71.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 72.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 72.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 72.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 73.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 73.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 73.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 74.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 74.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 74.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 75.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 75.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 75.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 76.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 76.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 76.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 77.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 77.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 77.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 78.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 78.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 78.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 79.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 79.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 79.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 80.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 80.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 80.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 81.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 81.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 81.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 82.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 82.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 82.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 83.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 83.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 83.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 84.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 84.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 84.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 85.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 85.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 85.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 86.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 86.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 86.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 87.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 87.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 87.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 88.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 88.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 88.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 89.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 89.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 89.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 90.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 90.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 90.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 91.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 91.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 91.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 92.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 92.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 92.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 93.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 93.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 93.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 94.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 94.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 94.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 95.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 95.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 95.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 96.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 96.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 96.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 97.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 97.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 97.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 98.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 98.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 98.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 99.00\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 99.33\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Completed: 99.67\n",
"2021-02-24 14:28:02 donna root[119238] WARNING No field: languages\n",
"2021-02-24 14:28:02 donna root[119238] INFO Saving Skeleton file: dataframe_skeleton_1614166082.csv.gz\n",
"2021-02-24 14:28:02 donna root[119238] INFO Collecting... Completed: 0.00% , 0/300\n",
"2021-02-24 14:28:02 donna root[119277] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:03 donna root[119283] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:05 donna root[119290] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:28:06 donna root[119296] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:07 donna root[119302] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:08 donna root[119238] INFO Collecting... Completed: 1.67% , 5/300\n",
"2021-02-24 14:28:08 donna root[119324] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:10 donna root[119331] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:11 donna root[119337] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:13 donna root[119378] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:14 donna root[119388] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:15 donna root[119238] INFO Collecting... Completed: 3.33% , 10/300\n",
"2021-02-24 14:28:16 donna root[119418] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:18 donna root[119424] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:19 donna root[119438] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:20 donna root[119444] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:22 donna root[119458] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:28:23 donna root[119238] INFO Collecting... Completed: 5.00% , 15/300\n",
"2021-02-24 14:28:23 donna root[119487] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:24 donna root[119496] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:25 donna root[119504] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:26 donna root[119523] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:28 donna root[119530] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:29 donna root[119238] INFO Collecting... Completed: 6.67% , 20/300\n",
"2021-02-24 14:28:29 donna root[119544] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:31 donna root[119551] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:33 donna root[119568] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:34 donna root[119576] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:35 donna root[119583] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:36 donna root[119238] INFO Collecting... Completed: 8.33% , 25/300\n",
"2021-02-24 14:28:36 donna root[119598] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:38 donna root[119604] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:28:39 donna root[119618] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:40 donna root[119624] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:41 donna root[119631] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:42 donna root[119238] INFO Collecting... Completed: 10.00% , 30/300\n",
"2021-02-24 14:28:42 donna root[119645] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:43 donna root[119652] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:45 donna root[119658] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:46 donna root[119665] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:47 donna root[119671] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:48 donna root[119238] INFO Collecting... Completed: 11.67% , 35/300\n",
"2021-02-24 14:28:48 donna root[119685] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:50 donna root[119691] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:51 donna root[119697] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:52 donna root[119703] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:28:53 donna root[119709] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:54 donna root[119238] INFO Collecting... Completed: 13.33% , 40/300\n",
"2021-02-24 14:28:54 donna root[119723] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:56 donna root[119755] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:57 donna root[119794] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:28:59 donna root[119801] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:00 donna root[119812] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:01 donna root[119238] INFO Collecting... Completed: 15.00% , 45/300\n",
"2021-02-24 14:29:01 donna root[119827] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:03 donna root[119834] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:04 donna root[119845] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:05 donna root[119854] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:06 donna root[119860] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:07 donna root[119238] INFO Collecting... Completed: 16.67% , 50/300\n",
"2021-02-24 14:29:08 donna root[119891] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:29:10 donna root[119904] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:11 donna root[119910] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:12 donna root[119917] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:13 donna root[119923] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:14 donna root[119238] INFO Collecting... Completed: 18.33% , 55/300\n",
"2021-02-24 14:29:14 donna root[119938] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:16 donna root[119977] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:17 donna root[119983] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:18 donna root[119992] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:19 donna root[120003] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:20 donna root[119238] INFO Collecting... Completed: 20.00% , 60/300\n",
"2021-02-24 14:29:20 donna root[120017] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:21 donna root[120023] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:22 donna root[120031] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:29:23 donna root[120058] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:24 donna root[120068] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:26 donna root[119238] INFO Collecting... Completed: 21.67% , 65/300\n",
"2021-02-24 14:29:26 donna root[120084] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:27 donna root[120094] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:29 donna root[120100] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:30 donna root[120119] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:31 donna root[120125] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:32 donna root[119238] INFO Collecting... Completed: 23.33% , 70/300\n",
"2021-02-24 14:29:32 donna root[120145] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:33 donna root[120153] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:34 donna root[120161] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:35 donna root[120167] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:36 donna root[120174] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:29:38 donna root[119238] INFO Collecting... Completed: 25.00% , 75/300\n",
"2021-02-24 14:29:38 donna root[120193] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:39 donna root[120202] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:41 donna root[120208] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:43 donna root[120227] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:44 donna root[120233] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:45 donna root[119238] INFO Collecting... Completed: 26.67% , 80/300\n",
"2021-02-24 14:29:45 donna root[120248] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:46 donna root[120254] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:47 donna root[120263] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:48 donna root[120277] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:49 donna root[120283] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:51 donna root[119238] INFO Collecting... Completed: 28.33% , 85/300\n",
"2021-02-24 14:29:51 donna root[120297] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:52 donna root[120320] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:29:53 donna root[120328] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:54 donna root[120343] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:55 donna root[120349] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:56 donna root[119238] INFO Collecting... Completed: 30.00% , 90/300\n",
"2021-02-24 14:29:56 donna root[120364] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:57 donna root[120370] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:58 donna root[120376] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:29:59 donna root[120387] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:01 donna root[120396] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:03 donna root[119238] INFO Collecting... Completed: 31.67% , 95/300\n",
"2021-02-24 14:30:03 donna root[120410] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:04 donna root[120416] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:06 donna root[120424] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:08 donna root[120430] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:30:10 donna root[120447] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:11 donna root[119238] INFO Collecting... Completed: 33.33% , 100/300\n",
"2021-02-24 14:30:11 donna root[120462] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:12 donna root[120469] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:14 donna root[120475] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:15 donna root[120481] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:16 donna root[120488] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:17 donna root[119238] INFO Collecting... Completed: 35.00% , 105/300\n",
"2021-02-24 14:30:17 donna root[120502] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:18 donna root[120508] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:19 donna root[120514] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:20 donna root[120537] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:21 donna root[120543] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:23 donna root[119238] INFO Collecting... Completed: 36.67% , 110/300\n",
"2021-02-24 14:30:23 donna root[120557] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:30:25 donna root[120564] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:26 donna root[120570] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:27 donna root[120576] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:28 donna root[120582] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:29 donna root[119238] INFO Collecting... Completed: 38.33% , 115/300\n",
"2021-02-24 14:30:29 donna root[120597] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:30 donna root[120610] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:32 donna root[120641] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:34 donna root[120648] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:35 donna root[120655] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:36 donna root[119238] INFO Collecting... Completed: 40.00% , 120/300\n",
"2021-02-24 14:30:36 donna root[120670] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:37 donna root[120678] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:38 donna root[120685] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:30:40 donna root[120709] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:41 donna root[120717] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:42 donna root[119238] INFO Collecting... Completed: 41.67% , 125/300\n",
"2021-02-24 14:30:42 donna root[120733] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:43 donna root[120742] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:45 donna root[120751] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:46 donna root[120758] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:47 donna root[120771] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:48 donna root[119238] INFO Collecting... Completed: 43.33% , 130/300\n",
"2021-02-24 14:30:48 donna root[120794] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:50 donna root[120812] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:51 donna root[120818] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:52 donna root[120825] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:53 donna root[120837] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:30:55 donna root[119238] INFO Collecting... Completed: 45.00% , 135/300\n",
"2021-02-24 14:30:55 donna root[120851] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:56 donna root[120857] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:57 donna root[120875] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:30:58 donna root[120890] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:00 donna root[120896] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:01 donna root[119238] INFO Collecting... Completed: 46.67% , 140/300\n",
"2021-02-24 14:31:01 donna root[120910] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:02 donna root[120916] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:03 donna root[120922] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:04 donna root[120928] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:06 donna root[120935] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:07 donna root[119238] INFO Collecting... Completed: 48.33% , 145/300\n",
"2021-02-24 14:31:07 donna root[120972] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:08 donna root[120980] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:31:09 donna root[120996] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:10 donna root[121003] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:12 donna root[121022] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 18, \"age_max\": 40, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:13 donna root[119238] INFO Collecting... Completed: 50.00% , 150/300\n",
"2021-02-24 14:31:13 donna root[121048] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:14 donna root[121056] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:15 donna root[121093] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:16 donna root[121102] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:18 donna root[121108] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:19 donna root[119238] INFO Collecting... Completed: 51.67% , 155/300\n",
"2021-02-24 14:31:19 donna root[121130] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:21 donna root[121136] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:22 donna root[121142] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:25 donna root[121169] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:31:27 donna root[121175] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:28 donna root[119238] INFO Collecting... Completed: 53.33% , 160/300\n",
"2021-02-24 14:31:28 donna root[121193] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:30 donna root[121199] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:31 donna root[121205] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:32 donna root[121224] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:33 donna root[121240] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:34 donna root[119238] INFO Collecting... Completed: 55.00% , 165/300\n",
"2021-02-24 14:31:34 donna root[121254] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:35 donna root[121261] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:37 donna root[121268] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:38 donna root[121274] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:39 donna root[121280] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:40 donna root[119238] INFO Collecting... Completed: 56.67% , 170/300\n",
"2021-02-24 14:31:40 donna root[121300] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:31:41 donna root[121306] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:42 donna root[121312] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:44 donna root[121318] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:46 donna root[121326] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:47 donna root[119238] INFO Collecting... Completed: 58.33% , 175/300\n",
"2021-02-24 14:31:47 donna root[121340] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:49 donna root[121400] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:50 donna root[121406] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:51 donna root[121412] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:53 donna root[121419] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:54 donna root[119238] INFO Collecting... Completed: 60.00% , 180/300\n",
"2021-02-24 14:31:54 donna root[121433] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:56 donna root[121439] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:31:57 donna root[121484] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:31:59 donna root[121501] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:00 donna root[121508] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:01 donna root[119238] INFO Collecting... Completed: 61.67% , 185/300\n",
"2021-02-24 14:32:01 donna root[121523] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:03 donna root[121529] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:05 donna root[121536] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:06 donna root[121542] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:07 donna root[121548] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:09 donna root[119238] INFO Collecting... Completed: 63.33% , 190/300\n",
"2021-02-24 14:32:09 donna root[121574] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:10 donna root[121580] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:11 donna root[121586] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:12 donna root[121592] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:13 donna root[121598] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:32:14 donna root[119238] INFO Collecting... Completed: 65.00% , 195/300\n",
"2021-02-24 14:32:14 donna root[121614] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:15 donna root[121621] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:16 donna root[121627] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:17 donna root[121633] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:19 donna root[121652] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:20 donna root[119238] INFO Collecting... Completed: 66.67% , 200/300\n",
"2021-02-24 14:32:20 donna root[121673] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:21 donna root[121679] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:22 donna root[121685] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:23 donna root[121697] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:24 donna root[121713] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:25 donna root[119238] INFO Collecting... Completed: 68.33% , 205/300\n",
"2021-02-24 14:32:25 donna root[121735] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:27 donna root[121741] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:32:28 donna root[121752] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:29 donna root[121759] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:30 donna root[121791] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:32 donna root[119238] INFO Collecting... Completed: 70.00% , 210/300\n",
"2021-02-24 14:32:32 donna root[121805] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:33 donna root[121820] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:34 donna root[121827] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:35 donna root[121833] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:36 donna root[121840] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:38 donna root[119238] INFO Collecting... Completed: 71.67% , 215/300\n",
"2021-02-24 14:32:38 donna root[121862] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:40 donna root[121868] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:41 donna root[121875] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:42 donna root[121881] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:32:43 donna root[121887] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:44 donna root[119238] INFO Collecting... Completed: 73.33% , 220/300\n",
"2021-02-24 14:32:44 donna root[121903] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:45 donna root[121910] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:47 donna root[121916] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:48 donna root[121923] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:49 donna root[121930] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 41, \"age_max\": 54, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:50 donna root[119238] INFO Collecting... Completed: 75.00% , 225/300\n",
"2021-02-24 14:32:50 donna root[121944] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:51 donna root[121950] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:52 donna root[121956] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:53 donna root[121962] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:54 donna root[121968] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:56 donna root[119238] INFO Collecting... Completed: 76.67% , 230/300\n",
"2021-02-24 14:32:56 donna root[121982] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:32:57 donna root[121988] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:32:59 donna root[121995] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:00 donna root[122004] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:01 donna root[122011] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:03 donna root[119238] INFO Collecting... Completed: 78.33% , 235/300\n",
"2021-02-24 14:33:03 donna root[122025] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:04 donna root[122035] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:05 donna root[122041] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:06 donna root[122061] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:07 donna root[122076] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:08 donna root[119238] INFO Collecting... Completed: 80.00% , 240/300\n",
"2021-02-24 14:33:08 donna root[122103] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:09 donna root[122133] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:10 donna root[122140] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:33:12 donna root[122146] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:13 donna root[122182] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:14 donna root[119238] INFO Collecting... Completed: 81.67% , 245/300\n",
"2021-02-24 14:33:14 donna root[122204] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:16 donna root[122217] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:17 donna root[122223] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:18 donna root[122243] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:19 donna root[122262] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [0], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:20 donna root[119238] INFO Collecting... Completed: 83.33% , 250/300\n",
"2021-02-24 14:33:20 donna root[122276] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:21 donna root[122288] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:22 donna root[122294] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:23 donna root[122301] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:24 donna root[122309] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:33:26 donna root[119238] INFO Collecting... Completed: 85.00% , 255/300\n",
"2021-02-24 14:33:26 donna root[122329] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:27 donna root[122343] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:28 donna root[122349] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:29 donna root[122355] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:30 donna root[122361] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:31 donna root[119238] INFO Collecting... Completed: 86.67% , 260/300\n",
"2021-02-24 14:33:31 donna root[122377] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:32 donna root[122391] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:33 donna root[122397] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:35 donna root[122404] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:36 donna root[122410] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:37 donna root[119238] INFO Collecting... Completed: 88.33% , 265/300\n",
"2021-02-24 14:33:37 donna root[122425] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:38 donna root[122431] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:33:39 donna root[122437] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:40 donna root[122444] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:41 donna root[122451] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:43 donna root[119238] INFO Collecting... Completed: 90.00% , 270/300\n",
"2021-02-24 14:33:43 donna root[122467] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:44 donna root[122474] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:45 donna root[122481] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:46 donna root[122488] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:47 donna root[122494] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [1], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:49 donna root[119238] INFO Collecting... Completed: 91.67% , 275/300\n",
"2021-02-24 14:33:49 donna root[122508] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:50 donna root[122514] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:51 donna root[122520] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:53 donna root[122526] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:33:54 donna root[122532] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253486583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:55 donna root[119238] INFO Collecting... Completed: 93.33% , 280/300\n",
"2021-02-24 14:33:55 donna root[122550] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:57 donna root[122556] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:58 donna root[122562] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:33:59 donna root[122568] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:00 donna root[122575] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253511583}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:01 donna root[119238] INFO Collecting... Completed: 95.00% , 285/300\n",
"2021-02-24 14:34:02 donna root[122589] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:03 donna root[122595] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:04 donna root[122609] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:05 donna root[122615] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:06 donna root[122621] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6017253531383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:07 donna root[119238] INFO Collecting... Completed: 96.67% , 290/300\n",
"2021-02-24 14:34:07 donna root[122635] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"2021-02-24 14:34:08 donna root[122648] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:09 donna root[122654] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:11 donna root[122661] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:13 donna root[122668] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [{\"behaviors\": [{\"id\": 6015235495383}]}], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:14 donna root[119238] INFO Collecting... Completed: 98.33% , 295/300\n",
"2021-02-24 14:34:14 donna root[122682] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2880782, \"region\": \"Tokyo\", \"region_id\": 1922, \"country_code\": \"JP\", \"name\": \"Minato-ku\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:16 donna root[122689] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2490299, \"region\": \"New York\", \"region_id\": 3875, \"country_code\": \"US\", \"name\": \"New York\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:18 donna root[122696] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 2673660, \"region\": \"Distrito Federal\", \"region_id\": 2513, \"country_code\": \"MX\", \"name\": \"Mexico City\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:19 donna root[122703] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 1035921, \"region\": \"Maharashtra\", \"region_id\": 1735, \"country_code\": \"IN\", \"name\": \"Mumbai\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:21 donna root[122709] WARNING \tSending in request: {'optimization_goal': 'AD_RECALL_LIFT', 'targeting_spec': '{\"geo_locations\": {\"cities\": [{\"key\": 269969, \"region\": \"S\\\\u00e3o Paulo (state)\", \"region_id\": 460, \"country_code\": \"BR\", \"name\": \"S\\\\u00e3o Paulo\", \"distance_unit\": \"kilometer\", \"radius\": 0}], \"location_types\": [\"home\", \"recent\"]}, \"age_min\": 55, \"age_max\": null, \"genders\": [2], \"flexible_spec\": [], \"publisher_platforms\": [\"facebook\"]}', 'access_token': 'EAADcl9NIKZA8BAPiVlptdedZAEr01n3NxXmXfaNIr6UslC9TpkHRGX8bjDLgZAYJB4BzVtBP6QZBHodRvOU4lC3XZCjXevBZAdjv8SkEFCsGR8ASp8iXjtPW9YI0fOOMqnweawHtARM0qGRvVb9QRu96R6jSdACAM9bSYvrVoZCegKvo8XGcsB2GYrmZAFp9hZBIZD'}\n",
"2021-02-24 14:34:22 donna root[119238] INFO Saving temporary file: dataframe_collecting_1614166082.csv.gz\n",
"2021-02-24 14:34:22 donna root[119238] INFO Data Collection Complete\n",
"2021-02-24 14:34:22 donna root[119238] INFO Saving temporary file: dataframe_collecting_1614166082.csv.gz\n",
"2021-02-24 14:34:22 donna root[119238] INFO Computing Audience and DAU column\n",
"2021-02-24 14:34:22 donna root[119238] INFO Saving after collecting file: output_psw_top5_cities.csv\n"
]
}
],
"source": [
"# Now we can start a data collection with the following lines of code:\n",
"watcher = watcherAPI(api_version=\"9.0\", sleep_time=5, outputname=\"output_psw_top5_cities.csv\") \n",
"watcher.load_credentials_file(\"credentials.csv\")\n",
"df = watcher.run_data_collection(\"top5_cities.json\", remove_tmp_files=True)\n",
"\n",
"# This collection has 300 API calls and to speed up, we are using sleep_time = 5."
]
},
{
"cell_type": "markdown",
"metadata": {
"ExecuteTime": {
"end_time": "2020-09-23T04:16:40.767769Z",
"start_time": "2020-09-23T04:16:40.688246Z"
}
},
"source": [
"In the [next notebook](content:post_process_collection), we will see how to post-process this collection to a human readable format. "
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.3"
}
},
"nbformat": 4,
"nbformat_minor": 4
}