Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 2.07 KB

README.md

File metadata and controls

51 lines (37 loc) · 2.07 KB

Visual-Google-Scholar-Search

Visual Google Scholar Search is a Python script that allows researchers to search Google Scholar for specific keywords and visualize the results in various formats. This tool provides insights into academic literature and allows for an in-depth analysis of trends and citations.

Visualizations

The following visualizations are generated by the script using the keyword AI, with results limited to a maximum of 500 entries(max_results=500).

Yearly Analysis

Citations Analysis

Citations Over the Years

Word Cloud

Top 20 Words

Usage

To run the script, you can specify the keyword you want to search for and set a limit on the number of results with max_results. The script retrieves relevant data, including:

  • Title: publication['bib'].get('title', '')
  • Authors: publication['bib'].get('author', '')
  • Abstract: publication['bib'].get('abstract', '')
  • Year: publication['bib'].get('pub_year', '')
  • Venue: publication['bib'].get('venue', '')
  • GSRank: publication.get('gsrank', '')
  • Pub URL: publication.get('pub_url', '')
  • Citations: publication.get('num_citations', 0)