mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +00:00
b201cfaa0f
# docs `ecosystem/integrations` update 4 Added missed integrations. Fixed inconsistencies. ## Who can review? @hwchase17 @dev2049
37 lines
880 B
Markdown
37 lines
880 B
Markdown
# Arxiv
|
|
|
|
>[arXiv](https://arxiv.org/) is an open-access archive for 2 million scholarly articles in the fields of physics,
|
|
> mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering and
|
|
> systems science, and economics.
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
First, you need to install `arxiv` python package.
|
|
|
|
```bash
|
|
pip install arxiv
|
|
```
|
|
|
|
Second, you need to install `PyMuPDF` python package which transforms PDF files downloaded from the `arxiv.org` site into the text format.
|
|
|
|
```bash
|
|
pip install pymupdf
|
|
```
|
|
|
|
## Document Loader
|
|
|
|
See a [usage example](../modules/indexes/document_loaders/examples/arxiv.ipynb).
|
|
|
|
```python
|
|
from langchain.document_loaders import ArxivLoader
|
|
```
|
|
|
|
## Retriever
|
|
|
|
See a [usage example](../modules/indexes/retrievers/examples/arxiv.ipynb).
|
|
|
|
```python
|
|
from langchain.retrievers import ArxivRetriever
|
|
```
|