Skip to content

Commit 5bcb6eb

Browse files
committed
Unstructured-IO#3713 fix the wrong file path in README.md
1 parent 06c8523 commit 5bcb6eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Once in the running container, you can try things directly in Python interpreter
101101
python3
102102

103103
>>> from unstructured.partition.pdf import partition_pdf
104-
>>> elements = partition_pdf(filename="example-docs/layout-parser-paper-fast.pdf")
104+
>>> elements = partition_pdf(filename="example-docs/pdf/layout-parser-paper-fast.pdf")
105105

106106
>>> from unstructured.partition.text import partition_text
107107
>>> elements = partition_text(filename="example-docs/fake-text.txt")
@@ -198,7 +198,7 @@ See our [installation guide](https://docs.unstructured.io/open-source/installat
198198
```python
199199
from unstructured.partition.auto import partition
200200

201-
elements = partition("example-docs/layout-parser-paper.pdf")
201+
elements = partition("example-docs/pdf/layout-parser-paper.pdf")
202202
```
203203

204204
Run `print("\n\n".join([str(el) for el in elements]))` to get a string representation of the

0 commit comments

Comments
 (0)