Metadata-Version: 2.1
Name: scopus_of_science
Version: 0.0.1
Summary: Merge Scopus and WoS databases in Scopus csv format
Home-page: https://github.com/albesibbe/scopus_of_science
Author: Alberto Silvestri
Author-email: albertosilvestri@me.com
License: UNKNOWN
Description: # scopus_of_science
        [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
        [![Build Status](https://travis-ci.com/albesibbe/scopus_of_science.svg?branch=master)](https://travis-ci.com/albesibbe/scopus_of_science)
        
        ## Description
        This package merges databases downloaded from Scopus (.csv) and Web of Science (.txt). 
        It returns a pandas DataFrame which can be saved as a Scopus .csv file compatible with 
        softwares for bibliographic analysis (such as [**VOSviewer**][VOSviewer]) 
        
        [VOSviewer]: https://www.vosviewer.com/
        
        ## Installation
        ```python
        pip install scopus_of_science
        ```
        
        ## Usage
        
        ```python
        >>> from scopus_of_science import sos
        
        >>> s = sos.SOS(sco="datasets/scopus.csv", wos=["datasets/wos1-500.txt", "datasets/wos501-526.txt"])
        
        >>> data = s.get()
        
        >>> print(data)
        
        >>> data.to_csv("exel_filename.csv")
        
        ```
        ## Dependencies
        - [pandas](https://pandas.pydata.org/)
        
        ## Contributing
        All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome
        
Keywords: Scopus,Web of Science,wos
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
