{ "info": { "author": "Linwood Creekmore III", "author_email": "valinvescap@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Communications :: Chat", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. -*- mode: rst -*-\n\n.. image:: https://travis-ci.org/linwoodc3/gdeltPyR.svg?branch=master\n :target: https://travis-ci.org/linwoodc3/gdeltPyR\n\n.. image:: https://ci.appveyor.com/api/projects/status/yc6u8v6uvg212dcm/branch/master?svg=true\n :target: https://ci.appveyor.com/project/linwoodc3/gdeltpyr/history\n\n.. image:: https://badge.fury.io/py/gdelt.svg\n :target: https://pypi.python.org/pypi/gdelt\n\n.. image:: https://coveralls.io/repos/github/linwoodc3/gdeltPyR/badge.svg?branch=master\n :target: https://coveralls.io/github/linwoodc3/gdeltPyR?branch=master\n\nGDELT in Python with ``gdeltPyR``\n=================================\n\n``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 `_.\n\n\n`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.\n\nThe 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\u2019s 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 <(http://gdeltproject.org/#intro)>`_.\n\nGDELT Facts\n-----------\n* **GDELT 1.0 is a daily dataset**\n * 1.0 only has 'events' and 'gkg' tables\n * 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)\n* **GDELT 2.0 is updated every 15 minutes**\n * Some time intervals in GDELT 2.0 are missing; ``gdeltPyR`` provides a warning message when data is missing\n * 2.0 has 'events','gkg', and 'mentions' tables\n * 2.0 has a distinction between native english and translated-to-english\n\n\nProject Concept and Evolution Plan\n----------------------------------\n\nThis project will evolve in `two phases `_. Moreover, if you want to contribute to the project, this section can help prioritize where to put efforts.\n\n* Phase 1 focuses on providing consistent, stable, and reliable access to GDELT data.\n\nTherefore, 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.\n\n* Phase 2 brings analytics to `gdeltPyR` to expand the library beyond a simple data retrieval functionality\n\nThis 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.\n\n**New Features** as of Oct 2017\n-------------------------------\n\n1. Added geodataframe output. This can be easily converted into a shapefile or `choropleth `_ visualization.\n2. Added continuous integration testing for Windows, OSX, and Linux (Ubuntu)\n3. Normalized columns output; export data with SQL ready columns (no special characters, all lowercase)\n4. Choosing between the native-english or translated-to-english datasets from GDELT v2.\n5. Return the schema for a given table; just type the name of the table in the ``gdelt.gdelt.schema`` method and return the pandas dataframe with schema information\n\nBasic Usage of New Schema Query\n-------------------------------\n\n.. code-block:: python\n\n #############################\n # Import gdeltPyR; instantiate\n #############################\n\n import gdelt\n\n gd = gdelt.gdelt()\n\n gd.schema('events')\n\nComing Soon (version 0.1.11, as of Oct 2017)\n-----------------------------------------------\n\n* Output/store ``gdeltPyR`` results in `parquet format `_ ; efficient columnar storage to reduce memory footprint and optimize loading\n* Query Google's BigQuery directly from ``gdeltPyR`` using the `pandas.io.gbq` interface; requires authentication and Google Compute account\n* Adding a query for `GDELT Visual Knowledge Graph (VGKG) `_\n* Adding a query for `GDELT American Television Global Knowledge Graph (TV-GKG) `_\n\nInstallation\n------------\n\nLatest release installs from PyPi::\n\n pip install gdelt\n\nLatest dev version of ``gdeltPyR`` can be installed from GitHub.com::\n\n pip install git+https://github.com/linwoodc3/gdeltPyR\n\n\n\n\n.. image:: https://twistedsifter.files.wordpress.com/2015/06/people-tweeting-about-sunrises-over-a-24-hour-period.gif?w=700&h=453\n:alt: GDELT can help you visualize the world's news!!! Analyze GDELT data with gdeltPyR!!\n\nBasic Usage\n-----------\n\n.. code-block:: python\n\n #############################\n # Import gdeltPyR; instantiate\n #############################\n\n import gdelt\n\n gd = gdelt.gdelt(version=2)\n\n results = gd.Search(['2016 10 19','2016 10 22'],table='events',coverage=True,translation=False)\n\n\n\n\nContributing to gdelPyR\n-----------------------\n\nAll contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome.\n\nA detailed overview on how to contribute is forthcoming.\n\nOur 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).\n\nIf you are simply looking to start working with the ``gdeltPyR`` codebase, navigate to the `Issues <(https://github.com/linwoodc3/gdeltPyR/issues)>`_ tab and start looking through interesting issues. There are a number of issues listed where you could start out.\n\nOr 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!\n\ngdeltPyR Dev Environment\n------------------------\n\nWe follow the `pandas `_ instructions as a guide to build a ``gdeltPyR`` development environment. Windows users should try the `Windows Dev Environment`_ section below.\n\nAn easy way to create a ``gdeltPyR`` development environment is as follows.\n\n* Install either `Anaconda `_ or `miniconda `_\n* Make sure that you have `cloned the repository `_\n* cd to the ``gdeltPyR`` source directory\n\nAfter 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:\n\n\n* For Python 2.7\n\n.. code-block:: bash\n\n conda create -n gdelt_dev python=2 -c conda-forge --file travis/requirements_all.txt\n\n\n* For Python 3.5\n\n.. code-block:: bash\n\n conda create -n gdelt_dev python=3 -c conda-forge --file travis/requirements_all.txt\n\n\n* For Python 3.6\n\n.. code-block:: bash\n\n conda create -n gdelt_dev python=3.6 -c conda-forge --file travis/requirements_all36.txt\n\n\nWindows Dev Environment\n-----------------------\n\nFor 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.\n\nFor Python 2.7, you can install the mingw compiler which will work equivalently to VS 2008:\n\n.. code-block:: bash\n\n conda install -n gdelt_dev libpython\n\n\nor 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.\n\nFor 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.\n\nFor Python 3.5 and 3.6, you can download and install the Visual Studio 2015 Community Edition.\n\nHere are some references and blogs:\n\n* https://blogs.msdn.microsoft.com/pythonengineering/2016/04/11/unable-to-find-vcvarsall-bat/\n* https://github.com/conda/conda-recipes/wiki/Building-from-Source-on-Windows-32-bit-and-64-bit\n* https://cowboyprogrammer.org/building-python-wheels-for-windows/\n* https://blog.ionelmc.ro/2014/12/21/compiling-python-extensions-on-windows/\n* https://support.enthought.com/hc/en-us/articles/204469260-Building-Python-extensions-with-Canopy\n\nThis 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:\n\n* On Windows\n\n.. code-block:: bash\n\n activate gdelt_dev\n\n\n* On Linux/Mac OS\n\n.. code-block:: bash\n\n source activate gdelt_dev\n\n\nYou will then see a confirmation message to indicate you are in the new development environment.\n\nTo view your environments:\n\n.. code-block:: bash\n\n conda info -e\n\n\nTo return to your home root environment in Windows:\n\n.. code-block:: bash\n\n deactivate\n\n\nTo return to your home root environment in OSX / Linux:\n\n.. code-block:: bash\n\n source deactivate\n\n\nBuilding gdeltPyR\n-------------------\n\nSee the `full conda docs here `_.\n\nThe 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:\n\n1. The best way to develop 'gdeltPyR' is to build the extensions in-place by running:\n\n.. code-block:: bash\n\n python setup.py build_ext --inplace\n\nIf you startup the Python interpreter in the pandas source directory you will call the built C extensions\n\n2. Another very common option is to do a develop install of pandas:\n\n.. code-block:: bash\n\n python setup.py develop\n\n\nThis 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.\n\nYou should have a fully functional development environment!\n\nContinuous Integration\n----------------------\n\n``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.\n\n.. image:: data/allgreensci.png\n :alt: CI Greens\n\n\n\nCommitting Your Code\n--------------------\n\nThere's no point in reinventing the wheel; `read the pandas documentation on committing code for instructions `_ on how to contribute to `gdeltPyR`.\n\n\nStyles for Submitting Issues/Pull Requests\n------------------------------------------\nWe follow the `pandas `_ coding style for issues and pull requests. Use the following style:\n\n* ENH: Enhancement, new functionality\n* BUG: Bug fix\n* DOC: Additions/updates to documentation\n* TST: Additions/updates to tests\n* BLD: Updates to the build process/scripts\n* PERF: Performance improvement\n* CLN: Code cleanup\n\nSee `this issue as an example `_.\n\nFull-on open source project with the following contributors:\n\n* Linwood Creekmore\n\n\n2016-09-25\n\n Released 0.1\n Initial check-in of gdeltPyR\n\n\n2016-10-23\n Working on 0.1 release, basic functionality all there\n\n2016-10-25\n Changed MANIFEST.in file; cleaned up egg.info\n\n2016-10-30\n Edited the warning strings and aligned some code with PEP8\n\n2016-10-31\n Added human readable CAMEO Codes column\n\n2016-10-31\n Bug fix; file not loading or downloading on install\n\n2016-11-03\n Added ability to pull GKG 1.0 data\n\n2016-11-06\n GDELT changed url structure for 2.0 events database.\n\n2016-11-07\n Typo on line 290 of base.py; removed and fixed bug.\n\n2017-05-23\n Updated to 0.1.10\n Added geodataframe output\n Started adding unittests (datefuncs first), added docstrings for functions, and PEP8 adherence.\n Fixed datecheck error on current day;\n\n2017-05-27\n Removed datetime parsing\n Added unittests for events before 2013, gkg v1 before apr 1, etc.\n\n2017-07-18\n Added support for translated-to-english datasets in gdelt v2 for gkg, events en mentions.\n\n2017-07-24\n Made methods private; single underscore implies private method for developers\n\n2017-08-05\n Added coverage badge and test to CI; updated README; added detailed contributing documentation.\n\n2017-08-09\n Achieved 80% unit test coverage for entire code base.\n\n2017-10-30\n Added schema method to return table info data; switched continuous integration for MacOS to conda; kept failing. Up to 84% coverage\n\n2018-08-11\n Added more unittests, included proxy parameter, removed r output and added parquet format.\n\n2018-10-18\n Fixed bug in line 636; had hanging proxies parameter.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://linwoodc3.github.io/gdeltPyR/", "keywords": "gdelt pandas tidy data api", "license": "GNU General Public License v3.0", "maintainer": "Linwood Creekmore III", "maintainer_email": "valinvescap@gmail.com", "name": "gdelt", "package_url": "https://pypi.org/project/gdelt/", "platform": "Any", "project_url": "https://pypi.org/project/gdelt/", "project_urls": { "Homepage": "https://linwoodc3.github.io/gdeltPyR/" }, "release_url": "https://pypi.org/project/gdelt/0.1.10.6/", "requires_dist": [ "numpy", "pandas (>=0.20.3)", "requests", "python-dateutil", "futures; python_version < \"3.0\"", "mock; python_version < \"3.3\"", "futures (>=3.0.5); python_version == \"2.6\" or python_version == \"2.7\"", "mock; python_version<'3.3'", "futures; python_version<'3.3'", "fiona (>=1.6); extra == 'geospatial'", "shapely (>=1.5); extra == 'geospatial'", "geopandas (>-1.7); extra == 'geospatial'", "pyarrow; extra == 'r'" ], "requires_python": "", "summary": "Python based framework to retreive Global Database of", "version": "0.1.10.6" }, "last_serial": 4397911, "releases": { "0.1.10": [ { "comment_text": "", "digests": { "md5": "0895a3490103aca09b4a057fecdbc0e0", "sha256": "58de2c49867c867f4b848bd2a0fca98ba9128c704ee79a037a20064b55830163" }, "downloads": -1, "filename": "gdelt-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0895a3490103aca09b4a057fecdbc0e0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32393, "upload_time": "2017-05-28T17:42:26", "url": "https://files.pythonhosted.org/packages/c6/f4/66708ab1883a4d895b25afd07b3e30336c082ed1d5546147c096fa9d45df/gdelt-0.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ebad824f35651c881e8031e9ce9fd98", "sha256": "67ee7806687b258935f977dff83a2b97370144c31b7ea7294fc8aa5c8f1ad361" }, "downloads": -1, "filename": "gdelt-0.1.10-py3.4.egg", "has_sig": false, "md5_digest": "0ebad824f35651c881e8031e9ce9fd98", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 49887, "upload_time": "2017-05-28T17:42:27", "url": "https://files.pythonhosted.org/packages/07/e2/06bdd3e243fe4ecbcbaa7d2cc657351eb66882773bdea80c8d7e8223fb36/gdelt-0.1.10-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "a69c51f840e41608119761ade4c3410f", "sha256": "db51367ba1b1c524681669ba35d723a6964280e82a7038c6638d2fb8e65c09e2" }, "downloads": -1, "filename": "gdelt-0.1.10-py3.6.egg", "has_sig": false, "md5_digest": "a69c51f840e41608119761ade4c3410f", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 49242, "upload_time": "2017-05-28T17:42:29", "url": "https://files.pythonhosted.org/packages/c0/2a/f3381e1228d3ae0249ad4f22f8c4f06ded130e11fab7c786e7a1f655df27/gdelt-0.1.10-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "d2523fce8c1c3d139e3afedeb364f268", "sha256": "b0f0fd9e6f7abd384dc3e48b889d6b7de64345831e47223fa7a0f9745db330b3" }, "downloads": -1, "filename": "gdelt-0.1.10.tar.gz", "has_sig": false, "md5_digest": "d2523fce8c1c3d139e3afedeb364f268", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 233686, "upload_time": "2017-05-28T17:42:32", "url": "https://files.pythonhosted.org/packages/aa/bb/6ece34ad884490ad73f35a8f338843fe263f572c1b5c54e16b184b67d72a/gdelt-0.1.10.tar.gz" } ], "0.1.10.4": [ { "comment_text": "", "digests": { "md5": "af3c5b9f19bef3daab7a78259355515e", "sha256": "952c4ad5dcc3ba3f54c27d886570e2d189f8528d26909f9c569a94844c85850c" }, "downloads": -1, "filename": "gdelt-0.1.10.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af3c5b9f19bef3daab7a78259355515e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33537, "upload_time": "2017-05-30T14:06:46", "url": "https://files.pythonhosted.org/packages/34/5d/4fb5ad4ad018de41f632d20f3d74315e90407d8bb1549da8ffb2c59a13a9/gdelt-0.1.10.4-py2.py3-none-any.whl" }, { "comment_text": "Source files", "digests": { "md5": "cc801139cba50632abf7ff49ee0a3e04", "sha256": "f127ce0a2d78918c69e378b81869154f0a98b1862e622069824ce05707a64bff" }, "downloads": -1, "filename": "gdelt-0.1.10.4.tar.gz", "has_sig": false, "md5_digest": "cc801139cba50632abf7ff49ee0a3e04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235076, "upload_time": "2017-05-30T14:10:55", "url": "https://files.pythonhosted.org/packages/1e/ce/5a50e5b58737b2d196fe3ce5330b1c2a1aac0589ce85fb9b4cbe1b4310de/gdelt-0.1.10.4.tar.gz" } ], "0.1.10.5.1": [ { "comment_text": "", "digests": { "md5": "f227fd2e2ef924c58d8e3095ba02367c", "sha256": "1acb6eeefeb4461d72cd37f52cab19c5153c3d6efe8ca4dfc70fab8bae28a17b" }, "downloads": -1, "filename": "gdelt-0.1.10.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f227fd2e2ef924c58d8e3095ba02367c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 760577, "upload_time": "2017-09-04T16:49:25", "url": "https://files.pythonhosted.org/packages/2d/d2/5fcff354d0feb2d247c62bb2360a0b93e6862f7e8b9e035774fa7599d939/gdelt-0.1.10.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aed9441d265b92fdf074439ce7d1de4c", "sha256": "08e1921a90ba7e4b0bdae44b5e29ad799401655de5d281e3492e8dca402cc1d8" }, "downloads": -1, "filename": "gdelt-0.1.10.5.1.tar.gz", "has_sig": false, "md5_digest": "aed9441d265b92fdf074439ce7d1de4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 976165, "upload_time": "2017-09-04T16:49:27", "url": "https://files.pythonhosted.org/packages/95/b1/13682566e2e1a6aa4fedf77bdfed5a9c7a180982f42263d1e16009f874f7/gdelt-0.1.10.5.1.tar.gz" } ], "0.1.10.5.2": [ { "comment_text": "", "digests": { "md5": "3293a2369c95a92fa7728d5a563f02f5", "sha256": "9448ff9a15d58942f12b9f8d2d69460247615ab98a50f1fb30a8cc75aa87396e" }, "downloads": -1, "filename": "gdelt-0.1.10.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3293a2369c95a92fa7728d5a563f02f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 768732, "upload_time": "2017-11-01T03:53:05", "url": "https://files.pythonhosted.org/packages/2c/8b/605babd26a1fc68a9a4bdcc95c3f8193a006f52e59b4d6b7cfc58e33d4a1/gdelt-0.1.10.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d8939477d0eabb4b358ccc431a1a66b", "sha256": "e1c3a4f33f97a54f0316e87571c20219ca79b1aaf21431b90027d968f170aa19" }, "downloads": -1, "filename": "gdelt-0.1.10.5.2.tar.gz", "has_sig": false, "md5_digest": "4d8939477d0eabb4b358ccc431a1a66b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 982317, "upload_time": "2017-11-01T03:53:08", "url": "https://files.pythonhosted.org/packages/96/5e/c6d36c699e999dafdc84d6bd835ea215c150e4d35677c197d44549b8273f/gdelt-0.1.10.5.2.tar.gz" } ], "0.1.10.5.3": [ { "comment_text": "", "digests": { "md5": "55d87e08471dfaafa90d915d8f546806", "sha256": "51f50045f86a4bb0e43a49314864b6827732f4810305f4a9a060bd8fe7dd58be" }, "downloads": -1, "filename": "gdelt-0.1.10.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "55d87e08471dfaafa90d915d8f546806", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 761377, "upload_time": "2018-08-17T10:49:38", "url": "https://files.pythonhosted.org/packages/fa/2f/87b067f0e9367e7756dff1fcaf4895987e6a266814acc789280f5393a84d/gdelt-0.1.10.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "13b7a21a36e0d1d8c1f70d4b7b40e854", "sha256": "bd6bf360b2f517e84e19735a1f1b5727edf8507721b4039e753159b0312d7d5b" }, "downloads": -1, "filename": "gdelt-0.1.10.5.3.tar.gz", "has_sig": false, "md5_digest": "13b7a21a36e0d1d8c1f70d4b7b40e854", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 982325, "upload_time": "2018-08-17T10:52:10", "url": "https://files.pythonhosted.org/packages/e2/58/78da01c3b1463bc72259bfec1fce99194c23c69868298e00ad42a295f79c/gdelt-0.1.10.5.3.tar.gz" } ], "0.1.10.6": [ { "comment_text": "", "digests": { "md5": "5f309dec2846ed6dfd834f27859a0a3b", "sha256": "e69467f944c9eeab1648244fb58e9c4b6e073a5a0d16c3cdf8f99c0c8c290f6a" }, "downloads": -1, "filename": "gdelt-0.1.10.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f309dec2846ed6dfd834f27859a0a3b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 773881, "upload_time": "2018-10-20T20:10:43", "url": "https://files.pythonhosted.org/packages/65/f9/a3d5111c8f17334b1752c32aedaab0d01ab4324bf26417bd41890d5b25d0/gdelt-0.1.10.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b662f000a6f4a56ec9669a911cfb946", "sha256": "3da32cb33a2d490f1441b41c71cc2e006cabb074c245db31e5960c7eb4973316" }, "downloads": -1, "filename": "gdelt-0.1.10.6.1.tar.gz", "has_sig": false, "md5_digest": "4b662f000a6f4a56ec9669a911cfb946", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 982346, "upload_time": "2018-10-20T20:11:21", "url": "https://files.pythonhosted.org/packages/95/1f/c62e819f54c7a9d6cc74ab1924972c59121cd042dbac54da5ead2da9612d/gdelt-0.1.10.6.1.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "eed26ebafc80ddbdbfa05e01de08874f", "sha256": "42ef2eb63e8a2f42bba52e36a2f2464bf0b9caa3b6e824137177eaf8a40993f9" }, "downloads": -1, "filename": "gdelt-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eed26ebafc80ddbdbfa05e01de08874f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28240, "upload_time": "2016-11-12T18:05:16", "url": "https://files.pythonhosted.org/packages/a5/c3/122fd73070088fee5e15575c1b65cc6b087c3727b4a31690155177a05008/gdelt-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49a2b41ddc35d9986ba1cee302bc26dc", "sha256": "0faaab4ef8b4fded4900b45d560b06d7dd98d800fea28ea4465b244a00b18346" }, "downloads": -1, "filename": "gdelt-0.1.9.tar.gz", "has_sig": false, "md5_digest": "49a2b41ddc35d9986ba1cee302bc26dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 231115, "upload_time": "2016-11-12T18:05:18", "url": "https://files.pythonhosted.org/packages/07/31/4bcc748c722074fdfb99dd2f004fbf6951c64066731ab37ee0242584e537/gdelt-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5f309dec2846ed6dfd834f27859a0a3b", "sha256": "e69467f944c9eeab1648244fb58e9c4b6e073a5a0d16c3cdf8f99c0c8c290f6a" }, "downloads": -1, "filename": "gdelt-0.1.10.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f309dec2846ed6dfd834f27859a0a3b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 773881, "upload_time": "2018-10-20T20:10:43", "url": "https://files.pythonhosted.org/packages/65/f9/a3d5111c8f17334b1752c32aedaab0d01ab4324bf26417bd41890d5b25d0/gdelt-0.1.10.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b662f000a6f4a56ec9669a911cfb946", "sha256": "3da32cb33a2d490f1441b41c71cc2e006cabb074c245db31e5960c7eb4973316" }, "downloads": -1, "filename": "gdelt-0.1.10.6.1.tar.gz", "has_sig": false, "md5_digest": "4b662f000a6f4a56ec9669a911cfb946", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 982346, "upload_time": "2018-10-20T20:11:21", "url": "https://files.pythonhosted.org/packages/95/1f/c62e819f54c7a9d6cc74ab1924972c59121cd042dbac54da5ead2da9612d/gdelt-0.1.10.6.1.tar.gz" } ] }