• Stars
    star
    104
  • Rank 330,604 (Top 7 %)
  • Language
    Python
  • License
    GNU General Publi...
  • Created almost 11 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Twitter stream + search API grabber

DOI

logo logo

A command line tool for long-term tweets collection. Gazouilloire combines two methods to collect tweets from the Twitter API ("search" and "filter") in order to maximize the number of collected tweets, and automatically fills the gaps in the collection in case of connexion errors or reboots. It handles various config options such as:

Python >= 3.7 compatible.

Your Twitter API keys must have been created before April 29, 2022, in order to fully use the tool. If your keys were created after that date, Gazouilloire will work with the "search" endpoint only, and not the "filter". See Twitter's documentation about this issue.

Summary

Installation

  • Install gazouilloire

    pip install gazouilloire
  • Install ElasticSearch, version 7.X (you can also use Docker for this)

  • Init gazouilloire collection in a specific directory...

    gazou init path/to/collection/directory
  • ...or in the current directory

    gazou init

a config.json file is created. Open it to configure the collection parameters.

Quick start

  • Set your Twitter API key and generate the related Access Token

    "twitter": {
        "key": "<Consumer Key (API Key)>xxxxxxxxxxxxxxxxxxxxx",
        "secret": "<Consumer Secret (API Secret)>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
        "oauth_token": "<Access Token>xxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
        "oauth_secret": "<Access Token Secret>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    }
    
  • Set your ElasticSearch connection (host & port) within the database section and choose a database name that will host your corpus' index:

    "database": {
        "host": "localhost",
        "port": 9200,
        "db_name": "medialab-tweets"
    }

Note that ElasticSearch's databases names must be lowercased and without any space or accented character.

  • Write down the list of desired keywords and @users and/or the list of desired url_pieces as json arrays:

    "keywords": [
        "amour",
        "\"mots successifs\"",
        "@medialab_scpo"
    ],
    "url_pieces": [
        "medialab.sciencespo.fr/fr"
    ],

    Read below the advanced settings section to setup more filters and options or to get precisions on how to properly write your queries within keywords.

  • Start the collection by typing the following command in your terminal:

    gazou run

    or, if the config file is located in another directory than the current one:

    gazou run path/to/collection/directory

    Read below the daemon section to let gazouilloire run continuously on a server and how to set up automatic restarts.

Disk space

Before starting the collection, you should make sure that you will have enough disk space. It takes about 1GB per million tweets collected (without images and other media contents).

You should also consider starting gazouilloire in multi-index mode if the collection is planed to exceed 100 million tweets, or simply restart your collection in a new folder and a new db_name (i.e. open another ElasticSearch index) if the current collection exceeds 150 million tweets.

As a point of comparison, here is the number of tweets sent during the whole year 2021 containing certain keywords (the values were obtained with the API V2 tweets count endpoint):

Query Number of tweets in 2021
lemondefr lang:fr 3 million
macron lang:fr 21 million
vaccine 176 million

Export the tweets in CSV format

Data is stored in your ElasticSearch, which you can direcly query. But you can also export it easily in CSV format:

# Export all fields from all tweets, sorted in chronological order:
gazou export

Sort tweets

By default, tweets are sorted in chronological order, using the "timestamp_utc" field. However, you can speed-up the export by specifying that you do not need any sort order:

gazou export --sort no

You can also sort tweets using one or several other sorting keys:

gazou export --sort collection_time

gazou export --sort user_id,user_screen_name

Please note that:

  • Sorting by "id" is not possible.
  • Sorting by long textual fields (links, place_name, proper_links, text, url, user_description, user_image, user_location, user_url) is not possible.
  • Sorting by other id fields such as "user_id" or "retweeted_id" will sort these fields in alphabetical order (100, 101, 1000, 99) and not numerical.
  • Sorting by plural fields (e.g. mentions, hashtags, domains) may produce unexpected results.
  • Sorting by several fields may strongly increase export time.

Write into a file

By default, the export command writes in stdout. You can also use the -o option to write into a file:

gazou export > my_tweets_file.csv
# is equivalent to
gazou export -o my_tweets_file.csv

Although if you interrupt the export and need to resume it to complete in multiple sequences, only the -o option will work with the --resume option.

Query specific keywords

Export all tweets containing "medialab" in the text field:

gazou export medialab

The search engine is not case sensitive and it escapes # or @: gazou export sciencespo will export tweets containing "@sciencespo" or "#SciencesPo". However, it is sensitive to accents: gazou export medialab will not return tweets containing "médialab".

Use lucene query syntax with the --lucene option in order to write more complex queries:

  • Use AND / OR:
    gazou export --lucene '(medialab OR médialab) AND ("Sciences Po" OR sciencespo)'

(note that queries containg AND or OR will be considered in lucene style even if you do not use the --lucene option)

  • Query other fields than the text of the tweets:
    gazou export --lucene user_location:paris
  • Query tweets containing non-empty fields:
    gazou export --lucene place_country_code:*
  • Query tweets containing empty fields:
    gazou export --lucene 'NOT retweeted_id:*'
    # (this is equivalent to:)
    gazou export --exclude-retweets
  • Note that single quotes will not match exact phrases:
    gazou export --lucene "NewYork OR \"New York\"" #match tweets containing "New York" or "NewYork"
    gazou export --lucene "NewYork OR 'New York'" #match tweets containing "New" or "York" or "NewYork"

Other available options:

# Get documentation for all options of gazou export (-h or --help)
gazou export -h

# By default, the export will show a progressbar, which you can disable like this:
gazou export --quiet

# Export a csv of all tweets between 2 dates or datetimes (--since is inclusive and --until exclusive):
gazou export --since 2021-03-24 --until 2021-03-25
# or
gazou export --since 2021-03-24T12:00:00 --until 2021-03-24T13:00:00

# List all available fields for each tweet:
gazou export --list-fields

# Export only a selection of fields (-c / --columns or -s / --select the xsv way):
gazou export -c id,user_screen_name,local_time,links
# or for example to export only the text of the tweets:
gazou export --select text

# Exclude tweets collected via conversations or quotes (i.e. which do not match the keywords defined in config.json)
gazou export --exclude-threads

# Exclude retweets from the export
gazou export --exclude-retweets

# Export all tweets matching a specific ElasticSearch term query, for instance by user name:
gazou export '{"user_screen_name": "medialab_ScPo"}'

# Take a csv file with an "id" column and export only the tweets whose ids are included in this file:
gazou export --export-tweets-from-file list_of_ids.csv

# You can of course combine all of these options, for instance:
gazou export medialab --since 2021-03-24 --until 2021-03-25 -c text --exclude-threads --exclude-retweets -o medialab_tweets_210324_no_threads_no_rts.csv

Count collected tweets

The Gazouilloire query system is also available for the count command. For example, you can count the number of tweets that are retweets:

gazou count --lucene retweeted_id:*

You can also use the --step parameter to count the number of tweets per seconds/minutes/hours/days/months/years:

gazou count medialab --step months --since 2018-01-01 --until 2022-01-01

The result is written in CSV format.

Export/Import data dumps directly with ElasticSearch

In order to run and reimport backups, you can also export or import data by dialoguing directly with ElasticSearch, with some of the many tools of the ecosystem built for this.

We recommend using elasticdump, which requires to install NodeJs:

# Install the package
npm install -g elasticdump

Then you can use it directly or via our shipped-in script elasticdump.sh to run simple exports/imports of your gazouilloire collection indices:

gazou scripts elasticdump.sh
# and to read its documentation:
gazou scripts --info elasticdump.sh

Advanced parameters

Many advanced settings can be used to better filter the tweets collected and complete the corpus. They can all be modified within the config.json file.

- keywords

Keywords syntax follow Twitter's search engine rules. You can forge your queries by typing them within the website's search bar. You can input a single word, or a combination of ones separated by spaces (which will query for tweets matching all of those words). You can also write complex boolean queries such as (medialab OR (media lab)) (Sciences Po OR SciencesPo) but note only the Search API will be used for these ones, not the Streaming API, resulting in less exhaustive results.

Some advanced filters can be used in combination with the keywords, such as -undesiredkeyword, filter:links, -filter:media, -filter:retweets, etc. See Twitter API's documentation for more details. Queries including these will also only run on the Search API and not the Streaming API.

When adding a Twitter user as a keyword, such as "@medialab_ScPo", Gazouilloire will query specifically "from:medialab_Scpo OR to:medialab_ScPo OR @medialab_ScPo" so that all tweets mentionning the user will also be collected.

Using upper or lower case characters in keywords won't change anything.

You can leave accents in queries, as Twitter will automatically return both tweets with and without accents through the search API, for instance searching "héros" will find both tweets with "heros" and "héros". The streaming API will only return exact results but it mostly complements the search results.

Regarding hashtags, note that querying a word without the # character will return both tweets with the regular word and tweets with the hashtag. Adding a hashtag with the # characters inside keywords will only collect tweets with the hashtag.

Note that there are three possibilities to filter further:

- language

In order to collect only tweets written in a specific language: just add "language": "fr" to the config (the language should be written in ISO 639-1 code)

- geolocation

Just add "geolocation": "Paris, France" field to the config with the desired geographical boundaries or give in coordinates of the desired box (for instance [48.70908786918211, 2.1533203125, 49.00274483644453, 2.610626220703125])

- time_limited_keywords

In order to filter on specific keywords during planned time periods, for instance:

"time_limited_keywords": {
      "#fosdem": [
          ["2021-01-27 04:30", "2021-01-28 23:30"]
      ]
  }

- url_pieces

To search for specific parts of websites, one can input pieces of urls as keywords in this field. For instance:

"url_pieces": [
    "medialab.sciencespo.fr",
    "github.com/medialab"
]

- resolve_redirected_links

Set to true or false to enable or disable automatic resolution of all links found in tweets (t.co links are always handled, but this allows resolving also for all other shorteners such as bit.ly).

The resolving_delay (set to 30 by default) defines for how many days urls returning errors will be retried before leaving them as such.

- grab_conversations

Set to true to activate automatic recursive retrieval within the corpus of all tweets to which collected tweets are answering (warning: one should account for the presence of these when processing data, it often results in collecting tweets which do not contain the queried keywords and/or which are way out of the collection time period).

- catchup_past_week

Twitter's free API allows to collect tweets up to 7 days in the past, which gazouilloire does by default when starting a new corpus. Set this option to false to disable this and only collect tweets posted after the collection was started.

- download_media

Configure this option to activate automatic downloading within media_directory of photos and/or videos posted by users within the collected tweets (this does not include images from social cards). For instance the following configuration will only collect pictures without videos or gifs:

"download_media": {
    "photo": true,
    "video": false,
    "animated_gif": false,
    "media_directory": "path/to/media/directory"
}

All fields can also be set to true to download everything. media_directory is the folder where Gazouilloire stores the images & videos. It should either be an absolute path ("/home/user/gazouilloire/my_collection/my_images"), or a path relative to the directory where config.json is located ("my_images").

- timezone

Adjust the timezone within which tweets timestamps should be computed. Allowed values are proposed on Gazouilloire's startup when setting up an invalid one.

- verbose

When set to true, logs will be way more explicit regarding Gazouilloire's interactions with Twitter's API.

Daemon mode

For production use and long term data collection, Gazouilloire can run as a daemon (which means that it executes in the background, and you can safely close the window within which you started it).

  • Start the collection in daemon mode with:

    gazou start
  • Stop the daemon with:

    gazou stop
  • Restart the daemon with:

    gazou restart
  • Access the current collection status (running/not running, nomber of collected tweets, disk usage, etc.) with

    gazou status
  • Gazouilloire should normally restart on its own in case of temporary internet access outages but it might occasionnally fail for various reasons such as ElasticSearch having crashed for instance. In order to ensure a long term collection remains up and running without always checking it, we recommand to program automatic restarts of Gazouilloire at least once every week using cronjobs (missing tweets will be completed up to 7 days after a crash). In order to do so, a restart.sh script is proposed that handles restarting ElasticSearch whenever necessary. You can install it within your corpus directory by doing:

    gazou scripts restart.sh

    Usecases and cronjobs examples are proposed as comments at the top of the script. You can also consult them by doing:

    gazou scripts --info restart.sh
  • An example script daily_mail_export.sh is also proposed to perform daily tweets exports and get them by e-mail. Feel free to reuse and tailor it to your own needs the same way:

    gazou scripts daily_mail_export.sh
    # and to read its documentation:
    gazou scripts --info daily_mail_export.sh
  • More similar practical scripts are available for diverse usecases:

    # You can list them all using --list or -l:
    gazou scripts --list
    # Read each script's documentation with --info or -i (for instance for "backup_corpus_ids.sh"):
    gazou scripts --info backup_corpus_ids.sh
    # And install it in the current directory with:
    gazou scripts backup_corpus_ids.sh
    # Or within a specific different directory using --path or -p:
    gazou scripts backup_corpus_ids.sh -p PATH_TO_MY_GAZOUILLOIRE_COLLECTION_DIRECTORY
    # Or even install all scripts at once using --all or -a (--path applicable as well)
    gazou scripts --all

Reset

  • Gazouilloire stores its current search state in the collection directory. This means that if you restart Gazouilloire in the same directory, it will not search again for tweets that were already collected. If you want a fresh start, you can reset the search state, as well as everything that was saved on disk, using:

    gazou reset
  • You can also choose to delete only some elements, e.g. the tweets stored in ElasticSearch and the media files:

    gazou reset --only tweets,media

    Possible values for the --only argument: tweets,links,logs,piles,search_state,media

Development

To install Gazouilloire's latest development version or to help develop it, clone the repository and install your local version using the setup.py file:

git clone https://github.com/medialab/gazouilloire
cd gazouilloire
python setup.py install

Gazouilloire's main code relies in gazouilloire/run.py in which the whole multiprocess architecture is orchestrated. Below is a diagram of all processes and queues.

  • The searcher collects tweets querying Twitter's search API v1.1 for all keywords sequentially as much as the API rates allows
  • The streamer collects realtime tweets using Twitter's streaming API v1.1 and info on deleted tweets from users explicity followed as keywords
  • The depiler processes and reformats tweets and deleted tweets using twitwi before indexing them into ElasticSearch. It also extracts media urls and parent tweets to feed the downloader and the catchupper
  • The downloader requests all media urls and stores them on the filesystem (if the download_media option is enabled)
  • The catchupper collects recursively via Twitter's lookup API v1.1 parent tweets of all collected tweets that are part of a thread and feeds back the depiler (if the grab_conversations option is enabled)
  • The resolver runs multithreaded queries on all urls found as links within the collected tweets and tries to resolve them to get unshortened and harmonized urls (if the resolve_redirected_links option is enabled) thanks to minet

All three queues are backed up on filesystem in pile_***.json files to be reloaded at next restart whenever Gazouilloire is shut down.

multiprocesses

Troubleshooting

ElasticSearch

  • Remember to set the heap size (at 1GB by default) when moving to production. 1GB is fine for indices under 15-20 million tweets, but be sure to set a higher value for heavier corpora.

    Set these values here /etc/elasticsearch/jvm.options (if you use ElasticSearch as a service) or here your_installation_folder/config/jvm.options (if you have a custom installation folder):

    -Xms2g
    -Xmx2g
    

    Here the heap size is set at 2GB (set the values at -Xms5g -Xmx5g if you need 5GB, etc).

  • If you encounter this ElasticSearch error message: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]:

    ➡️ Increase the max_map_count value:

    sudo sysctl -w vm.max_map_count=262144

    (source)

  • If you get a ClusterBlockException [SERVICE_UNAVAILABLE/1/state not recovered / initialized] when starting ElasticSearch:

    ➡️ Check the value of gateway.recover_after_nodes in /etc/elasticsearch/elasticsearch.yml:

    sudo [YOUR TEXT EDITOR] /etc/elasticsearch/elasticsearch.yml

    Edit the value of gateway.recover_after_nodes to match your number of nodes (usually 1 - easily checked here : http://host:port/_nodes).

Publications

Gazouilloire presentations

Publications using Gazouilloire

Publications talking about Gazouilloire

Credits & License

Benjamin Ooghe-Tabanou, Béatrice Mazoyer, Jules Farjas & al @ Sciences Po médialab

Read more about Gazouilloire's migration from Python2 & Mongo to Python3 & ElasticSearch in Jules' report.

Discover more of our projects at médialab tools.

This work has been supported by DIME-Web, part of DIME-SHS research equipment financed by the EQUIPEX program (ANR-10-EQPX-19-01).

Gazouilloire is a free open source software released under GPL 3.0 license.

More Repositories

1

artoo

artoo.js - the client-side scraping companion.
JavaScript
1,100
star
2

iwanthue

Colors for data scientists.
HTML
636
star
3

hyphe

Websites crawler with built-in exploration and control web interface
JavaScript
328
star
4

minet

A webmining CLI tool & library for python.
Python
285
star
5

ipysigma

A Jupyter widget using sigma.js to render interactive networks.
Jupyter Notebook
193
star
6

sandcrawler

sandcrawler.js - the server-side scraping companion.
JavaScript
107
star
7

fonio

a collaborative scholarly text editor allowing to build static websites
JavaScript
67
star
8

ural

A helper library full of URL-related heuristics.
Python
61
star
9

ANTA

Actor Network Text Analyser
PHP
56
star
10

zup

a simple interface from extracting texts from (almost) any url
JavaScript
52
star
11

manylines

Explore networks and publish narratives.
HTML
52
star
12

xan

The CSV magician
Rust
42
star
13

hyphe-browser

Browser version of Hyphe (WIP)
JavaScript
29
star
14

tesselle

an image annotation and publication tool
TypeScript
27
star
15

csv-rinse-repeat

CSV grooming, the JS way
JavaScript
21
star
16

scholarScape

Python
21
star
17

minivan

Web interface for network analysis.
JavaScript
20
star
18

sandcrawler-dashboard

A handy terminal dashboard plugin for sandcrawler.
JavaScript
20
star
19

table2net

JavaScript
20
star
20

graph-recipes

Online experimental network tinkering
JavaScript
18
star
21

ricardo_data

The RICardo dataset compiles trade statistics sources of international trade bilateral flows of the 19th century.
Python
16
star
22

drive-in

publish a simple website from a public google drive folder
JavaScript
16
star
23

sciencescape

sciencescape
JavaScript
16
star
24

toflit18

TOFLIT18 datascape's sources.
JavaScript
14
star
25

google-bookmarklets

extract list of results from a google page as csv with bookmarklets
JavaScript
14
star
26

aime-core

Core engine of the AIME project serving its harmonized database.
JavaScript
14
star
27

ricardo

RICardo Project, Historical Trade Database
JavaScript
13
star
28

bibliotools3.0

modification of bibliotools 2.2 from Sébastian Grauwin
Python
12
star
29

website

The lab's static website and its admin.
JavaScript
12
star
30

casanova

Specialized & performant CSV readers, writers and enrichers for python.
Python
11
star
31

Facettage

Facet management for backendless datascapes
JavaScript
11
star
32

heatgraph

you don't want to know
JavaScript
11
star
33

reference_manager

Python
10
star
34

twitwi

Collection of Twitter-related helper functions for python.
Python
10
star
35

hyphe-traph

A Trie/Graph hybrid memory structure used by the Hyphe crawler to index pages & webentities.
Python
10
star
36

pelote

A collection of network-related python utilities.
Python
9
star
37

hyphe2solr

XSLT
8
star
38

benchmarkForceAtlas2

JavaScript
8
star
39

bothan

A node.js phantom interface for scraping purposes.
JavaScript
8
star
40

GeoPolHist

TypeScript
7
star
41

quenouille

A library of multithreaded iterator workflows for python.
Python
6
star
42

gulp-artoo

A gulp plugin to create artoo.js bookmarklets.
JavaScript
6
star
43

drive-out

Export of google drive private folders for node.js
JavaScript
5
star
44

catwalk

Nano tweet curation tool for humanities
JavaScript
5
star
45

LDA_testing

Collection of scripts testing various implementation of and wrapping around LDA
Python
5
star
46

bhht-datascape

The BHHT project's datascape.
JavaScript
5
star
47

ANTA2

Actor Network Text Analyser v2
Python
5
star
48

reanalyse

django platform to explore TEI verbatims, documents & speakers within structured qualitative studies
JavaScript
5
star
49

doxer

experimental ngram extractor (using django + solr)
XSLT
4
star
50

grunt-artoo

A grunt task to create artoo bookmarklets.
JavaScript
4
star
51

ouatterrir

WIP
JavaScript
4
star
52

scrapers

Miscellaneous scrapers.
Python
4
star
53

toflit18_data

Datapackage for TOFLIT18 research project
Stata
4
star
54

gitlaw

Python
4
star
55

halexp

medialab's expert search engine poc
Python
4
star
56

resin-annuaire

Site de l'annuaire des expertises du Réseau d'Ingenieur USPC/SciencesPo
JavaScript
3
star
57

fabrique-fragmentation

A prototype for La Fabrique de la Loi : réseaux d'alignement et fragmentation des groupes politiques
JavaScript
3
star
58

quinoa-server

Node application providing diverse services for quinoa apps
JavaScript
3
star
59

communautes-libres-graph

TypeScript
3
star
60

digital-training-topics

HTML
3
star
61

mango_cognitive

Set of cognitive games to be added to a limesurvey platform.
JavaScript
3
star
62

frontcast

JavaScript
3
star
63

medialab-network-dataset

Various GEXF networks from our studies
3
star
64

portic-storymaps-2021

source code for the PORTIC datasprint 2021 publication
JavaScript
3
star
65

bottom-up-color-space-experiment

Online experiment to build color spaces from empirical color distances in various contexts
JavaScript
3
star
66

cours-facebook

3
star
67

mango_core

Mango "plugin" for limesurvey. Used to add a surveys router to chain survey one after the other.
PHP
2
star
68

navicrawler

Archive repository for WebAtlas' NaviCrawler project
JavaScript
2
star
69

ipinion-rank

Python
2
star
70

quinoa-vis-modules

[WIP] Set of api-consistent visualization react components for quinoa apps
JavaScript
2
star
71

tools-old

HTML
2
star
72

unfccc-scrap-snippet

A code snippet used to scrape UNFCCC data during EMAPS project
2
star
73

habitele

JavaScript
2
star
74

otree-iat

Implicit Association Test for oTree.
JavaScript
2
star
75

controversy-mapping

Controversy Mapping Archive
CSS
2
star
76

double-dating-data

mini website for the exhibition
HTML
2
star
77

bulgur

JavaScript
2
star
78

amendement

Parsing des amendements
JavaScript
2
star
79

nyt-api

fetch nyt articles, store them into db, display authors
JavaScript
2
star
80

spatialization-quality

JavaScript
2
star
81

graines

Classification of Twitter users using multimodal embeddings
HTML
2
star
82

portic-datasprint-2021

Ce répertoire contient un ensemble de ressources utiles, et les productions des participants du datasprint PORTIC 2021 qui s'est tenu les 6, 7, 8 et 9 avril 2021.
Jupyter Notebook
2
star
83

rebus

A writing tool materializing distant echoes from twitter data
JavaScript
1
star
84

Gazou_twint_sns_comp

Python
1
star
85

well-being-metrics

A mini website for SoWell project
CSS
1
star
86

medialab.sciences-po.fr

The médialab website source code : a Wordpress theme
PHP
1
star
87

FlaskTools

Python
1
star
88

tweet-bubbles

Small python script generating a tweet bubbles dataviz.
Python
1
star
89

fabrique-typo-amendements

Jupyter Notebook
1
star
90

poltergeist

theme for ghost (node.js blogging platform)
CSS
1
star
91

artoratoire

JavaScript
1
star
92

loubar

Just some experiments in visualizing the inner workings of a graph community detection algorithms.
TypeScript
1
star
93

webclim_misinformation_related_interventions

TeX
1
star
94

carnet-algopresse

An ongoing experiment about setting a workflow for collectively refining visualizations and their textual apparatus
JavaScript
1
star
95

aime-tweets

Collect Bruno Latour's tweet for display on ModesOfExistence.org
Python
1
star
96

cnap-fnac

HTML
1
star
97

hyphe-topic-datascape

A prototype datascape to explore the content of a Hyphe corpus where topics have been added to web pages
CSS
1
star
98

benchmarkNetworkCut

1
star
99

MappingFrenchRussia

JavaScript
1
star
100

personal-air-timeline

a SaveOurAir experiment
JavaScript
1
star