pardata.load_schema_collections

pardata.load_schema_collections(*, force_reload=False, tls_verification=True)

Loads a schema.SchemaCollectionManager object that stores all schema collections. To export the loaded schema.SchemaCollectionManager object, please use export_schema_collections().

Parameters
  • force_reload (bool) – If True, force reloading even if the provided URLs by init() are the same as provided last time. Otherwise, only those that are different from previous given ones are reloaded.

  • tls_verification (Union[bool, str, os.PathLike]) – Same as tls_verification in schema.SchemaCollection.

Raises
Return type

None

Example: >>> load_schema_collections() >>> loaded_schemata = export_schema_collections() >>> loaded_schemata.schema_collections {‘datasets’: …, ‘formats’: …, ‘licenses’:…}