PyPDFium2Loader
This notebook provides a quick overview for getting started with PyPDFium2 document loader. For detailed documentation of all __ModuleName__Loader features and configurations head to the API reference.
Overview​
Integration details​
Class | Package | Local | Serializable | JS support |
---|---|---|---|---|
PyPDFium2Loader | langchain_community | ✅ | ❌ | ❌ |
Loader features​
Source | Document Lazy Loading | Native Async Support |
---|---|---|
PyPDFium2Loader | ✅ | ❌ |
Setup​
To access PyPDFium2 document loader you'll need to install the langchain-community
integration package.
Credentials​
No credentials are needed.
If you want to get automated best in-class tracing of your model calls you can also set your LangSmith API key by uncommenting below:
# os.environ["LANGSMITH_API_KEY"] = getpass.getpass("Enter your LangSmith API key: ")
# os.environ["LANGSMITH_TRACING"] = "true"
Installation​
Install langchain_community.
%pip install -qU langchain_community