Skip to content

v0.1.1

Latest
Compare
Choose a tag to compare
@afourney afourney released this 25 Mar 06:32
· 8 commits to main since this release
c1f9a32

What's Changed

convert_url renamed to convert_uri, and now handles data and file URIs by @afourney in #1153

NOTE: convert_url remains an alias to convert_uri, for backward compatibility.

Both now accept file URIs and data URIs:

e.g.,

markitdown = MarkItDown()
result = markitdown.convert_uri("file:///path/to/file.txt")
print(result.markdown)

And,

markitdown = MarkItDown()
result = markitdown.convert_uri("data:text/plain;base64,SGVsbG8sIFdvcmxkIQ==")
print(result.markdown)

Full Changelog: v0.1.0...v0.1.1