Source code for irspdf.build
import pickle as pkl
from .ir_collection import IRCollection
[docs]def build(folder_path, pkl_path):
"""Builds and save a collection
:param folder_path: folder containing all pdf files used to build the
collection
:type folder_path: str
:param pkl_path: pkl file were the collection will be saved
:type pkl_path: str
"""
collection = IRCollection(folder_path)
pkl.dump(collection, open(pkl_path, 'wb'))