A RTF plugin via striprtf for the "markitdown" library.
Project description
MarkItDown RTF Plugin
This project shows how to create an RTF plugin for MarkItDown. The most important parts are as follows:
Next, implement your custom DocumentConverter:
from typing import BinaryIO, Any
from markitdown import MarkItDown, DocumentConverter, DocumentConverterResult, StreamInfo
class RtfConverter(DocumentConverter):
def __init__(
self, priority: float = DocumentConverter.PRIORITY_SPECIFIC_FILE_FORMAT
):
super().__init__(priority=priority)
def accepts(
self,
file_stream: BinaryIO,
stream_info: StreamInfo,
**kwargs: Any,
) -> bool:
# Implement logic to check if the file stream is an RTF file
# ...
raise NotImplementedError()
def convert(
self,
file_stream: BinaryIO,
stream_info: StreamInfo,
**kwargs: Any,
) -> DocumentConverterResult:
# Implement logic to convert the file stream to Markdown
# ...
raise NotImplementedError()
Next, make sure your package implements and exports the following:
# The version of the plugin interface that this plugin uses.
# The only supported version is 1 for now.
__plugin_interface_version__ = 1
# The main entrypoint for the plugin. This is called each time MarkItDown instances are created.
def register_converters(markitdown: MarkItDown, **kwargs):
"""
Called during construction of MarkItDown instances to register converters provided by plugins.
"""
# Simply create and attach an RtfConverter instance
markitdown.register_converter(RtfConverter())
Finally, create an entrypoint in the pyproject.toml file:
[project.entry-points."markitdown.plugin"]
rtf_plugin = "markitdown_rtf_plugin"
Here, the value of rtf_plugin can be any key, but should ideally be the name of the plugin. The value is the fully qualified name of the package implementing the plugin.
Installation
To use the plugin with MarkItDown, it must be installed. To install the plugin from the current directory use:
pip install -e .
Once the plugin package is installed, verify that it is available to MarkItDown by running:
markitdown --list-plugins
To use the plugin for a conversion use the --use-plugins flag. For example, to convert an RTF file:
markitdown --use-plugins path-to-file.rtf
In Python, plugins can be enabled as follows:
from markitdown import MarkItDown
md = MarkItDown(enable_plugins=True)
result = md.convert("path-to-file.rtf")
print(result.text_content)
Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file markitdown_rtf_plugin-0.1.0.tar.gz.
File metadata
- Download URL: markitdown_rtf_plugin-0.1.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8629580474233e59ff20e66e30e22eac8019ff0e2df4b98ebd93c8738b07bcdc
|
|
| MD5 |
1c710543323ec9274f6a8c17355376d0
|
|
| BLAKE2b-256 |
a294468ff435ab8553b933d6857881d3a005d94143e1d20190d26fade8d6809d
|
File details
Details for the file markitdown_rtf_plugin-0.1.0-py3-none-any.whl.
File metadata
- Download URL: markitdown_rtf_plugin-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03cc7121293fc5d56e4868e8da0d535e3999ba4a67bf9d61c6155a91178637d3
|
|
| MD5 |
1e76efa15eae61f9ee15f48e6f3574ba
|
|
| BLAKE2b-256 |
9edf0fa707900ff6b545f2110120e9b0b0906594704657981dccede0bcbf7b5c
|