gdeltPyR
is a Python-based framework to access and analyze Global Database of Events, Language, and Tone (GDELT) 1.0 and 2.0 data in a Python Pandas or R dataframe. A user can enter a single date, date range (list of two strings), or individual dates (more than two in a list) and return a tidy data set ready for scientific or data-driven exploration.
gdeltPyR
retrieves GDELT, 1.0 and 2.0 data, via parallel HTTP GET requests and will also include a method to access GDELT data via Google BigQuery. Therefore, the more CPUs or cores you have, the less time it takes to pull more data. Moreover, the more RAM you have, the more data you can pull. And finally, for RAM-limited workflows, create a pipeline that pulls data, writes to disc, and flushes. The only limitation with data pulls gdeltPyR
is you hardware.
The GDELT Project advertises as the largest, most comprehensive, and highest resolution open database of human society ever created. It monitors print, broadcast, and web news media in over 100 languages from across every country in the world to keep continually updated on breaking developments anywhere on the planet. Its historical archives stretch back to January 1, 1979 and accesses the world’s breaking events and reaction in near-realtime as both the GDELT Event and Global Knowledge Graph update every 15 minutes. Visit the GDELT website to learn more about the project.
- GDELT 1.0 is a daily dataset
- Version 1.0 only has 'events' and 'gkg' tables
- Version 1.0 posts the previous day's data at 6AM EST of next day (i.e. Monday's data will be available 6AM Tuesday EST)
- GDELT 2.0 is updated every 15 minutes
- Some time intervals in GDELT 2.0 are missing;
gdeltPyR
provides a warning message when data is missing - Version 2.0 has 'events','gkg', and 'mentions' tables
- Version 2.0 has a distinction between native english and translated-to-english
- Some time intervals in GDELT 2.0 are missing;
This project will evolve in two phases. Moreover, if you want to contribute to the project, this section can help prioritize where to put efforts.
- Phase 1 focuses on providing consistent, stable, and reliable access to GDELT data.
Therefore, most issues in this phase will build out the main Search
class to return GDELT data, version 1.0 or version 2.0, or equally important, give a relevant error message when no data is returned. This also means the project will focus on building documentation, a unit testing framework (shooting for 90% coverage), and creating a helper class that provides helpful information on column names/table descriptions.
- Phase 2 brings analytics to
gdeltPyR
to expand the library beyond a simple data retrieval functionality
This phase is what will make gdeltPyR
useful to a wider audience. The major addition will be an Analysis
class. For the data-literate users (data scientists, researchers, students, data journalists, etc), enhancements in this phase will save time by providing summary statistics and extraction methods of GDELT data, and as a result reduce the time a user would spend writing code to perform routine data cleanup/analysis. For the non-technical audience (students, journalists, business managers, etc.), enhancesments in this phase will provide outputs that summarize GDELT data, which can in turn be used in reports, articles, etc. Areas of focus include descriptive statistics (mean, split-apply-combine stats, etc), spatial analysis, and time series.
#############################
# Import gdeltPyR; instantiate
#############################
import gdelt
gd = gdelt.gdelt()
gd.schema('events')
- Output/store
gdeltPyR
results in parquet format ; efficient columnar storage to reduce memory footprint and optimize loading - Query Google's BigQuery directly from
gdeltPyR
using the pandas.io.gbq interface; requires authentication and Google Compute account - Adding a query for GDELT Visual Knowledge Graph (VGKG)
- Adding a query for GDELT American Television Global Knowledge Graph (TV-GKG)
Latest release installs from PyPi:
pip install gdelt
You can also install using conda
:
conda install gdelt
Latest dev version of gdeltPyR
can be installed from GitHub.com:
pip install git+https://github.com/linwoodc3/gdeltPyR
#############################
# Import gdeltPyR; instantiate
#############################
import gdelt
gd = gdelt.gdelt(version=2)
results = gd.Search(['2016 10 19','2016 10 22'],table='events',coverage=True,translation=False)
All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome.
A detailed overview on how to contribute is forthcoming.
Our main requirement (and advice) is to make sure you write a unit test for your enhancement or addition (or write a new unit test to help us reach 90% coverage). Moreover, we can't accept a commit until existing unittests are passing in Travis CI (OSX and Linux) and Appveyor (Windows).
If you are simply looking to start working with the gdeltPyR
codebase, navigate to the Issues tab and start looking through interesting issues. There are a number of issues listed where you could start out.
Or maybe through using gdeltPyR
you have an idea of your own or are looking for something in the documentation and thinking this can be improved
...you can do something about it!
We follow the pandas instructions as a guide to build a gdeltPyR
development environment. Windows users should try the Windows Dev Environment section below.
An easy way to create a gdeltPyR
development environment is as follows.
- Install either Anaconda or miniconda
- Make sure that you have cloned the repository
- cd to the
gdeltPyR
source directory
After completing all steps above, tell conda to create a new environment, named gdelt_dev
, or any other name you would like for this environment, by running:
- For Python 3.8
conda create -n gdelt_dev python=3.8 -c conda-forge --file travis/requirements_all36.txt
For Windows, we will again follow the pandas
documentation (let me know if this doesn't work for gdeltPyR
). To build on Windows, you need to have compilers installed to build the extensions. You will need to install the appropriate Visual Studio compilers, VS 2008 for Python 2.7, VS 2010 for 3.4, and VS 2015 for Python 3.5 and 3.6.
For Python 2.7, you can install the mingw compiler which will work equivalently to VS 2008:
conda install -n gdelt_dev libpython
or use the Microsoft Visual Studio VC++ compiler for Python. Note that you have to check the x64 box to install the x64 extension building capability as this is not installed by default.
For Python 3.4, you can download and install the Windows 7.1 SDK. Read the references below as there may be various gotchas during the installation.
For Python 3.5 and 3.6, you can download and install the Visual Studio 2015 Community Edition.
Here are some references and blogs:
- https://blogs.msdn.microsoft.com/pythonengineering/2016/04/11/unable-to-find-vcvarsall-bat/
- https://github.com/conda/conda-recipes/wiki/Building-from-Source-on-Windows-32-bit-and-64-bit
- https://cowboyprogrammer.org/building-python-wheels-for-windows/
- https://blog.ionelmc.ro/2014/12/21/compiling-python-extensions-on-windows/
- https://support.enthought.com/hc/en-us/articles/204469260-Building-Python-extensions-with-Canopy
This will create the new environment, and not touch any of your existing environments, nor any existing Python installation. It will install all of the basic dependencies of gdeltPyR, as well as the development and testing tools. To enter this new environment:
- On Windows
activate gdelt_dev
- On Linux/Mac OS
source activate gdelt_dev
You will then see a confirmation message to indicate you are in the new development environment.
To view your environments:
conda info -e
To return to your home root environment in Windows:
deactivate
To return to your home root environment in OSX / Linux:
source deactivate
See the full conda docs here.
The last step is installing the gdelt development source into this new directory. First, make sure that you cd into the gdeltPyR source directory using the instructions above. You have two options to build the code:
- The best way to develop 'gdeltPyR' is to build the extensions in-place by running:
python setup.py build_ext --inplace
If you startup the Python interpreter in the pandas source directory you will call the built C extensions
- Another very common option is to do a develop install of pandas:
python setup.py develop
This makes a symbolic link that tells the Python interpreter to import pandas from your development directory. Thus, you can always be using the development version on your system without being inside the clone directory.
You should have a fully functional development environment!
pandas
has a fantastic write up on Continuous Integration (CI). Because gdeltPyR
embraces the same CI concepts, please read pandas introduction and explanation of CI if you have issues. All builds of your branch or Pull Request should pass with greens before it can be merged with the master branch.
There's no point in reinventing the wheel; read the pandas documentation on committing code for instructions on how to contribute to gdeltPyR.
We follow the pandas coding style for issues and pull requests. Use the following style:
- ENH: Enhancement, new functionality
- BUG: Bug fix
- DOC: Additions/updates to documentation
- TST: Additions/updates to tests
- BLD: Updates to the build process/scripts
- PERF: Performance improvement
- CLN: Code cleanup