Collect and process real time twitter data plotting various metrics like volume , proportion, sentiment. Analyze tweet node networks and map them geographically.
What kind of change does this PR introduce?
This PR introduces a build change - making installation of dependencies easier.
(I'm not sure if this PR would exactly fall under the 'build' type; I thought it was the closest match)
What is the current behavior?
Users using this tool will need to install all (uninstalled) dependencies one by one
What is the new behavior?
A requirements.txt file is added using which all the required dependencies for the project can be installed at once using the command pip install -r requirements.txt
Test plan
The requirements.txt file was generated using the pipreqs module available in the official Python Package Index (https://pypi.org/project/pipreqs/)
Fixes #1
What kind of change does this PR introduce? This PR introduces a build change - making installation of dependencies easier. (I'm not sure if this PR would exactly fall under the 'build' type; I thought it was the closest match)
What is the current behavior? Users using this tool will need to install all (uninstalled) dependencies one by one
What is the new behavior? A requirements.txt file is added using which all the required dependencies for the project can be installed at once using the command
pip install -r requirements.txt
Test plan The requirements.txt file was generated using the pipreqs module available in the official Python Package Index (https://pypi.org/project/pipreqs/)