Load an URL
Reference documentation on loading URLs for sending, using Mindee client libraries.
Last updated
Was this helpful?
Was this helpful?
from mindee import UrlInputSource
input_source = UrlInputSource(
"https://example.com/file.ext"
)const inputSource = new mindee.UrlInput({
url: "https://example.com/file.ext"
});use Mindee\Input\URLInputSource;
$inputSource = new URLInputSource(
url: "https://example.com/file.ext"
);require 'mindee'
input_source = Mindee::Input::Source::URLInputSource.new(
'https://example.com/file.ext'
)import com.mindee.input.URLInputSource;
URLInputSource inputSource = URLInputSource
.builder("https://example.com/file.ext")
.build();var inputSource = new UrlInputSource(
"https://example.com/file.ext");