pdfdancer-client-python 0.1.1__py3-none-any.whl
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.
Potentially problematic release.
This version of pdfdancer-client-python might be problematic. Click here for more details.
- pdfdancer/__init__.py +40 -0
- pdfdancer/client_v1.py +675 -0
- pdfdancer/exceptions.py +57 -0
- pdfdancer/models.py +417 -0
- pdfdancer/paragraph_builder.py +267 -0
- pdfdancer_client_python-0.1.1.dist-info/METADATA +308 -0
- pdfdancer_client_python-0.1.1.dist-info/RECORD +9 -0
- pdfdancer_client_python-0.1.1.dist-info/WHEEL +5 -0
- pdfdancer_client_python-0.1.1.dist-info/top_level.txt +1 -0
pdfdancer/__init__.py
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
PDFDancer Python Client
|
|
3
|
+
|
|
4
|
+
A Python client library for the PDFDancer PDF manipulation API.
|
|
5
|
+
Provides a clean, Pythonic interface for PDF operations that closely
|
|
6
|
+
mirrors the Java client structure and functionality.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from .client_v1 import ClientV1
|
|
10
|
+
from .exceptions import (
|
|
11
|
+
PdfDancerException, FontNotFoundException, ValidationException,
|
|
12
|
+
HttpClientException, SessionException
|
|
13
|
+
)
|
|
14
|
+
from .models import (
|
|
15
|
+
ObjectRef, Position, ObjectType, Font, Color, Image, BoundingRect, Paragraph,
|
|
16
|
+
PositionMode, ShapeType, Point
|
|
17
|
+
)
|
|
18
|
+
from .paragraph_builder import ParagraphBuilder
|
|
19
|
+
|
|
20
|
+
__version__ = "1.0.0"
|
|
21
|
+
__all__ = [
|
|
22
|
+
"ClientV1",
|
|
23
|
+
"ParagraphBuilder",
|
|
24
|
+
"ObjectRef",
|
|
25
|
+
"Position",
|
|
26
|
+
"ObjectType",
|
|
27
|
+
"Font",
|
|
28
|
+
"Color",
|
|
29
|
+
"Image",
|
|
30
|
+
"BoundingRect",
|
|
31
|
+
"Paragraph",
|
|
32
|
+
"PositionMode",
|
|
33
|
+
"ShapeType",
|
|
34
|
+
"Point",
|
|
35
|
+
"PdfDancerException",
|
|
36
|
+
"FontNotFoundException",
|
|
37
|
+
"ValidationException",
|
|
38
|
+
"HttpClientException",
|
|
39
|
+
"SessionException"
|
|
40
|
+
]
|