| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-03-25 | 699 Bytes | |
| v0.1.1 source code.tar.gz | 2025-03-25 | 2.6 MB | |
| v0.1.1 source code.zip | 2025-03-25 | 2.6 MB | |
| Totals: 3 Items | 5.2 MB | 0 | |
What's Changed
convert_url renamed to convert_uri, and now handles data and file URIs by @afourney in https://github.com/microsoft/markitdown/pull/1153
NOTE: convert_url remains an alias to convert_uri, for backward compatibility.
Both now accept file URIs and data URIs:
e.g.,
:::python
markitdown = MarkItDown()
result = markitdown.convert_uri("file:///path/to/file.txt")
print(result.markdown)
And,
:::python
markitdown = MarkItDown()
result = markitdown.convert_uri("data:text/plain;base64,SGVsbG8sIFdvcmxkIQ==")
print(result.markdown)
Full Changelog: https://github.com/microsoft/markitdown/compare/v0.1.0...v0.1.1