This package allows the users to query its database for all the articles based on a specified keyword(s)
Project description
SCOPUS Caller
ℹ️ Scopus quickly finds relevant and authoritative research, identifies experts and provides access to reliable data, metrics and analytical tools. Be confident in progressing research, teaching or research direction and priorities — all from one database and with one subscription.
What is SCOPUS API
SCOPUS API allows the users to query its database for all the articles based on a specified keyword(s).
A user needs to create an account on SCOPUS using your university or
personal account and generate the SCOPUS key.
The API specification can be seen at this link. Using this API, It is possible
to retrieve title,authors, affiliation, DOI, etc of the scientific articles. Further, depending on the
access level of the article and authorized API, the article's abstract-text can also be retrieved.
Semantic Scholar API
Semantic Scholar also provides an API to retrieve the article's meta-data. It is possible to obtain abstracts by specifying the DOI of the article. Abstracts for all SCOPUS database articles are not available from Semantic Scholar database.
Installation
-
Create a virtual environment to install all packages in and activate the environment:
(Make sure you are in the parrent folder of this project)# crate an environment called venv in this project python3 -m venv ~/.scopus-caller # activate the environment source ~/.scopus-caller/bin/activate
-
Install the package
pip install scopus-caller
Obtain the API Key
- If you haven't created an account on SCOPUS yet, got to SCOPUS and create a private account or one via your university.
- After being logged in, create a new API key here, name the label to your
likings and leave the website input field empty (it is not important).
Carefully read and understand the "API SERVICE AGREEMENT" and "Text and Data Mining (TDM) Provisions", before using the API and the retrieved data. These will be presented to the user while generating the API. - Copy you API key and store it in a text file.
Usage
Import the library and paste the API key. Then run the following code in Python3 terminal or Jupyter notebook.
# import the module
import scopuscaller as sc
# paste the api here
api_key = ""
Parameters of function call_scopus.py:
Parameters:
- api_key (str): Your Elsevier API key for authentication.
- keywords (list of str): Keywords to search for in article titles and abstracts.
- year (int, optional): The publication year to filter the articles. Default is 2023.
Example:
The following command will search for articles with the search terms transportation
, road safety
and machine learning
published before 2023 (inclusive).
# Obtain the articles
df = sc.get_titles(api_key, ["transportation", "road safety", "transfer learning"], 2023)
# Obtain the abstracts of the above articles. For abstracts, you need to specify the output of previous step as input and then run the following
df = sc.get_abstracts(df)
Citing
This is based on the base script Scopus-Query, so kindly cite:
- Narayanan, S., & Antoniou, C. (2022). Electric cargo cycles - A comprehensive review. Transport Policy, 116 , 278–303. doi:10.1016/j.tranpol.2021.12.011.
Further, to see examples of how the keywords are used, you may see the Supplementary information in the following publication:
- Vishal Mahajan, Nico Kuehnel, Aikaterini Intzevidou, Guido Cantelmo, Rolf Moeckel & Constantinos Antoniou (2022) Data to the people: a review of public and proprietary data for transport models, Transport Reviews, 42:4, 415-440, DOI: 10.1080/01441647.2021.1977414
License
Distributed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file scopus_caller-0.1.4.tar.gz
.
File metadata
- Download URL: scopus_caller-0.1.4.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eea6d73f84f68db831778d0ed92e36015c20fc05effc3c0223dc446553353e32 |
|
MD5 | 17b4c16d69710d3beb4bdcbedd1b0ebb |
|
BLAKE2b-256 | ac0383cd46bbe436c7a98387e6236d3bfe5abd0dc0c5af57bf213044d4096371 |
File details
Details for the file scopus_caller-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: scopus_caller-0.1.4-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbd72d0b480a3d47d57019f99236654ac927bc130a95d0076d6a2453d787dc70 |
|
MD5 | 7d4b2117ca7703ee69518f568e31bdb3 |
|
BLAKE2b-256 | 0fffcf75ae0497cb32a6fac226c74b481be8834d6d40dd11c2f09c896dd23529 |