scopus-of-science

Merge Scopus and WoS databases in Scopus csv format


Keywords
Scopus, Web, of, Science, wos
License
GPL-3.0
Install
pip install scopus-of-science==0.0.4

Documentation

scopus_of_science

License: GPL v3 Build Status

Description

This package merges databases downloaded from Scopus (.csv) and Web of Science (plain text with the extension .txt). It returns a pandas DataFrame which can be saved as a Scopus .csv file compatible with softwares for bibliographic analysis (such as VOSviewer)

Installation

pip install scopus_of_science

Usage

from scopus_of_science import SOS

s = SOS(sco="datasets/scopus.csv", wos=["datasets/wos1.txt", "datasets/wos2.txt"])

data = s.get()

print(data)

data.to_csv("csv_filename.csv", index=False)

Dependencies

Contributing

All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome