Skip to content

Commit 5308121

Browse files
committed
Fix README issues.
1 parent d5026ae commit 5308121

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Diff for: README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,12 @@ from tika import parser
8181
parsed = parser.from_file('/path/to/file')
8282
print(parsed["metadata"])
8383
print(parsed["content"])
84+
```
85+
86+
Optionally, you can pass Tika server URL along with the call
87+
what's useful for multi-instance execution or when Tika is dockerzed/linked.
8488

85-
# Optionally, you can pass Tika server URL along with the call
86-
# what's useful for multi-instance execution or when Tika is dockerzed/linked
89+
``
8790
parsed = parser.from_file('/path/to/file', 'http://tika:9998/tika')
8891
string_parsed = parser.from_buffer('Good evening, Dave', 'http://tika:9998/tika')
8992
```

0 commit comments

Comments
 (0)