When I try to use
Trafilatura Website Loader, I get this error:
/usr/local/lib/python3.10/dist-packages/llama_index/readers/download.py in download_loader(loader_class, loader_hub_url, refresh_cache, use_gpt_index_import, custom_path)
138 library = json.loads(library_raw_content)
139 if loader_class not in library:
--> 140 raise ValueError("Loader class name not found in library")
141
142 loader_id = library[loader_class]["id"]
ValueError: Loader class name not found in library
Python code:from llama_index import download_loader
TrafilaturaWebReader = download_loader("TrafilaturaWebReader")
loader = TrafilaturaWebReader()
documents = loader.load_data(urls=['https://google.com'])