Metadata-Version: 2.4
Name: get_rankings
Version: 1.1
Summary: DBLP ranking using CORE Rank and SJR
Home-page: https://gitlab.irit.fr/sepia-pub/da-costa/get-rankings
Author: Georges Da Costa
Author-email: georges.da-costa@irit.fr
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: requests
Requires-Dist: BeautifulSoup4
Requires-Dist: datetime
Requires-Dist: parsedate
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: argparse
Requires-Dist: lxml
Requires-Dist: tqdm
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# DBLP ranking using CORE Rank and SJR

## Install

``` bash
pip install get_rankings
```

## Run

```
get_rankings DBLP_URL
```

Gives and overview of a dblp account. The first run will be slow as some data will be cached.

For example

```
get_rankings https://dblp.org/pid/37/2282.html
```

## Usage
```
usage: get_rankings [-h] [--start START] [--end END] [-o output.csv] [-d] [--debug] [-v] url

Get ranking from DBLP and show a small summary

positional arguments:
  url            DBLP url

options:
  -h, --help     show this help message and exit
  --start START  starting year
  --end END      ending year
  -o output.csv  output csv file
  -d             display conference and journal list
  --debug        Print lots of debugging statements
  -v, --verbose  Be verbose
```

## Thanks

Thanks for Laurent Reveillere ([dblp_ranker](https://github.com/reveillere/dblp_ranker) and Xavier Blanc [dblp_ranker](https://github.com/xblanc33/dblp_ranker) for their initial version in nodejs.
