Data source: simonw/russian-ira-facebook-ads-datasette
This data as JSON, CSV (advanced)
id | img | targeting | impressions | clicks | url | text | spend_usd | spend_amount | spend_currency | created | ended |
---|---|---|---|---|---|---|---|---|---|---|---|
786 | ![]() |
location:United States, interests:Martin Luther King, interests:Police Brutality is a Crime, interests:African-American culture, interests:African-American Civil Rights Movement (1954—68), interests:African-American history, interests:Police brutality in the United States, interests:Stop Police Brutality, interests:Malcolm X, interests:Union of Huffington Post Writers and Bloggers, age:18 — 50, placements:News Feed on desktop computers, placements:News Feed on mobile devices | 0 | 0 | https://www.facebook.com/WiIliamsKalvin-788980617892144/ | You are no longer safe and sound even in your own house. You can be killed without a reason even if you commityted no crime. You will see no mercy even if you are a pregnant woman, a black pregnant woman. Subscribe to our Channel: https://www.youtube.oom/channel/UCszPCwUDPvDCRGVRaOthg Follow my Facebook: https://www.facebook.com/WilliamsandKalvin Follow me on Instagram: https://www.instagram.com/williams.and.kalvin Follow me on Twitter: https://twitter.comNViIliams8kalvin | 0.0 | 0.00 | USD | 2016-11-01T06:05:06-07:00 |
CREATE VIEW display_ads AS select ads.id, case when image is not null then json_object("img_src", "https://raw.githubusercontent.com/umd-mith/irads/master/site/" || image, "width", 200) else "no image" end as img, json_group_array( json_object( "label", targets.name, "href", "/russian-ads/display_ads?_target=" || urllib_quote_plus(targets.id) ) ) as targeting, ads.impressions, ads.clicks, ads.url, ads.text, cast(case when ads.spend_currency == "RUB" then ads.spend_amount * 0.016 else ads.spend_amount end as float) as spend_usd, ads.spend_amount, ads.spend_currency, ads.created, ads.ended from ads join ad_targets on ads.id = ad_targets.ad_id join targets on ad_targets.target_id = targets.id group by ads.id order by ads.id