raw-docx 0.5.0__tar.gz → 0.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {raw_docx-0.5.0 → raw_docx-0.6.0}/PKG-INFO +1 -1
- raw_docx-0.6.0/src/raw_docx/__init__.py +28 -0
- raw_docx-0.6.0/src/raw_docx/__version__.py +1 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/PKG-INFO +1 -1
- raw_docx-0.5.0/src/raw_docx/__init__.py +0 -0
- raw_docx-0.5.0/src/raw_docx/__version__.py +0 -1
- {raw_docx-0.5.0 → raw_docx-0.6.0}/LICENSE +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/README.md +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/setup.cfg +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/setup.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/docx_paragraph.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_document.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_docx.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_image.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_list.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_list_item.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_logger.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_paragraph.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_run.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_section.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_table.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_table_cell.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx/raw_table_row.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/SOURCES.txt +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/dependency_links.txt +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/requires.txt +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/src/raw_docx.egg-info/top_level.txt +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_docx_paragraph.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_integration.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_document.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_docx.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_image.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_list.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_list_item.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_logger.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_paragraph.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_run.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_section.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_table.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_table_cell.py +0 -0
- {raw_docx-0.5.0 → raw_docx-0.6.0}/tests/test_raw_table_row.py +0 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
from .raw_docx import RawDocx
|
2
|
+
from .raw_document import RawDocument
|
3
|
+
from .raw_image import RawImage
|
4
|
+
from .raw_list_item import RawListItem
|
5
|
+
from .raw_list import RawList
|
6
|
+
from .raw_logger import RawLogger
|
7
|
+
from .raw_paragraph import RawParagraph
|
8
|
+
from .raw_run import RawRun
|
9
|
+
from .raw_section import RawSection
|
10
|
+
from .raw_table_cell import RawTableCell
|
11
|
+
from .raw_table_row import RawTableRow
|
12
|
+
from .raw_table import RawTable
|
13
|
+
|
14
|
+
__all__ = [
|
15
|
+
"RawDocx",
|
16
|
+
"RawDocument",
|
17
|
+
"RawImage",
|
18
|
+
"RawList",
|
19
|
+
"RawListItem",
|
20
|
+
"RawLogger",
|
21
|
+
"RawParagraph",
|
22
|
+
"RawRun",
|
23
|
+
"RawSection",
|
24
|
+
"RawTableCell",
|
25
|
+
"RawTableRow",
|
26
|
+
"RawTable"
|
27
|
+
]
|
28
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
__package_version__ = "0.6.0"
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
__package_version__ = "0.5.0"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|