Metadata-Version: 2.1
Name: googletrends
Version: 0.1.1
Summary: Python package to examine trending, spatio and temporal google searching for input queries.
Home-page: https://github.com/erdogant/googletrends
Author: Erdogan Taskesen
Author-email: erdogant@gmail.com
License: UNKNOWN
Download-URL: https://github.com/erdogant/googletrends/archive/0.1.1.tar.gz
Description: # googletrends
        
        [![Python](https://img.shields.io/pypi/pyversions/googletrends)](https://img.shields.io/pypi/pyversions/googletrends)
        [![PyPI Version](https://img.shields.io/pypi/v/googletrends)](https://pypi.org/project/googletrends/)
        [![License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/erdogant/googletrends/blob/master/LICENSE)
        [![Downloads](https://pepy.tech/badge/googletrends/week)](https://pepy.tech/project/googletrends/week)
        [![Donate](https://img.shields.io/badge/donate-grey.svg)](https://erdogant.github.io/donate/?currency=USD&amount=5)
        
        * googletrends is Python package to examine trending, spatio and temporal google searching for input queries.
        
        Data is al arround us. Some data is easy to get, others are not. Especially when it comes to what people are "thinking" related to an issue/brand/company can be though. However, the "thinking" process can supported by googling about the subject. So if we know what people are searching for, it can give insights in the "common" thoughts. To make it a bit less creepy, lets not do this on an individual basis. I developed the python package googletrends that allows to easily examine the search results per country/region and/or per time-frame and with(out) a specific keyword.
        
        To demonstrate this, lets examine the google searches for the keywords "Corona" and "Wuhan" in the Netherlands and Italy, starting from December 2019 up to today. If you want to examine other keywords, simply pip install the library.
        
        pip install googletrends
        https://github.com/erdogant/googletrends
        
        <p align="center">
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/summary.png" width="1000" />
        </p>
        
        
        ### Contentsa 
        - [Installation](#-installation)
        - [Quick Start](#-quick-start)
        - [Contribute](#-contribute)
        - [Citation](#-citation)
        - [Maintainers](#-maintainers)
        - [License](#-copyright)
        
        ### Installation
        * Install googletrends from PyPI (recommended). googletrends is compatible with Python 3.6+ and runs on Linux, MacOS X and Windows. 
        * A new environment can be created as following: 
        ```python
        conda create -n env_googletrends python=3.6
        conda activate env_googletrends
        ```
        
        Pip install:
        ```python
        pip install googletrends
        ```
        
        * Alternatively, install googletrends from the GitHub source:
        ```bash
        git clone https://github.com/erdogant/googletrends.git
        cd googletrends
        python setup.py install
        ```  
        
        #### Import googletrends package
        ```python
        import googletrends as googletrends
        ```
        
        #### Examine google searches over time.
        
        In this example multiple searchwords are examined for multiple countries over time.
        Countries can be in the form of their abbrevation or country name.
        The until date is not given and automatically set on today.
        
        ```python
        # Gather temporal searches
        results = googletrends.temporal(['corona','covid-19','virus'], geo=['NL','DE','italy','BE'], date_start='01-01-2020')
        
        # Make plot using default settings
        googletrends.plot(results)
        ```
        
        Progress looks like this:
        
        ```python
        # [googletrends] Collecting trends over time for geographically: ['NL', 'DE', 'italy', 'BE']
        # [googletrends] 01 January 2020 - 30 March 2020
        # [worldmap] Downloading resources..
        # [worldmap.extract] Warning: Directory with maps does not exist: .\worldmap\worldmap\data\SVG_MAPS
        # [EXTRACT FILES] Directory already exists and will be used: .\worldmap\worldmap\data
        # [EXTRACT FILES] Extracting SVG_MAPS.zip..
        # 100%|â–ˆâ–ˆâ–ˆâ–ˆâ–ˆâ–ˆâ–ˆâ–ˆâ–ˆâ–ˆ| 1/1 [00:00<00:00,  9.12it/s]
        # [EXTRACT FILES] Done!
        # [googletrends] [NL] Working on corona..
        
        # [googletrends] [NL] Working on covid-19..
        # [googletrends] [DE] Working on corona..
        # [googletrends] [DE] Working on covid-19..
        # [googletrends] [IT] Working on corona..
        # [googletrends] [IT] Working on covid-19..
        # [googletrends] [BE] Working on corona..
        # [googletrends] [BE] Working on covid-19..
        ```
        
        #### Color and make different subgroups for the results.
        
        ```python
        googletrends.plot(results, color_by_searchword=False, group_by_searchword=False)
        ```
        <p align="center">
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/fig1.png" width="600" />
        </p>
        
        ```python
        googletrends.plot(results, color_by_searchword=True, group_by_searchword=False)
        ```
        <p align="center">
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/fig2.png" width="600" />
        </p>
        
        ```python
        googletrends.plot(results, color_by_searchword=False, group_by_searchword=True)
        ```
        <p align="center">
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/fig3.png" width="600" />
        </p>
        
        
        ```python
        googletrends.plot(results, color_by_searchword=True, group_by_searchword=True)
        ```
        <p align="center">
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/fig4.png" width="600" />
        </p>
        
        
        #### Examine google searches over geographical locations.
        
        In this example multiple searchwords are examined for multiple geographical locations.
        All frequencies are summarized into one value between the start-stop date.
        Countries can be in the form of their abbrevation or country name.
        
        ```python
        # Gather searches over geographical locations
        results = googletrends.spatio(['corona','covid-19','virus'], geo=['NL','DE','italy','BE'], date_start='01-01-2020')
        
        # Make plot
        googletrends.plot(results)
        ```
        <p align="center">
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/spatio_NL.png" width="600" />
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/spatio_DE.png" width="600" />
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/spatio_IT.png" width="600" />
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/spatio_BE.png" width="600" />
        </p>
        
        <p align="center">
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/Netherlands_total.svg"/>
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/Germany_total.svg"/>
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/Italy_total.svg"/>
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/Belgium_total.svg"/>
        </p>
        
        ```python
        # Make worldmap plot
        googletrends.plot_worldmap(results)
        ```
        <p align="center">
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/total_worldmap.svg" width="600" />
        </p>
        
        #### Examine trending searches.
        
        In this example multiple searchwords at multiple geographical locations are examined for trending searches.
        All frequencies are summarized into one value between the start-stop date.
        
        ```python
        # Gather searches over geographical locations
        results = googletrends.trending(['corona','covid-19','virus'], geo=['NL','DE','italy','BE'], date_start='01-01-2020')
        
        # Make plot
        googletrends.plot(results)
        ```
        <p align="center">
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/trending_NL.png" width="600" />
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/trending_DE.png" width="600" />
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/trending_IT.png" width="600" />
          <img src="https://github.com/erdogant/googletrends/blob/master/docs/figs/trending_BE.png" width="600" />
        </p>
        
        
        #### Citation
        Please cite googletrends in your publications if this is useful for your research. Here is an example BibTeX entry:
        ```BibTeX
        @misc{erdogant2020googletrends,
          title={googletrends},
          author={Erdogan Taskesen},
          year={2019},
          howpublished={\url{https://github.com/erdogant/googletrends}},
        }
        ```
        
        #### References
        * 
           
        #### Maintainers
        * Erdogan Taskesen, github: [erdogant](https://github.com/erdogant)
        
        #### Contribute
        * Contributions are welcome.
        
        #### Licence
        See [LICENSE](LICENSE) for details.
        
        #### Coffee
        * This work is created and maintained in my free time. If you wish to buy me a <a href="https://erdogant.github.io/donate/?currency=USD&amount=5">Coffee</a> for this work, it is very appreciated.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
