Skip to content

Commit 55ed759

Browse files
Publish v25.3.14
1 parent 03536ea commit 55ed759

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ markitdown document.docx --llm
5858
### Python API
5959

6060
```python
61-
from _markitdown import MarkItDown
61+
from openize.markitdown.core import MarkItDown
6262

6363
# Define input file and output directory
6464
input_file = "report.pdf"

packages/markitdown/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ markitdown document.docx -o output_folder --insert-into-llm
5858
### Python API
5959

6060
```python
61-
from _markitdown import MarkItDown
61+
from openize.markitdown.core import MarkItDown
6262

6363
# Define input file and output directory
6464
input_file = "report.pdf"

packages/markitdown/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = openize-markitdown
3-
version = 25.3.13
3+
version = 25.3.14
44
author = Openize
55
author_email = packages@openize.com
66
description = A document converter for Word, PDF, Excel, and PowerPoint to Markdown.

packages/markitdown/src/openize/markitdown/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
sys.path.append(os.path.dirname(__file__))
55

6-
__version__ = "25.3.13"
6+
__version__ = "25.3.14"
77

88
from .processor import DocumentProcessor
99
from .converters import WordConverter, PDFConverter, ExcelConverter, PowerPointConverter
File renamed without changes.

packages/markitdown/src/openize/markitdown/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import sys
44
import logging
5-
from markitdown import MarkItDown
5+
from core import MarkItDown
66
from license_manager import LicenseManager
77

88

0 commit comments

Comments
 (0)