From 3a4d256f635e7b1d1565bba699a9ca3533cd9c6b Mon Sep 17 00:00:00 2001 From: Fernando Wittmann Date: Thu, 16 Nov 2023 02:33:23 -0300 Subject: [PATCH] Update readme --- README.md | 185 ++++++++++++++++++++++++++---------------------------- 1 file changed, 90 insertions(+), 95 deletions(-) diff --git a/README.md b/README.md index 3604435..cc6331c 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,29 @@ -# Sort Google Scholar by the Number of Citations V2.0b -This Python code ranks publications data from Google Scholar by the number -of citations. It is useful for finding relevant papers in a specific field. - -The data acquired from Google Scholar is Title, Citations, Links and Rank. A new -columns with the number of citations per year is also included. -The example of the code will look for the top 100 papers related to the keyword, -and rank them by the number of citations. This keyword can eiter be included in -the command line terminal (`$python sortgs.py --kw 'my keyword'`) or edited in -the original file. -As output, a .csv file will be returned with the name of the chosen keyword -ranked by the number of citations. - -## UPDATES -- Try running the code using Google Colab -> [](https://colab.research.google.com/github/WittmannF/sort-google-scholar/blob/master/Test_sortgs_py_on_Colab.ipynb) - - No install requirements! Limitations: Can't handle robot checking, so use it carefully. -- Command line arguments. Ex: `$python sortgs.py --kw "deep learning"` (results saved in `deep_learning.csv`) -- Handling robot checking with selenium. - - OBS: You might be asked to manually solve the first captcha for retrieving the content of the pages +# Sort Google Scholar by the Number of Citations + +sortgs is a Python tool for ranking Google Scholar publications by the number of citations. It is useful for finding relevant papers in a specific field. The data acquired from Google Scholar includes Title, Citations, Links, Rank, and a new column with the number of citations per year. In the background, it first try to fetch results using python requests. If it fails, it will use selenium to fetch the results. + +## Try on Google Colab: [](https://colab.research.google.com/github/WittmannF/sort-google-scholar/blob/master/Test_sortgs_py_on_Colab.ipynb) + - No install requirements! Limitations: Can't handle robot checking, so use it carefully. + +## Installation + +You can now install `sortgs` directly using `pip`: + +```bash +pip install sortgs +``` + +This will install the latest version of `sortgs` and its dependencies. + +## Usage + +Once installed, you can run `sortgs` directly from the command line: + +```bash +sortgs "your keyword" +``` + +Replace `"your keyword"` with any keyword you'd like to search for. A CSV file with the name `your_keyword.csv` will be created in your current directory. ## Misc If this project was helpful to you in any way, feel free to buy me a cup of coffee :) @@ -25,94 +32,92 @@ If this project was helpful to you in any way, feel free to buy me a cup of coff For a feedback, send me an email: fernando [dot] wittmann [at] gmail [dot] com +### Command Line Arguments -## Usage of `sortgs.py` -``` -usage: sortgs.py [-h] [--kw KEYWORD] [--sortby SORTBY] [--nresults NRESULTS] - [--csvpath CSVPATH] [--notsavecsv] [--plotresults] - [--startyear STARTYEAR] [--endyear ENDYEAR] +```bash +usage: sortgs [-h] [--sortby SORTBY] [--nresults NRESULTS] [--csvpath CSVPATH] + [--notsavecsv] [--plotresults] [--startyear STARTYEAR] + [--endyear ENDYEAR] [--debug] kw -Example: $python sortgs.py --kw 'deep learning' +positional arguments: + kw Keyword to be searched. Use double quote followed by + simple quote for an exact keyword. + Example: sortgs "'exact keyword'" optional arguments: -h, --help show this help message and exit - --kw KEYWORD Keyword to be searched. Default is 'machine learning' - Use double quote followed by simple quote to search - for an exact keyword. Example: "'exact keyword'" - --sortby SORTBY Column to be sorted by. Default is by the columns - "Citations", i.e., it will be sorted by the number of - citations. If you want to sort by citations per year, - use --sortby "cit/year" - --nresults NRESULTS Number of articles to search on Google Scholar. - Default is 100. (carefull with robot checking if value - is too high) - --csvpath CSVPATH Path to save the exported csv file. By default it is - the current folder - --notsavecsv By default results are going to be exported to a csv - file. Select this option to just print results but not - store them - --plotresults Use this flag in order to plot the results with the - original rank in the x-axis and the number of citaions - in the y-axis. Default is False + --sortby SORTBY Column to be sorted by. Default is "Citations". To sort + by citations per year, use --sortby "cit/year" + --nresults NRESULTS Number of articles to search on Google Scholar. Default + is 100. (careful with robot checking if value is high) + --csvpath CSVPATH Path to save the exported csv file. Default is the + current folder + --notsavecsv By default, results are exported to a csv file. Select + this option to just print results but not store them + --plotresults Use this flag to plot results with the original rank on + the x-axis and the number of citations on the y-axis. + Default is False --startyear STARTYEAR Start year when searching. Default is None --endyear ENDYEAR End year when searching. Default is current year + --debug Debug mode. Used for unit testing. It will get pages + stored on web archive ``` -## Example -The following code will search for the top 100 results, rank by number of citations and save as a .csv file (same name of the keyword): -``` -$python sortgs.py --kw "machine learning" -``` +### Examples -Sorted by number of citations per year (**HIGHLY RECOMMENDED**): -``` -$python sortgs.py --kw "machine learning" --sortby "cit/year" -``` +1. **Default Search**: + ```bash + sortgs "machine learning" + ``` + This command searches for the top 100 results related to "machine learning" and saves them as a CSV file. -From 2005 to 2015: -``` -$python sortgs.py --kw "machine learning" --startyear 2005 --endyear 2015 -``` +2. **Sort by Citations per Year**: + ```bash + sortgs "machine learning" --sortby "cit/year" + ``` + Search for "machine learning" and sort by the number of citations per year. -Search for an exact keywork: -``` -$python sortgs.py --kw "'machine learning'" -``` +3. **Specify Date Range**: + ```bash + sortgs "machine learning" --startyear 2005 --endyear 2015 + ``` + Search for papers from 2005 to 2015. -Save results under a subfolder called 'examples' -``` -$python sortgs.py --kw 'neural networks' --csvpath './examples/' -``` +4. **Search for an Exact Keyword**: + ```bash + sortgs "'machine learning'" + ``` -You can also add multiple keywords by fencing them with a single quote: -``` -$python sortgs.py --kw '"deep learning" OR "neural networks" OR "machine learning"' --sortby "cit/year" -``` +5. **Save Results in a Specific Path**: + ```bash + sortgs 'neural networks' --csvpath './examples/' + ``` + This will save the results under a subfolder called 'examples'. + +6. **Multiple Keywords**: + ```bash + sortgs '"deep learning" OR "neural networks" OR "machine learning"' --sortby "cit/year" + ``` + +### Output Example + +While running, `sortgs` will provide updates in the terminal: -Example of output while running: ``` +❯ sortgs "'machine learning'" +Running with the following parameters: +Keyword: 'machine learning', Number of results: 100, Save database: True, Path: /Users/wittmann/sort-google-scholar, Sort by: Citations, Plot results: False, Start year: None, End year: 2023, Debug: False Loading next 10 results -Robot checking detected, handling with selenium (if installed) -Loading... -Solve captcha manually and press enter here to continue... -year not found, appending 0 Loading next 20 results -Robot checking detected, handling with selenium (if installed) -Loading next 30 results -Robot checking detected, handling with selenium (if installed) -Loading next 40 results +... ``` -## Installation -SortGS is not available (yet) on PyPa. The most straight foward way to use it is the following: +## Step-by-Step Installation 1. Install Python 3 and its dependencies from **Requirements** (suggestion: use Ananconda https://www.anaconda.com/distribution/) -2. Download the repository. Two ways to do this: - - Use the command `git clone https://github.com/WittmannF/sort-google-scholar.git` in your terminal (if linux/MAC) or CMD (if windows) - - Or download using this link: https://github.com/WittmannF/sort-google-scholar/archive/master.zip and unzip -3. Open the folder of sortgs on your terminal (if linux/MAC) or CMD (if windows) -4. Use the command `python sortgs.py --kw "your keyword"` (replace "your keyword" to any keyword that you'd like to search) -5. A CSV file with the name `your_keyword.csv` should be created. +2. In the terminal (or cmd if using Windows), run `pip install sortgs` +3. Use the command `sortgs "your keyword"` (replace "your keyword" to any keyword that you'd like to search) +4. A CSV file with the name `your_keyword.csv` should be created. If those steps are too complicated for you, send me an email with a list of keyworks that you'd like them ranked to: fernando [dot] wittmann [at] gmail [dot] com @@ -172,13 +177,3 @@ $python -m unittest ## LICENSE - MIT - - -### Citation -This code was originally developed for my [MS Dissertation](http://repositorio.unicamp.br/jspui/handle/REPOSIP/330610). For referencing this tool, you can use the following: - -``` -WITTMANN, Fernando Marcos. Optimization applied to residential non-intrusive load monitoring. 2017. -Dissertation (Masters) - University of Campinas, School of Electrical and Computer Engineering, Campinas, SP. -Available in: . -```