We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5026ae commit 5308121Copy full SHA for 5308121
README.md
@@ -81,9 +81,12 @@ from tika import parser
81
parsed = parser.from_file('/path/to/file')
82
print(parsed["metadata"])
83
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.
88
-# Optionally, you can pass Tika server URL along with the call
-# what's useful for multi-instance execution or when Tika is dockerzed/linked
89
+``
90
parsed = parser.from_file('/path/to/file', 'http://tika:9998/tika')
91
string_parsed = parser.from_buffer('Good evening, Dave', 'http://tika:9998/tika')
92
```
0 commit comments