Twitter search tweets query utils - Kribouille/IM_project GitHub Wiki
Example of queries needed in our project
-
Get tweets from an author
{q : from:tomhanks}
-
Get tweets containing the text tomhanks
{q : tomhanks}
-
Get tweets from hashtag
{q : #tomhanks}
-
Get tweets NOT containing tomhanks but containing "inferno"
{q : -tomhanks inferno}
(or{q : inferno -tomhanks}
) Just mention "-SOMETHING" in a query is forbidden by Twitter. We have to put something before or after the word removed. -
Get tweets from tomhanks AND containing tomhanks
{q : from:tomhanks tomhanks}
-
Get tweets from tomhanks OR containing tomhanks
{q : from:tomhanks OR tomhanks}
-
Get tweets from tomhanks OR containing tomhanks AND containing "bridge of spies"
{q : from:tomhanks OR (tomhanks bridge of spies)}
Other possibilities : https://unionmetrics.com/resources/how-to-use-advanced-twitter-search-queries/