oc_validator is a Python (≥3.9) library to validate CSV documents storing citation data and bibliographic metadata. To be processed by the validator, the tables must be built as either CITS-CSV or META-CSV tables, defined in two specification documents12.
The library can be installed from pip:
pip install oc_validator
The validation process can be executed from the CLI by running the following command:
python -m oc_validator.main -i <input csv file path> -o <output dir path> [-m] [-s]
-i
,--input
: The path to the CSV file to validate.-o
,--output
: The path to the directory where the output JSON file and .txt file will be stored.
-m
,--use-meta
: Enables the use of the OC Meta endpoint instead of external APIs to check if an ID exists (by checking if it is registered in OpenCitations Meta). If included, this option allows to fasten the whole process, since querying Meta is faster than querying external APIs, but results might not be the most up to date.-s
,--no-id-existence
: Skips the check for ID existence altogether, ensuring that neither the Meta endpoint nor any external APIs are used during validation. This allows for a much shorter execution time, but does not make sure that all the submitted IDs actually refer to real-world entities.
To validate a CSV file and output the results to a specified directory (with optional parameters set to default values, i.e. checking for the existence of IDs via querying external APIs):
python -m oc_validator.main -i path/to/input.csv -o path/to/output_dir
To use OC Meta endpoint instead of external APIs to verify the existence of the IDs:
python -m oc_validator.main -i path/to/input.csv -o path/to/output_dir -m
To skip all ID existence verification:
python -m oc_validator.main -i path/to/input.csv -o path/to/output_dir -s
An object of the Validator
class is instantiated, passing as parameters the path to the input document to validate and the path to the directory where to store the output. By calling the validate()
method on the instance of Validator
, the validation process gets executed.
The process automatically detects which of the two tables has been passed as input (on condition that the input CSV document's header is formatted correctly for at least one of them). During the process, the whole document is always processed: if the document is invalid or contains anomalies, the errors/warnings are reported in detail in a JSON file and summarized in a .txt file, which will be automatically created in the output directory. validate
also returns a list of dictionaries corresponding to the JSON validation report (empty if the document is valid).
from oc_validator.main import Validator
# Basic validation
v = Validator('path/to/table.csv', 'output/directory')
v.validate()
# Validation with Meta endpoint checking for ID existence
v = Validator('path/to/table.csv', 'output/directory', use_meta_endpoint=True)
v.validate()
# Validation skipping all ID existence checks
v = Validator('path/to/table.csv', 'output/directory', verify_id_existence=False)
v.validate()
Footnotes
-
Massari, Arcangelo, and Ivan Heibi. 2022. ‘How to Structure Citations Data and Bibliographic Metadata in the OpenCitations Accepted Format’. https://doi.org/10.48550/arXiv.2206.03971. ↩
-
Massari, Arcangelo. 2022. ‘How to Produce Well-Formed CSV Files for OpenCitations’. https://doi.org/10.5281/zenodo.6597141. ↩