-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.py
More file actions
635 lines (504 loc) · 19.4 KB
/
Copy pathclient.py
File metadata and controls
635 lines (504 loc) · 19.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
# This file was auto-generated by Fern from our API Definition.
from __future__ import annotations
import typing
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
from ..core.request_options import RequestOptions
from ..types.doc_head200response import DocHead200Response
from ..types.doc_manifest200response import DocManifest200Response
from ..types.doc_text200response import DocText200Response
from .raw_client import AsyncRawDocClient, RawDocClient
if typing.TYPE_CHECKING:
from .annotations.client import AnnotationsClient, AsyncAnnotationsClient
from .forms.client import AsyncFormsClient, FormsClient
from .metadata.client import AsyncMetadataClient, MetadataClient
from .pages.client import AsyncPagesClient, PagesClient
from .redactions.client import AsyncRedactionsClient, RedactionsClient
class DocClient:
def __init__(self, *, client_wrapper: SyncClientWrapper):
self._raw_client = RawDocClient(client_wrapper=client_wrapper)
self._client_wrapper = client_wrapper
self._annotations: typing.Optional[AnnotationsClient] = None
self._forms: typing.Optional[FormsClient] = None
self._metadata: typing.Optional[MetadataClient] = None
self._pages: typing.Optional[PagesClient] = None
self._redactions: typing.Optional[RedactionsClient] = None
@property
def with_raw_response(self) -> RawDocClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
RawDocClient
"""
return self._raw_client
def head(
self,
doc_id: str,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> DocHead200Response:
"""
Parameters
----------
doc_id : str
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocHead200Response
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.doc.head(
doc_id="docId",
)
"""
_response = self._raw_client.head(doc_id, document_password=document_password, request_options=request_options)
return _response.data
def download(
self,
doc_id: str,
layer_name: str,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> typing.Iterator[bytes]:
"""
Parameters
----------
doc_id : str
layer_name : str
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.Iterator[bytes]
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.doc.download(
doc_id="docId",
layer_name="layerName",
)
"""
with self._raw_client.download(
doc_id, layer_name, document_password=document_password, request_options=request_options
) as r:
yield from r.data
def manifest(
self,
doc_id: str,
layer_name: str,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> DocManifest200Response:
"""
Parameters
----------
doc_id : str
layer_name : str
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocManifest200Response
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.doc.manifest(
doc_id="docId",
layer_name="layerName",
)
"""
_response = self._raw_client.manifest(
doc_id, layer_name, document_password=document_password, request_options=request_options
)
return _response.data
def render(
self,
doc_id: str,
layer_name: str,
pon: int,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> typing.Iterator[bytes]:
"""
Render parameters (viewport, format) pass as flat dotted query keys, e.g. `?viewport.kind=width&viewport.width=800`; the full grammar is documented with the viewer.
Parameters
----------
doc_id : str
layer_name : str
pon : int
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.Iterator[bytes]
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.doc.render(
doc_id="docId",
layer_name="layerName",
pon=1,
)
"""
with self._raw_client.render(
doc_id, layer_name, pon, document_password=document_password, request_options=request_options
) as r:
yield from r.data
def text(
self,
doc_id: str,
layer_name: str,
pon: int,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> DocText200Response:
"""
Parameters
----------
doc_id : str
layer_name : str
pon : int
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocText200Response
OK
Examples
--------
from cloudpdf import CloudPDFClient
client = CloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.doc.text(
doc_id="docId",
layer_name="layerName",
pon=1,
)
"""
_response = self._raw_client.text(
doc_id, layer_name, pon, document_password=document_password, request_options=request_options
)
return _response.data
@property
def annotations(self):
if self._annotations is None:
from .annotations.client import AnnotationsClient # noqa: E402
self._annotations = AnnotationsClient(client_wrapper=self._client_wrapper)
return self._annotations
@property
def forms(self):
if self._forms is None:
from .forms.client import FormsClient # noqa: E402
self._forms = FormsClient(client_wrapper=self._client_wrapper)
return self._forms
@property
def metadata(self):
if self._metadata is None:
from .metadata.client import MetadataClient # noqa: E402
self._metadata = MetadataClient(client_wrapper=self._client_wrapper)
return self._metadata
@property
def pages(self):
if self._pages is None:
from .pages.client import PagesClient # noqa: E402
self._pages = PagesClient(client_wrapper=self._client_wrapper)
return self._pages
@property
def redactions(self):
if self._redactions is None:
from .redactions.client import RedactionsClient # noqa: E402
self._redactions = RedactionsClient(client_wrapper=self._client_wrapper)
return self._redactions
class AsyncDocClient:
def __init__(self, *, client_wrapper: AsyncClientWrapper):
self._raw_client = AsyncRawDocClient(client_wrapper=client_wrapper)
self._client_wrapper = client_wrapper
self._annotations: typing.Optional[AsyncAnnotationsClient] = None
self._forms: typing.Optional[AsyncFormsClient] = None
self._metadata: typing.Optional[AsyncMetadataClient] = None
self._pages: typing.Optional[AsyncPagesClient] = None
self._redactions: typing.Optional[AsyncRedactionsClient] = None
@property
def with_raw_response(self) -> AsyncRawDocClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
AsyncRawDocClient
"""
return self._raw_client
async def head(
self,
doc_id: str,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> DocHead200Response:
"""
Parameters
----------
doc_id : str
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocHead200Response
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.doc.head(
doc_id="docId",
)
asyncio.run(main())
"""
_response = await self._raw_client.head(
doc_id, document_password=document_password, request_options=request_options
)
return _response.data
async def download(
self,
doc_id: str,
layer_name: str,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> typing.AsyncIterator[bytes]:
"""
Parameters
----------
doc_id : str
layer_name : str
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.AsyncIterator[bytes]
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.doc.download(
doc_id="docId",
layer_name="layerName",
)
asyncio.run(main())
"""
async with self._raw_client.download(
doc_id, layer_name, document_password=document_password, request_options=request_options
) as r:
async for _chunk in r.data:
yield _chunk
async def manifest(
self,
doc_id: str,
layer_name: str,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> DocManifest200Response:
"""
Parameters
----------
doc_id : str
layer_name : str
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocManifest200Response
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.doc.manifest(
doc_id="docId",
layer_name="layerName",
)
asyncio.run(main())
"""
_response = await self._raw_client.manifest(
doc_id, layer_name, document_password=document_password, request_options=request_options
)
return _response.data
async def render(
self,
doc_id: str,
layer_name: str,
pon: int,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> typing.AsyncIterator[bytes]:
"""
Render parameters (viewport, format) pass as flat dotted query keys, e.g. `?viewport.kind=width&viewport.width=800`; the full grammar is documented with the viewer.
Parameters
----------
doc_id : str
layer_name : str
pon : int
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration. You can pass in configuration such as `chunk_size`, and more to customize the request and response.
Returns
-------
typing.AsyncIterator[bytes]
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.doc.render(
doc_id="docId",
layer_name="layerName",
pon=1,
)
asyncio.run(main())
"""
async with self._raw_client.render(
doc_id, layer_name, pon, document_password=document_password, request_options=request_options
) as r:
async for _chunk in r.data:
yield _chunk
async def text(
self,
doc_id: str,
layer_name: str,
pon: int,
*,
document_password: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> DocText200Response:
"""
Parameters
----------
doc_id : str
layer_name : str
pon : int
document_password : typing.Optional[str]
Base64-encoded password for an encrypted document. Valid only with the API token (403 anywhere else). An encrypted document answers 422 DocPasswordRequired when the header is absent. Viewer doc JWTs use the SDK password-session flow instead.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
DocText200Response
OK
Examples
--------
import asyncio
from cloudpdf import AsyncCloudPDFClient
client = AsyncCloudPDFClient(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.doc.text(
doc_id="docId",
layer_name="layerName",
pon=1,
)
asyncio.run(main())
"""
_response = await self._raw_client.text(
doc_id, layer_name, pon, document_password=document_password, request_options=request_options
)
return _response.data
@property
def annotations(self):
if self._annotations is None:
from .annotations.client import AsyncAnnotationsClient # noqa: E402
self._annotations = AsyncAnnotationsClient(client_wrapper=self._client_wrapper)
return self._annotations
@property
def forms(self):
if self._forms is None:
from .forms.client import AsyncFormsClient # noqa: E402
self._forms = AsyncFormsClient(client_wrapper=self._client_wrapper)
return self._forms
@property
def metadata(self):
if self._metadata is None:
from .metadata.client import AsyncMetadataClient # noqa: E402
self._metadata = AsyncMetadataClient(client_wrapper=self._client_wrapper)
return self._metadata
@property
def pages(self):
if self._pages is None:
from .pages.client import AsyncPagesClient # noqa: E402
self._pages = AsyncPagesClient(client_wrapper=self._client_wrapper)
return self._pages
@property
def redactions(self):
if self._redactions is None:
from .redactions.client import AsyncRedactionsClient # noqa: E402
self._redactions = AsyncRedactionsClient(client_wrapper=self._client_wrapper)
return self._redactions