# GrobidParser

> **Class** in `langchain_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-community/document_loaders/parsers/grobid/GrobidParser)

Load  article `PDF` files using `Grobid`.

## Signature

```python
GrobidParser(
    self,
    segment_sentences: bool,
    grobid_server: str = 'http://localhost:8070/api/processFulltextDocument',
)
```

## Extends

- `BaseBlobParser`

## Constructors

```python
__init__(
    self,
    segment_sentences: bool,
    grobid_server: str = 'http://localhost:8070/api/processFulltextDocument',
) -> None
```

| Name | Type |
|------|------|
| `segment_sentences` | `bool` |
| `grobid_server` | `str` |


## Properties

- `segment_sentences`
- `grobid_server`

## Methods

- [`process_xml()`](https://reference.langchain.com/python/langchain-community/document_loaders/parsers/grobid/GrobidParser/process_xml)
- [`lazy_parse()`](https://reference.langchain.com/python/langchain-community/document_loaders/parsers/grobid/GrobidParser/lazy_parse)

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/4b280287bd55b99b44db2dd849f02d66c89534d5/libs/community/langchain_community/document_loaders/parsers/grobid.py#L19)