{ "info": { "author": "Henry Post", "author_email": "HenryFBP@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# What is this?\n\nThis is a Python Twitter \"Fire event\" scraper/listener.\n\nIt is an application that will listen for or scrape data relating to house fires (Chicago specifically) in order to analyze how people use Twitter as a platform to report and talk about disasters.\n\n# How will this use Twitter data?\n\nThis application allows one to analyze, collect, and collate data about house fires and other disasters on Twitter.\n\n# How do I install this?\n\n## Dependencies\n\n- [Python 3 or greater](https://www.python.org/downloads/)\n- [MongoDB](https://www.mongodb.com/)\n\n## Steps\n\n```\npip install twitter-fire-scraper\n```\n\nIf it is already installed and a newer version is available, you can update with:\n\n```\npip install twitter-fire-scraper --upgrade\n```\n\n## Notes\n\nThis README assumes all commands take place in the same folder as this README file.\n\n## Examples\n\nExamples of how to use this package can be found in [this examples folder](python_example_code) and also in [our internal test suites](src/twitter_fire_scraper/tests).\n\n These should give you a good idea of how to use our scraper, and can be considered a 'living standard' of how our code works.\n\n\n\n ## Setting up your secrets\n\nThis secrets file is only used for the demos. When using this library, it is up to you to manage how you store and retrieve your API keys.\n\nMore specifically, if the `Scraper` object is not initialized with a `TwitterAuthentication` object, it will search for a file called `~/.twitterfirescraper/secrets.json` for API keys as a fallback.\n\nThis is to make the demonstrations work and not recommended usage when using the library.\n\nA note: These are called 'secrets' for a reason. Don't ever stage or commit `secrets.json`, please.\n\n### Twitter secrets\n\nYou will need:\n\n- A twitter developer account & API key\n\n - A consumer API key (goes into `\"consumer_key\"`)\n - A consumer API secret key (goes into `\"consumer_secret\"`)\n - An access token (goes into `\"access_token\"`)\n - An access secret (goes into `\"access_token_secret\"`)\n\n- A twitter handle you're authorized to make queries on behalf of\n\nYou are to put these into a file called `secrets.json` in your home folder under `.twitterfirescraper/` (For example, mine is `C:/Users/henryfbp/.twitterfirescraper/secrets.json`.)\n\nAn example file is provided for you to base your file off of, called `secrets.example.json`.\n\n### MongoDB secrets\n\nThe demos in our code connect to the following mongodb address:\n\n```\nmongodb://localhost:27017/\n```\n\n## Setting up a database\n\nFor the database, we have chosen to use MongoDB since twitter data is stored in JSON and MongoDB is very well-suited for storing JSON data.\n\nFollow [this tutorial](https://docs.mongodb.com/v3.2/tutorial/) on how to install MongoDB.\n\n## Developer dependencies\n\n- Same as above.\n- [Ruby](https://www.ruby-lang.org/en/), used for running scripts to build and test Python wheels.\n\n### Setting up Pipenv\n\nYou can install Pipenv by executing\n\n```\npip install pipenv\n```\n\nYou can then install all packages (including dev packages like `twisted`) in this folder's `./Pipenv` by executing\n\n```\npipenv install --dev\n```\n\nThen, you can run tests by executing\n\n```\npipenv run python /src/twitter-fire-scraper/tests/test/__main__.py\n```\n\n## Running a functional demo\n\nInside this folder, there are two files called `Run-Demo.bat` and `Run-Demo.ps1`. You can run either of those to start a demo intended for presentation purposes.\n\n# Starting the Web API\n\nThere is a web API that is included with the `twitter-fire-scraper` package.\n\nIt exposes functions of the `twitter-fire-scraper` over HTTP. \n\n## From source\n\nYou can run the web API from the live source code with `pipenv run python twitter_fire_scraper/app.py`.\n\n## Using PyPI\n\nYou can run the Web API after installing it with `pip` by typing\n\n```\npython -m twitter_fire_scraper.app\n```\n\n# Running tests\n\nYou can execute `pipenv run python fire-scraper/tests/.py` to run a test.\n\nTo run all tests, execute `pipenv run python fire-scraper/tests/test/__init__.py` and all tests will run.\n\nAlternatively, if you have this package installed, run\n\n```\npython -m twitter_fire_scraper.tests.test\n```\n\nto run the package's test module.\n\n# What was this adapted from?\n\nA movie sentiment analysis project by [Raul](https://github.com/raaraa/), the repository [is here](https://github.com/raaraa/movie-twitter-sentiment) and a live site [is here](https://movie-tweet-sentiment.herokuapp.com/).\n\nCommit `2fb844e8c081c1dc31cfb4760e3a80cefb6a0eee` was used.\n\n# There's got to be a better way to run this than from the command line!\n\nThere is! Use an IDE (like PyCharm, which I use) that preferably integrates with Python to show you import errors, syntax errors, etc. Go google \"Python IDE\" and pick one you like.\n\n# Adding the location of Venv to your IDE\n\n\n\n In order to run our tests through an IDE, we need to let our IDE know where venv was installed. I will explain this through Pycharm, but the method should be the same for any IDE.\n\nIf running `python` in windows powershell runs Python 3 (or you only have Python 3 installed), run `python -m pipenv --venv`\n\nThis will yield the location of the python 3 Virtual Environment (It should be something like `C:\\Users\\Your Name\\...\\.virtualenvs\\...`). Copy this path and open Pycharm.\n\nGo into `files -> settings` and expand the `Project: fire-scraper-twitter`. In the drop down, go into `Project Interpreter`. Go to the top and click the gear and select `add`, as we will be adding a new interpreter.\n\nSelect `Existing environment` and click the three dots to the right. Copy your path at the top, then OK everything.\n\nThere! Done! Now we can run our tests from inside our IDE.\n\n# Generating/uploading distribution archives\n\nIf you want to distribute this source code as a Python Wheel, follow [this guide](https://packaging.python.org/tutorials/packaging-projects/).\n\nThere are a series of [Ruby](https://www.ruby-lang.org/en/) scripts (cross-platform!) that handle building, cleaning, uploading.\n\nMake sure you have the `twine` package installed for Python.\n\n## Building\n\n```\nruby build.rb\n```\n\n## Cleaning\n\n```\nruby clean.rb\n```\n\n## Uploading\n\nYou'll need to bump the version in `./VERSION` when uploading a new version.\n\n### To the test site (test.pypi.org)\n\n```\nruby upload.rb --test\n```\n\n### To the real site (pypi.org)\n\n```\nruby upload.rb --deploy\n```\n\n## Testing download and install\n\nThere are a couple ways for you to test how a user would experience installing this package.\n\nThere are three Ruby scripts here, each doing what its name suggests.\n\n`test-localwheel-install.rb` will install and test the latest WHL file generated by `build.rb`.\n\n`test-testpypi-install.rb` will install and test the TEST PyPI's `twitter-fire-scraper` package.\n\n`test-realpypi-install.rb` will install and test the offical PyPI's `twitter-fire-scraper` package.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/twitter-fire-scraper-analytics/twitter-fire-scraper", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "twitter-fire-scraper", "package_url": "https://pypi.org/project/twitter-fire-scraper/", "platform": "", "project_url": "https://pypi.org/project/twitter-fire-scraper/", "project_urls": { "Homepage": "https://github.com/twitter-fire-scraper-analytics/twitter-fire-scraper" }, "release_url": "https://pypi.org/project/twitter-fire-scraper/2.2.0/", "requires_dist": [ "Flask", "Jinja2", "MarkupSafe", "Werkzeug", "certifi", "chardet", "click", "colorama", "dnspython", "flask-bootstrap4", "flask-login", "flask-pymongo", "itsdangerous", "matplotlib", "nltk", "numpy", "oauthlib", "pymongo", "pyyaml", "requests", "requests-oauthlib", "six", "textblob", "tmdbsimple", "tweepy", "typing" ], "requires_python": "", "summary": "A tool to scrape data about fires from Twitter.", "version": "2.2.0" }, "last_serial": 5658628, "releases": { "0.0.10": [ { "comment_text": "", "digests": { "md5": "f65fca9306ba4e1a7f77c98ef8b72df9", "sha256": "621303818034e7369436e7f125897b426162fd258afabfb7dee3f9ff19dfe8e7" }, "downloads": -1, "filename": "twitter_fire_scraper-0.0.10-py2-none-any.whl", "has_sig": false, "md5_digest": "f65fca9306ba4e1a7f77c98ef8b72df9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 22977, "upload_time": "2019-03-13T15:39:04", "url": "https://files.pythonhosted.org/packages/7b/ef/f9cbd1567b3877dbb9c981aef9b8c4acc81d5731ee6e8d93ce8378950900/twitter_fire_scraper-0.0.10-py2-none-any.whl" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "8b45f4ded327feb3e5434208edc57c9d", "sha256": "4a153dbbd92e955c6b5fcb0214f98ff290d5ee1af33fa5303554e81038092606" }, "downloads": -1, "filename": "twitter_fire_scraper-0.0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "8b45f4ded327feb3e5434208edc57c9d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21713, "upload_time": "2019-03-11T21:27:45", "url": "https://files.pythonhosted.org/packages/29/30/0bec02dc9a7e688947a51d54cc0b1d89189849c649c91c130deca40a8882/twitter_fire_scraper-0.0.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "564d0c27837a2575cae43b08b61c30a2", "sha256": "2bf9a9d4ded093822697a99fcb2d1cdf8896a7106ab89fc79b222a16af11a77e" }, "downloads": -1, "filename": "twitter-fire-scraper-0.0.5.tar.gz", "has_sig": false, "md5_digest": "564d0c27837a2575cae43b08b61c30a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16813, "upload_time": "2019-03-11T21:27:47", "url": "https://files.pythonhosted.org/packages/82/ce/26495aa3c0af88358fee577df9cf0dbf01f13ad389f3a8b33da50b97d0f0/twitter-fire-scraper-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "79ae3c85b120801fb6861bd34c49dfec", "sha256": "aa62fcec8e53aa5b3763bb54fe13ed6dc67871a25adcaa946a0ae60a7f91839b" }, "downloads": -1, "filename": "twitter_fire_scraper-0.0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "79ae3c85b120801fb6861bd34c49dfec", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21705, "upload_time": "2019-03-12T03:22:14", "url": "https://files.pythonhosted.org/packages/ba/0e/a8b5636677d72a31a4fb93a10c5b5216e6909f559cffb5bcaacfe9a0e510/twitter_fire_scraper-0.0.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2141933d6f177f4f023d1f8c00c0db54", "sha256": "66819e73681d89dc2a6b8607f782fe33e053aa6c0aa8ebd3e6024d9371804889" }, "downloads": -1, "filename": "twitter-fire-scraper-0.0.6.tar.gz", "has_sig": false, "md5_digest": "2141933d6f177f4f023d1f8c00c0db54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16817, "upload_time": "2019-03-12T03:22:16", "url": "https://files.pythonhosted.org/packages/1b/7d/fd6fa22e85bea0cc97eb598ba08083cd98382346fa75f3203976074671d2/twitter-fire-scraper-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "8d755f5df61125a510bd136955227466", "sha256": "41232de434fa0897dc73b4b75c4982c4b2e305799f07b4165fe868ed0d02f8f3" }, "downloads": -1, "filename": "twitter_fire_scraper-0.0.7-py2-none-any.whl", "has_sig": false, "md5_digest": "8d755f5df61125a510bd136955227466", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26664, "upload_time": "2019-03-12T03:50:32", "url": "https://files.pythonhosted.org/packages/00/30/0b86b49a8dc70e0a71ce33a2abc7f3346c2779d026acf3f5aee4a080f2ec/twitter_fire_scraper-0.0.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2cb39fe0dd579e08b2c677439c7c4d8", "sha256": "70e2db00297acb81ed7df94f4cb2416c648f758778c421c28bc3115a9be2079c" }, "downloads": -1, "filename": "twitter-fire-scraper-0.0.7.tar.gz", "has_sig": false, "md5_digest": "a2cb39fe0dd579e08b2c677439c7c4d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19660, "upload_time": "2019-03-12T03:50:33", "url": "https://files.pythonhosted.org/packages/4a/f1/c5bc1fc035822d1bc3ad0121f05265e63d7a55e0cce5391711617684542b/twitter-fire-scraper-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "aeb48b6166c373024e59b31bfbd8805a", "sha256": "73b181987311ac30aa6c3a7362bf3289a7c52085418477b74a595d65e7b5ea5c" }, "downloads": -1, "filename": "twitter_fire_scraper-0.0.8-py2-none-any.whl", "has_sig": false, "md5_digest": "aeb48b6166c373024e59b31bfbd8805a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21705, "upload_time": "2019-03-12T18:46:19", "url": "https://files.pythonhosted.org/packages/9e/e2/ac042ed904c8c4902d0c8b73d12a86e623499f890aab103004b6cabc17e2/twitter_fire_scraper-0.0.8-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "315a59d37d08bff30e7ca2a84a9794d8", "sha256": "cc6088661071d8eb80a702a3b851b27694ea799acd33d8595a84f9c258887f87" }, "downloads": -1, "filename": "twitter-fire-scraper-0.0.8.tar.gz", "has_sig": false, "md5_digest": "315a59d37d08bff30e7ca2a84a9794d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16863, "upload_time": "2019-03-12T18:46:20", "url": "https://files.pythonhosted.org/packages/e4/ff/7f2343969c227048182f98bf6a65203e2a73ceb4076016ccef5935425d86/twitter-fire-scraper-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "c1315c48566b5763d4a718615bf2be9a", "sha256": "c407694aa6804344fb8cb8e7fd5782c97d7fc640c39690f6d12d7a75a7675901" }, "downloads": -1, "filename": "twitter_fire_scraper-0.0.9-py2-none-any.whl", "has_sig": false, "md5_digest": "c1315c48566b5763d4a718615bf2be9a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21777, "upload_time": "2019-03-12T19:04:35", "url": "https://files.pythonhosted.org/packages/4d/a1/125ef4b9cf75855ff80f7542f1a81cd73b41c4f013423d219e632c72e517/twitter_fire_scraper-0.0.9-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7e57351c676691ea7185639e02cb8673", "sha256": "4903166fe3a8a6675cba37c3aef07cdb1f18bc8de5fa10cb8dbbea022d7131ea" }, "downloads": -1, "filename": "twitter-fire-scraper-0.0.9.tar.gz", "has_sig": false, "md5_digest": "7e57351c676691ea7185639e02cb8673", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16951, "upload_time": "2019-03-12T19:04:37", "url": "https://files.pythonhosted.org/packages/4f/e4/29a00b9db0cde5d5c56f01f72129386d953e55d9ba9fec9c88d11d7adde9/twitter-fire-scraper-0.0.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "b731fbfffc2d81822d8eeb47d1b71778", "sha256": "1da558f7f901d37d8a6fc8a93bd5fb33fd6746f7a3dd93580a010948c94c1746" }, "downloads": -1, "filename": "twitter_fire_scraper-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b731fbfffc2d81822d8eeb47d1b71778", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22525, "upload_time": "2019-03-13T21:45:31", "url": "https://files.pythonhosted.org/packages/84/1d/ab9781c6c5d46845103070a5f957addcd68590ccea7df5c21e8334c9728e/twitter_fire_scraper-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c47b82a04585973f061f3558f5fec1d", "sha256": "8a4dfa338f6d4d81c6e45025ef42f7cced4d418242cda13d5339da584c0d8e2d" }, "downloads": -1, "filename": "twitter-fire-scraper-1.0.0.tar.gz", "has_sig": false, "md5_digest": "4c47b82a04585973f061f3558f5fec1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17150, "upload_time": "2019-03-13T21:45:33", "url": "https://files.pythonhosted.org/packages/81/94/81a27ad87cca90e89027fa9d82bd09ff13614535738d409d85d625657df7/twitter-fire-scraper-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "db3a240b5e67ba5c6e6b258f5fe63621", "sha256": "84403474b42b4883ed3e44dafcc35e914d2667187f3d86efa45fcbd9a92d5947" }, "downloads": -1, "filename": "twitter_fire_scraper-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "db3a240b5e67ba5c6e6b258f5fe63621", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22583, "upload_time": "2019-03-14T00:29:49", "url": "https://files.pythonhosted.org/packages/fa/b5/b2e4cff7ae90eef1d2bca131d8e7c2db8ee6bec3c8159538820677427bb3/twitter_fire_scraper-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b7fd2dcfff77016808c625cc84be2a5", "sha256": "61715b345e8d31aa25eb769162274f2f2adc62ca1a4916a2ebf9e258d9e1deb7" }, "downloads": -1, "filename": "twitter-fire-scraper-1.0.1.tar.gz", "has_sig": false, "md5_digest": "5b7fd2dcfff77016808c625cc84be2a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17206, "upload_time": "2019-03-14T00:29:51", "url": "https://files.pythonhosted.org/packages/14/59/8d590508091fc867c69ccc70806c718e64216eb5acf38f524e735c9bc516/twitter-fire-scraper-1.0.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "1e5d904966a852b50b94e25d1e8606b1", "sha256": "742ccabef6e572c912d5b745c5d8145bb8644f2417a34379bf464ea9db90b186" }, "downloads": -1, "filename": "twitter_fire_scraper-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1e5d904966a852b50b94e25d1e8606b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22845, "upload_time": "2019-03-24T23:53:00", "url": "https://files.pythonhosted.org/packages/06/07/531eaf40c43706d75986fb737eb2fb73a75c19d55053391dabdecbeffb06/twitter_fire_scraper-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d54fdf8ceab7c78ec3fa3f97fed8b893", "sha256": "991802b31bda03d0e5258564402966c17a1440e4a1503fc5b5250926e92e4b85" }, "downloads": -1, "filename": "twitter-fire-scraper-1.1.1.tar.gz", "has_sig": false, "md5_digest": "d54fdf8ceab7c78ec3fa3f97fed8b893", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17832, "upload_time": "2019-03-24T23:53:01", "url": "https://files.pythonhosted.org/packages/96/b5/24d4eb522f9c824df12f710bd505fe3bb78e6827198367d992ae47f0d4cb/twitter-fire-scraper-1.1.1.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "fa81261761cb44ef6f9681bd995f039c", "sha256": "a513067718a56f0cb2eb094a109a45123a45613e3a47186d3be884c613e03aa1" }, "downloads": -1, "filename": "twitter_fire_scraper-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fa81261761cb44ef6f9681bd995f039c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22539, "upload_time": "2019-03-27T18:13:05", "url": "https://files.pythonhosted.org/packages/7d/7d/3992acc11f0ccbbefba84c2c0563c3438f3b2cb256d85cf71cb73fa4211a/twitter_fire_scraper-1.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ce85d23b417458580bf0d6709da8500", "sha256": "c952b3f715b5187011d85bac99e5bea305d4e63fac251a19fcad3c9a9d6e9261" }, "downloads": -1, "filename": "twitter-fire-scraper-1.2.1.tar.gz", "has_sig": false, "md5_digest": "6ce85d23b417458580bf0d6709da8500", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17737, "upload_time": "2019-03-27T18:13:06", "url": "https://files.pythonhosted.org/packages/55/5b/030c430a078fb71a27e1d490ecd41209b7ceab725fe68f6ec4bc18637719/twitter-fire-scraper-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "b348c8683715a1e88acadb45171270e3", "sha256": "13b17ffba9b669b3c2ac57ef51cbcc02ee09f7339914fff7f62e72afd633509e" }, "downloads": -1, "filename": "twitter_fire_scraper-1.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b348c8683715a1e88acadb45171270e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22597, "upload_time": "2019-03-28T23:04:37", "url": "https://files.pythonhosted.org/packages/32/af/7f50bd55b11676ee5a43d70b484ffb72ab4b2900e9ab9ad3c22318ef1e6b/twitter_fire_scraper-1.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b65d41a4e6517236a77f86b8f4a97bbe", "sha256": "12448991d2c2a05e9415cdb73296bf80d4340a42f005baeee95dd48cd0c9c48d" }, "downloads": -1, "filename": "twitter-fire-scraper-1.2.2.tar.gz", "has_sig": false, "md5_digest": "b65d41a4e6517236a77f86b8f4a97bbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17733, "upload_time": "2019-03-28T23:04:39", "url": "https://files.pythonhosted.org/packages/4e/9c/5ae65e9d8f297a1c6919e35becb870a983831693c744a44f787e18abd65c/twitter-fire-scraper-1.2.2.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "bd7c3218608379cd506976f4536391e0", "sha256": "5a16bc40343630df38fa31948bb645b4c3e1285c8cb611471962d8e2cda8d805" }, "downloads": -1, "filename": "twitter_fire_scraper-1.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "bd7c3218608379cd506976f4536391e0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23288, "upload_time": "2019-04-05T02:47:10", "url": "https://files.pythonhosted.org/packages/fc/a9/34fe0edcb154e3d7a60bcf240c993f170b45aa8f18dbc2d8474f4721dd15/twitter_fire_scraper-1.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "98d4cb5cfa9fbdbd32f7e992b3554921", "sha256": "0c9da5352158231da1619f8f86f1446b34b99a2cb811ad3e996238930bf097f1" }, "downloads": -1, "filename": "twitter-fire-scraper-1.3.2.tar.gz", "has_sig": false, "md5_digest": "98d4cb5cfa9fbdbd32f7e992b3554921", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18440, "upload_time": "2019-04-05T02:47:11", "url": "https://files.pythonhosted.org/packages/93/a3/db34173794e54fb8407801863c3465b03cec278f75953862c9aec38b1728/twitter-fire-scraper-1.3.2.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "9a4d58ce3dbb55018208a6f65ae43732", "sha256": "e231743f97c8b42516480f46ac5aebd0428d48d7361d38409839749accad6b5b" }, "downloads": -1, "filename": "twitter_fire_scraper-1.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9a4d58ce3dbb55018208a6f65ae43732", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25643, "upload_time": "2019-04-11T04:38:23", "url": "https://files.pythonhosted.org/packages/e1/62/961b7a6658958a7d0ba3ca8a40cad0ade592bc7d38f7ff8829b2afc98b9f/twitter_fire_scraper-1.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5954c3b23d8f5b59f8ac599bc02ff72", "sha256": "b57358858ed54e6483326a6809d3c132408365d2623a8d6567576c55ad62ea88" }, "downloads": -1, "filename": "twitter-fire-scraper-1.4.2.tar.gz", "has_sig": false, "md5_digest": "e5954c3b23d8f5b59f8ac599bc02ff72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19994, "upload_time": "2019-04-11T04:38:26", "url": "https://files.pythonhosted.org/packages/7a/ef/8df9912b081fa7b095adc36001f29280035605c77034daff7270d1020270/twitter-fire-scraper-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "a9c4f987ed8f7a91906ee89790de95d1", "sha256": "4a151928956fc2a8742915d25b6668a891491c40032594b60cf92a21c46470a6" }, "downloads": -1, "filename": "twitter_fire_scraper-1.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "a9c4f987ed8f7a91906ee89790de95d1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26724, "upload_time": "2019-04-11T17:13:56", "url": "https://files.pythonhosted.org/packages/74/4e/3661633243bb937168a232af206011e7f7a176ef6eddff67df203e45a21d/twitter_fire_scraper-1.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "57985c52cd04ad6583caf6f047b23b89", "sha256": "8197c20818170453e59075dc35f38ba15c7c921740ca0b12be9125726bb79ffc" }, "downloads": -1, "filename": "twitter-fire-scraper-1.4.3.tar.gz", "has_sig": false, "md5_digest": "57985c52cd04ad6583caf6f047b23b89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20798, "upload_time": "2019-04-11T17:13:57", "url": "https://files.pythonhosted.org/packages/6a/11/2149a5b191951c3ed7e11318b8e227ef3704b429259204ca3327581ef880/twitter-fire-scraper-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "3d4187eba52454be47e3ac7adcc07a08", "sha256": "c75e13fc15d91155434af2b9d421e9214758acab92ed190836b72875883f6d1a" }, "downloads": -1, "filename": "twitter_fire_scraper-1.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "3d4187eba52454be47e3ac7adcc07a08", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26789, "upload_time": "2019-04-11T17:30:37", "url": "https://files.pythonhosted.org/packages/d1/1e/3a13a6b8e7f988d959560f04f602fdf4f4ad95be42642b94e83b3cba8334/twitter_fire_scraper-1.4.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d7647a195ba4bb2ef4d3336df725b14", "sha256": "789d10b60e9a05a114a7044a12dfa492b1bd6df1aa84cd70dcd67961934c2995" }, "downloads": -1, "filename": "twitter-fire-scraper-1.4.4.tar.gz", "has_sig": false, "md5_digest": "1d7647a195ba4bb2ef4d3336df725b14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20851, "upload_time": "2019-04-11T17:30:39", "url": "https://files.pythonhosted.org/packages/e9/60/3072398b3ae1776ececb756e100120e80b23ace77d60013006a4e4395b63/twitter-fire-scraper-1.4.4.tar.gz" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "ab74d2f1e71f68d8094aebd0d8e44b48", "sha256": "6794d002db58c28aa7ecdb6a124bbbdba20769980bed1e160a60f43e6f1447c6" }, "downloads": -1, "filename": "twitter_fire_scraper-1.4.5-py3-none-any.whl", "has_sig": false, "md5_digest": "ab74d2f1e71f68d8094aebd0d8e44b48", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27025, "upload_time": "2019-04-11T19:55:16", "url": "https://files.pythonhosted.org/packages/2b/7e/207948fa5db1c247748266b4eb815cc004bfe254d3689601af65ff8e61b1/twitter_fire_scraper-1.4.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea784e8febcd88c13511b7159f695d6b", "sha256": "cff5b42cff063c81ee829168a3f1f8a79b14a22146d34b4cb2563afc80030236" }, "downloads": -1, "filename": "twitter-fire-scraper-1.4.5.tar.gz", "has_sig": false, "md5_digest": "ea784e8febcd88c13511b7159f695d6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20992, "upload_time": "2019-04-11T19:55:17", "url": "https://files.pythonhosted.org/packages/03/9e/a5cc12255ec0d08078452c54c12ccdea5e9641e33ec8f41dda697d778ca1/twitter-fire-scraper-1.4.5.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "b816e7235378c6cf1ace0f58b17220e0", "sha256": "15a35365320d73adf18ba3a85a12053e6ba5e45bc19e31284fa70b0478c05d25" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b816e7235378c6cf1ace0f58b17220e0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28013, "upload_time": "2019-05-18T16:17:33", "url": "https://files.pythonhosted.org/packages/09/8d/7c2e88e2f11f0fdf4dc09d7c469a86ce7727ecafb5d144a4de7e32dac2a1/twitter_fire_scraper-2.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8727808e1989169c0d18e8e106e412d1", "sha256": "c1c0a9ed96919451801384e660820f5652be285e5d1f9a7a91372012a4cd365f" }, "downloads": -1, "filename": "twitter-fire-scraper-2.0.0.tar.gz", "has_sig": false, "md5_digest": "8727808e1989169c0d18e8e106e412d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21937, "upload_time": "2019-05-18T16:17:35", "url": "https://files.pythonhosted.org/packages/aa/cd/1b54a01fd2ce103687b18b03ad449073c6e35324fbcf6f381220c3dfbb77/twitter-fire-scraper-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "9d7d724bb8ed41371df33d0dfa2afc01", "sha256": "1c4156f24545f62ff15098cb037de56a1a0249065055a9ebdb0b69a7fb21c934" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9d7d724bb8ed41371df33d0dfa2afc01", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28164, "upload_time": "2019-05-18T16:33:16", "url": "https://files.pythonhosted.org/packages/2a/63/8b4e1eba498709c55d84acd718396cc5f00995b864c82e2bc37567d854ad/twitter_fire_scraper-2.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f77c42cb72127914a3963eef28d878d9", "sha256": "621d2ebfcd919cb37f3ead91dcc32dfb06631cdb02e89e6f04a909d4a02bf76a" }, "downloads": -1, "filename": "twitter-fire-scraper-2.0.1.tar.gz", "has_sig": false, "md5_digest": "f77c42cb72127914a3963eef28d878d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22163, "upload_time": "2019-05-18T16:33:18", "url": "https://files.pythonhosted.org/packages/fc/db/5e9690ea065df83805287635b1a5ccf315341a147e621865c57e421a6104/twitter-fire-scraper-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "7c1e9244a4d83ebccb698081899e90ce", "sha256": "6970229273a77acc335f2d10d95eb4fb26739fbcc53a6fb76b5c2d9c45f8427b" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7c1e9244a4d83ebccb698081899e90ce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28869, "upload_time": "2019-06-08T21:59:31", "url": "https://files.pythonhosted.org/packages/02/49/86305daa775c949a94aee1aef1c2f7ae06c70f7fa884772119ca6526a051/twitter_fire_scraper-2.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9bfab145ea085a28628df8e19b2d9893", "sha256": "0568ecb9b62dbe2c471789b0d153f3dec0553fd1d672866b4182b4756a255e28" }, "downloads": -1, "filename": "twitter-fire-scraper-2.0.2.tar.gz", "has_sig": false, "md5_digest": "9bfab145ea085a28628df8e19b2d9893", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22861, "upload_time": "2019-06-08T21:59:32", "url": "https://files.pythonhosted.org/packages/99/8b/ec1ffbe17e292bdf83aaf7393957e1346be88727327587204d53279da923/twitter-fire-scraper-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "2e50ce8778391f82afacb5aad617d035", "sha256": "9f810d59da40f3565699f99d866ef9b7655693c62698ad20f5d0f9e00bff7fed" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2e50ce8778391f82afacb5aad617d035", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28923, "upload_time": "2019-06-14T02:55:58", "url": "https://files.pythonhosted.org/packages/a2/30/14476db4a5e6e1cb26229c74f2513339224343754f2181f56912ba394441/twitter_fire_scraper-2.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b585f1667b74a08342ade6965796c2c", "sha256": "92d24dc93aecf3c8118052eb47d462905d24618eeb39d45a3afe76c44ce8b648" }, "downloads": -1, "filename": "twitter-fire-scraper-2.0.3.tar.gz", "has_sig": false, "md5_digest": "3b585f1667b74a08342ade6965796c2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23033, "upload_time": "2019-06-14T02:56:00", "url": "https://files.pythonhosted.org/packages/8f/e7/1ffebaec9f0bf98a0df544b760d1009a16c19dbe67aeb0c23883d67582b9/twitter-fire-scraper-2.0.3.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "bbe49951f95aa0102be0e0c58912fc3e", "sha256": "be619c568fc717220cedfe2cda7718fa92997c6f40adfbbb6dba60cc4161f6c2" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "bbe49951f95aa0102be0e0c58912fc3e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 28913, "upload_time": "2019-06-14T03:03:11", "url": "https://files.pythonhosted.org/packages/1b/00/9ce10123c82a8c18a0475488768496b26449461c35242be2e0a877ce727a/twitter_fire_scraper-2.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d979f099fa971addd9e45ee6a7e77f56", "sha256": "323d7f4c25ad18390769dc4f43586b4bdc0d2bc271cafcf638c5b38059bbd687" }, "downloads": -1, "filename": "twitter-fire-scraper-2.0.5.tar.gz", "has_sig": false, "md5_digest": "d979f099fa971addd9e45ee6a7e77f56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23036, "upload_time": "2019-06-14T03:03:13", "url": "https://files.pythonhosted.org/packages/1e/ee/206f762b7117502d1180b974d5cc7018a2b696d7c45b658ecb2136dce88c/twitter-fire-scraper-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "a791c78eccfde8ffbe24aac6a7c054da", "sha256": "b5fab2a4decedbc211116451a681a3cc0cef99f85d2f41ea90f65cca7db9d643" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "a791c78eccfde8ffbe24aac6a7c054da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29173, "upload_time": "2019-06-26T00:30:48", "url": "https://files.pythonhosted.org/packages/f3/f9/5ba14985f71d44cee8185d921f9340037e504293590b3705d2af14bb8143/twitter_fire_scraper-2.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e83d566ac85d7716071b3b302e4e15b8", "sha256": "fbdf048562084c16ea9b8bec0b8994c2d1e31fd7e6b27ac50420d56a3dd5e614" }, "downloads": -1, "filename": "twitter-fire-scraper-2.0.6.tar.gz", "has_sig": false, "md5_digest": "e83d566ac85d7716071b3b302e4e15b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23285, "upload_time": "2019-06-26T00:30:49", "url": "https://files.pythonhosted.org/packages/e0/ac/cf11cc73275d3cf22a09c7544abb47f64ec8cd6f7053c5fc7df7ebd4e0da/twitter-fire-scraper-2.0.6.tar.gz" } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "0e976279d7c03c4b4cb8f5633ef794d6", "sha256": "5b408dabb9ee8473addeb1cb14fd543ee2421073968dcda7fd5c8f473fe6fb68" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "0e976279d7c03c4b4cb8f5633ef794d6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39005, "upload_time": "2019-07-24T21:51:37", "url": "https://files.pythonhosted.org/packages/d8/80/130f36f730947a8345bf3f10596cf16bc8ca10aa0b9dd72bf227539d50ab/twitter_fire_scraper-2.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "081cdc003a2b0ef091e1d7e65b65d7f1", "sha256": "779d164c9acf414cc9f662d7dd97707abd185fb46b1f8f9a49aaa3031a6b0708" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.8.tar.gz", "has_sig": false, "md5_digest": "081cdc003a2b0ef091e1d7e65b65d7f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29219, "upload_time": "2019-07-24T21:51:38", "url": "https://files.pythonhosted.org/packages/89/1e/5fc2c1b33ab39df73b74476686a209e7eb60e9d7e8d362dee252f66567a4/twitter_fire_scraper-2.0.8.tar.gz" } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "e3c0bc67ef667522b73fbb28e450ae14", "sha256": "503c55a8d785bb26f0e1c84cfb7e7cb08de46e1cdce6a93c4da9af1c70111509" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "e3c0bc67ef667522b73fbb28e450ae14", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39015, "upload_time": "2019-07-24T22:44:03", "url": "https://files.pythonhosted.org/packages/35/f1/7aa08172b4a74c398a736c9d060549ac6f88ff0be12d490366c7371ecb1c/twitter_fire_scraper-2.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "400c64b03ba0b2ca3e356953ba0b1042", "sha256": "a6e6481ee2c264b19f446a8e3f185560e8026e8cd479b4a478bd25c2e15633a6" }, "downloads": -1, "filename": "twitter_fire_scraper-2.0.9.tar.gz", "has_sig": false, "md5_digest": "400c64b03ba0b2ca3e356953ba0b1042", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29223, "upload_time": "2019-07-24T22:44:04", "url": "https://files.pythonhosted.org/packages/98/9e/a5d5f0a49dd42191b0092a3ec7b28ad702d60ae1f7ef8a4633ff54b5d15e/twitter_fire_scraper-2.0.9.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "a482dc3a08757af9b32387620cf8611e", "sha256": "1e68d1d97d9ef4fead8c8282f10c2403c350fb122f862629de7ca84907284139" }, "downloads": -1, "filename": "twitter_fire_scraper-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a482dc3a08757af9b32387620cf8611e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43499, "upload_time": "2019-07-31T01:01:48", "url": "https://files.pythonhosted.org/packages/61/c1/f4b575aef7a1a15b1c7c134094c394e07762fa80cfa8115262f04658d721/twitter_fire_scraper-2.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41e6b48a386aede00fcce55e0af58bb4", "sha256": "4abf341c312a9b7014a3c54f270d127ad1a7047bdc43a3597b91d3637951175b" }, "downloads": -1, "filename": "twitter_fire_scraper-2.1.0.tar.gz", "has_sig": false, "md5_digest": "41e6b48a386aede00fcce55e0af58bb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32718, "upload_time": "2019-07-31T01:01:49", "url": "https://files.pythonhosted.org/packages/c6/6f/78f610c2fbb26a473095436325c858b34424769c91a374a8b823af594da6/twitter_fire_scraper-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "8fa19e9ce9e7379d7af96b0d869dda02", "sha256": "933abe0391616d1b5842af34992777abb93d8a7128f6345f1b302d98e132a03d" }, "downloads": -1, "filename": "twitter_fire_scraper-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8fa19e9ce9e7379d7af96b0d869dda02", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 46449, "upload_time": "2019-08-10T05:22:50", "url": "https://files.pythonhosted.org/packages/b5/ae/45accdaf9263ff5ed8ae32f3772e3d11bbba0f68705d187e1ce086a17aaa/twitter_fire_scraper-2.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af040344c89e9747eefba5fdd7546145", "sha256": "5d286fdf2f9ec66781de6403c1667b346021c280a77f9b5f99d35dd6a0dd73dd" }, "downloads": -1, "filename": "twitter_fire_scraper-2.2.0.tar.gz", "has_sig": false, "md5_digest": "af040344c89e9747eefba5fdd7546145", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34766, "upload_time": "2019-08-10T05:22:51", "url": "https://files.pythonhosted.org/packages/b5/71/fcf0b753124b0567ad9c44af1af2e4885abfd6835e1f7e8c6eed97a5c9a7/twitter_fire_scraper-2.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8fa19e9ce9e7379d7af96b0d869dda02", "sha256": "933abe0391616d1b5842af34992777abb93d8a7128f6345f1b302d98e132a03d" }, "downloads": -1, "filename": "twitter_fire_scraper-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8fa19e9ce9e7379d7af96b0d869dda02", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 46449, "upload_time": "2019-08-10T05:22:50", "url": "https://files.pythonhosted.org/packages/b5/ae/45accdaf9263ff5ed8ae32f3772e3d11bbba0f68705d187e1ce086a17aaa/twitter_fire_scraper-2.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af040344c89e9747eefba5fdd7546145", "sha256": "5d286fdf2f9ec66781de6403c1667b346021c280a77f9b5f99d35dd6a0dd73dd" }, "downloads": -1, "filename": "twitter_fire_scraper-2.2.0.tar.gz", "has_sig": false, "md5_digest": "af040344c89e9747eefba5fdd7546145", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34766, "upload_time": "2019-08-10T05:22:51", "url": "https://files.pythonhosted.org/packages/b5/71/fcf0b753124b0567ad9c44af1af2e4885abfd6835e1f7e8c6eed97a5c9a7/twitter_fire_scraper-2.2.0.tar.gz" } ] }