Skip to content

tools.spider.process_spider_url_bib

Classes

CheckDeleteFormatMoveSpideredBibs

CheckDeleteFormatMoveSpideredBibs(
    path_storage, path_shutil, options
)

Experiment for check.

Parameters:

Name Type Description Default
path_storage str

path to storage

required
path_shutil str

path to shutil

required
options dict[str, Any]

options for check, delete, format

required

Attributes:

Name Type Description
path_storage str

path to storage

path_shutil str

path to shutil

publisher_abbr_dict dict[str, dict[str, Any]]

publisher abbreviation options dict

Source code in pybibtexer/tools/spider/process_spider_url_bib.py
def __init__(self, path_storage: str, path_shutil: str, options: dict[str, Any]) -> None:
    self.path_storage = standard_path(path_storage)
    self.path_shutil = standard_path(path_shutil)
    self.publisher_abbr_dict = generate_standard_publisher_abbr_options_dict(self.path_storage, options)

Functions