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.
The following visualizations are generated by the script using the keyword AI, with results limited to a maximum of 500 entries(max_results=500).
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)