github microsoft/markitdown v0.1.1

6 days ago

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

Don't miss a new markitdown release

NewReleases is sending notifications on new releases.