IVCAP Client¶
The IVCAP class is the single entry point for all client operations. It manages
authentication, connection, and exposes all high-level methods for working with
services, jobs, artifacts, and aspects.
Quick Reference¶
from ivcap_client.ivcap import IVCAP
# From environment variables (recommended)
ivcap = IVCAP()
# With explicit credentials
ivcap = IVCAP(
url="https://api.your-ivcap-deployment.net",
token="<jwt-token>",
account_id="urn:ivcap:account:<uuid>",
)
Class Documentation¶
IVCAP
¶
Entry point for all interactions with an IVCAP deployment.
IVCAP() is the single constructor for all three operating modes. The
correct implementation is selected automatically from environment
variables — no code changes are needed between local development and
deployed operation:
.. code-block:: python
from ivcap_client import IVCAP
ivcap = IVCAP() # → LocalIVCAP locally, IVCAP on the platform
artifact = ivcap.upload_artifact(name="result.csv", file_path="/tmp/result.csv")
Auto-detection logic (in order):
IVCAP_URLorIVCAP_BASE_URLenv var is set → platform :class:IVCAPinstance.urlargument is provided → platform :class:IVCAPinstance.tokenargument provided without a URL →ValueError.- None of the above → :class:
LocalIVCAPbacked byIVCAP_LOCAL_DIR(default:ivcap-artifacts).
For the full operating-mode reference see
:doc:/guides/local-mode.
Source code in ivcap_client/ivcap.py
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 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 | |
url
property
¶
Returns the URL of the IVCAP deployment
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
URL of IVCAP deployment |
list_services(*, filter=None, limit=10, order_by=None, order_desc=False, at_time=UNSET)
¶
Return an iterator over all the available services fulfilling certain constraints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
limit
|
Optional[int]
|
The 'limit' query option sets the maximum number of items to be included in the result. Default: 10. Example: 10. |
10
|
filter
|
Optional[str]
|
The 'filter' system query option allows clients to filter a collection of resources that are addressed by a request URL. The expression specified with 'filter' is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Example: name ~= 'Scott%'. |
None
|
order_by
|
Optional[str]
|
The 'orderby' query option allows clients to request resources in either ascending order using asc or descending order using desc. If asc or desc not specified, then the resources will be ordered in ascending order. The request below orders Trips on property EndsAt in descending order. Example: orderby=EndsAt. |
None
|
order_desc
|
Optional[bool]
|
When set order result in descending order. Ascending order is the lt. Default: False. |
False
|
at_time
|
Optional[datetime]
|
Return the state of the respective resources at that time [now] Example: 1996-12-19T16:39:57-08:00. |
UNSET
|
Returns:
| Type | Description |
|---|---|
Iterator[Service]
|
Iterator[Service]: An iterator over a list of services |
Yields:
| Name | Type | Description |
|---|---|---|
Service |
Service
|
A Service object |
Source code in ivcap_client/ivcap.py
get_service_by_name(name)
¶
Return a Service instance named 'name'
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of service requested |
required |
Raises:
| Type | Description |
|---|---|
ResourceNotFound
|
Service is not found |
AmbiguousRequest
|
More than one service is found for 'name' |
Returns:
| Name | Type | Description |
|---|---|---|
Service |
Service
|
The Service instance for the requested service |
Source code in ivcap_client/ivcap.py
get_service(service_id)
¶
Returns a Service instance for service 'service_id'
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
service_id
|
URN
|
URN of service |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Service |
Service
|
Returns a Service instance if service exists |
Source code in ivcap_client/ivcap.py
get_agent(agent_id)
¶
Returns an Agent instance for agent 'agent_id'
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
agent_id
|
URN
|
URN of agent |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Service |
Agent
|
Returns an Agent instance if agent exists |
Source code in ivcap_client/ivcap.py
list_orders(*, filter=None, limit=10, order_by=None, order_desc=False, at_time=UNSET)
¶
Return an iterator over all the available orders fulfilling certain constraints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
limit
|
Optional[int]
|
The 'limit' query option sets the maximum number of items to be included in the result. Default: 10. Example: 10. |
10
|
filter
|
Optional[str]
|
The 'filter' system query option allows clients to filter a collection of resources that are addressed by a request URL. The expression specified with 'filter' is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Example: name ~= 'Scott%'. |
None
|
order_by
|
Optional[str]
|
The 'orderby' query option allows clients to request resources in either ascending order using asc or descending order using desc. If asc or desc not specified, then the resources will be ordered in ascending order. The request below orders Trips on property EndsAt in descending order. Example: orderby=EndsAt. |
None
|
order_desc
|
Optional[bool]
|
When set order result in descending order. Ascending order is the lt. Default: False. |
False
|
at_time
|
Optional[datetime]
|
Return the state of the respective resources at that time [now] Example: 1996-12-19T16:39:57-08:00. |
UNSET
|
Returns:
| Type | Description |
|---|---|
Iterator[Order]
|
Iterator[Order]: An iterator over a list of orders |
Yields:
| Name | Type | Description |
|---|---|---|
Order |
Order
|
An order object |
Source code in ivcap_client/ivcap.py
get_order(order_id)
¶
Return an Order instance for the given order URN.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
order_id
|
URN
|
URN of the order ( |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Order |
Order
|
The Order instance for the requested order. |
Source code in ivcap_client/ivcap.py
add_aspect(entity, aspect, *, schema=None, policy=None)
¶
Add an 'aspect' to an 'entity'. The 'schema' of the aspect, if not defined is expected to found in the 'aspect' under the '$schema' key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity
|
str
|
URN of the entity to attach the aspect to |
required |
aspect
|
dict
|
The aspect to be attached |
required |
schema
|
Optional[str]
|
Schema of the aspect. Defaults to 'aspect["$schema"]'. |
None
|
policy
|
URN | None
|
Optional[URN]: Set specific policy controlling access ('urn:ivcap:policy:...'). |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
aspect |
Aspect
|
The created aspect record |
Source code in ivcap_client/ivcap.py
update_aspect(entity, aspect, *, schema=None, policy=None)
¶
Create an 'aspect' to an 'entity', but also retract a potentially existing aspect for the same entity with the same schema. The 'schema' of the aspect, if not defined is expected to found in the 'aspect' under the '$schema' key.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity
|
str
|
URN of the entity to attach the aspect to |
required |
aspect
|
dict
|
The aspect to be attached |
required |
schema
|
Optional[str]
|
Schema of the aspect. Defaults to 'aspect["$schema"]'. |
None
|
policy
|
URN | None
|
Optional[URN]: Set specific policy controlling access ('urn:ivcap:policy:...'). |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
aspect |
Aspect
|
The created aspect record |
Source code in ivcap_client/ivcap.py
list_aspects(*, entity=None, schema=None, content_path=None, at_time=None, limit=10, filter=None, order_by='valid_from', order_direction='DESC', include_content=True)
¶
Return an iterator over all the aspect records fulfilling certain constraints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity
|
Optional[str]
|
Optional entity for which to request aspects Example: urn:blue:image.collA#12. |
None
|
schema
|
Optional[str]
|
Schema prefix using '%' as wildcard indicator Example: urn:blue:schema:image%. |
None
|
content_path
|
Optional[str]
|
To learn more about the supported format, see https://www.postgresql.org/docs/current/datatype-json.html#DATATYPE-JSONPATH Example: $.images[*] ? (@.size > 10000). |
None
|
at_time
|
Optional[datetime]
|
Return aspect which where valid at that time [now] Example: 1996-12-19T16:39:57-08:00. |
None
|
limit
|
Optional[int]
|
The 'limit' system query option requests the number of items in the queried collection to be included in the result. Default: 10. Example: 10. |
10
|
filter
|
Optional[str]
|
The 'filter' system query option allows clients to filter a collection of resources that are addressed by a request URL. The expression specified with 'filter' is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Default: ''. Example: FirstName eq 'Scott'. |
None
|
order_by
|
Optional[str]
|
Optional comma-separated list of attributes to sort the list by. * entity * schema * content * policy * account * created_by * retracted_by * replaces * valid_from * valid_to Default: 'valid_from'. Example: entity,created-at. |
'valid_from'
|
order_direction
|
Optional[str]
|
Set the sort direction 'ASC', 'DESC' for each order- by element. Default: 'DESC'. Example: desc. |
'DESC'
|
include_content
|
Optional[bool]
|
When set, also include aspect content in list. |
True
|
Returns:
| Type | Description |
|---|---|
Iterator[Aspect]
|
Iterator[Aspect]: An iterator over a list of aspect records |
Yields:
| Name | Type | Description |
|---|---|---|
Aspect |
Aspect
|
A aspect object |
Source code in ivcap_client/ivcap.py
list_artifacts(*, filter=None, limit=10, order_by=None, order_desc=False, at_time=UNSET)
¶
Return an iterator over all the available artifacts fulfilling certain constraints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
limit
|
Optional[int]
|
The 'limit' query option sets the maximum number of items to be included in the result. Default: 10. Example: 10. |
10
|
filter
|
Optional[str]
|
The 'filter' system query option allows clients to filter a collection of resources that are addressed by a request URL. The expression specified with 'filter' is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Example: name ~= 'Scott%'. |
None
|
order_by
|
Optional[str]
|
The 'orderby' query option allows clients to request resources in either ascending order using asc or descending order using desc. If asc or desc not specified, then the resources will be ordered in ascending order. The request below orders Trips on property EndsAt in descending order. Example: orderby=EndsAt. |
None
|
order_desc
|
Optional[bool]
|
When set order result in descending order. Ascending order is the lt. Default: False. |
False
|
at_time
|
Optional[datetime]
|
Return the state of the respective resources at that time [now] Example: 1996-12-19T16:39:57-08:00. |
UNSET
|
Returns:
| Type | Description |
|---|---|
Iterator[Artifact]
|
Iterator[Artifact]: An iterator over a list of artifacts |
Yields:
| Name | Type | Description |
|---|---|---|
Artifact |
Artifact
|
An artifact object |
Source code in ivcap_client/ivcap.py
upload_artifact(*, name=None, file_path=None, io_stream=None, content_type=None, content_size=-1, collection=None, policy=None, chunk_size=MAXSIZE, retries=0, retry_delay=30, force_upload=False)
¶
Upload a file or byte stream to IVCAP as a new artifact.
Either file_path or io_stream must be provided (not both).
When using io_stream, content_type must be supplied explicitly.
Deduplication: When file_path is given, the SDK stores a hidden
.ivcap-<filename>.txt sidecar file next to the source file
containing an MD5 hash. On subsequent calls for the same unchanged
file the existing artifact is returned immediately without re-uploading.
Override with force_upload=True.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
Optional[str]
|
Human-readable display name for the artifact. |
None
|
file_path
|
Optional[str]
|
Path to the local file to upload.
The MIME type is auto-detected from the file extension if
|
None
|
io_stream
|
Optional[IO]
|
In-memory byte stream to upload.
|
None
|
content_type
|
Optional[str]
|
MIME type of the content. Required
when using |
None
|
content_size
|
Optional[int]
|
Size of the content in bytes.
Defaults to -1 (unknown); auto-determined from |
-1
|
collection
|
Optional[URN]
|
Add the artifact to a named collection
( |
None
|
policy
|
Optional[URN]
|
Access policy URN
( |
None
|
chunk_size
|
Optional[int]
|
TUS upload chunk size in bytes.
Defaults to |
maxsize
|
retries
|
Optional[int]
|
Number of retry attempts on upload failure. Defaults to 0 (no retries). |
0
|
retry_delay
|
Optional[int]
|
Seconds to wait between retries. Defaults to 30. |
30
|
force_upload
|
Optional[bool]
|
Re-upload even if a sidecar file indicates the file was already uploaded. Defaults to False. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
Artifact |
Artifact
|
The newly created (or previously uploaded) artifact. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If neither |
Example::
# Upload a local file
artifact = ivcap.upload_artifact(
name="my-image",
file_path="/path/to/image.jpg",
)
# Upload from an in-memory stream
import io
data = b"col1,col2\n1,2\n3,4\n"
artifact = ivcap.upload_artifact(
name="my-data.csv",
io_stream=io.BytesIO(data),
content_type="text/csv",
content_size=len(data),
)
Source code in ivcap_client/ivcap.py
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 | |
artifact_for_file(file_path)
¶
Return an Artifact instance if local file 'file_path' has already been uploaded as artifact.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
str
|
Path to local file |
required |
Returns:
| Type | Description |
|---|---|
Artifact | None
|
Optional[Artifact]: Return artifact instance if file has been uploaded, otherwise return None |
Source code in ivcap_client/ivcap.py
get_artifact(id)
¶
Returns an Artifact instance for artifact 'id'
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
id
|
URN
|
URN of artifact |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Artifact |
Artifact
|
Returns an Artifact instance if artifact exists |
Source code in ivcap_client/ivcap.py
create_collection(urn, name, *, description=None, policy=None)
¶
Create or update a collection definition (idempotent via PUT).
Calling this method on an already-existing collection URN replaces the previous name/description without affecting its items.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
urn
|
str
|
The collection entity URN
(e.g. |
required |
name
|
str
|
Human-readable collection name. |
required |
description
|
Optional[str]
|
Optional description. |
None
|
policy
|
Optional[URN]
|
Access policy URN
( |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Collection |
Collection
|
The created or updated collection. |
Source code in ivcap_client/ivcap.py
get_collection(urn, *, at_time=None)
¶
Fetch a collection definition by its URN.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
urn
|
str
|
The collection entity URN. |
required |
at_time
|
Optional[datetime]
|
Retrieve the state at this point in time. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Collection |
Collection
|
The collection instance. |
Raises:
| Type | Description |
|---|---|
ResourceNotFound
|
If no collection with the given URN exists. |
Source code in ivcap_client/ivcap.py
list_collections(*, name_filter=None, limit=10, at_time=None)
¶
Return an iterator over collection definitions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name_filter
|
Optional[str]
|
A JSONPath comparison expression
applied to the collection Examples:: |
None
|
limit
|
Optional[int]
|
Maximum number of collections to return. Default: 10. |
10
|
at_time
|
Optional[datetime]
|
Return collections valid at this point in time. |
None
|
Returns:
| Type | Description |
|---|---|
Iterator[Collection]
|
Iterator[Collection]: An iterator over collections. |
Source code in ivcap_client/ivcap.py
add_to_collection(collection_urn, item_urn, *, policy=None)
¶
Add an item to a collection with automatic deduplication.
Checks whether item_urn is already a member before creating the
membership aspect. If it is already present, returns None
(skip silently).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
collection_urn
|
str
|
The collection entity URN. |
required |
item_urn
|
str
|
URN of the entity to add. |
required |
policy
|
Optional[URN]
|
Optional access policy URN for the
membership aspect ( |
None
|
Returns:
| Type | Description |
|---|---|
CollectionItem | None
|
CollectionItem if the item was newly added, |
Source code in ivcap_client/ivcap.py
remove_from_collection(collection_urn, item_urn)
¶
Remove an item from a collection by retracting its membership aspect.
Items that are not currently members of the collection are silently skipped.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
collection_urn
|
str
|
The collection entity URN. |
required |
item_urn
|
str
|
URN of the entity to remove. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
|
Source code in ivcap_client/ivcap.py
retract_collection(collection_urn)
¶
Fully retract a collection and all its item memberships.
All membership aspects are retracted first (paginated), then the collection definition aspect is retracted. This operation cannot be undone.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
collection_urn
|
str
|
URN of the collection to retract. |
required |
Returns:
| Type | Description |
|---|---|
int
|
Total number of aspect records retracted (items + 1 definition). |
Raises:
| Type | Description |
|---|---|
ResourceNotFound
|
If no collection definition exists for the URN. |
Source code in ivcap_client/ivcap.py
list_secrets(*, filter=None, limit=10, order_by=None, order_desc=False, at_time=UNSET)
¶
Return an iterator over all the available secrets fulfilling certain constraints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
limit
|
Optional[int]
|
The 'limit' query option sets the maximum number of items to be included in the result. Default: 10. Example: 10. |
10
|
filter
|
Optional[str]
|
The 'filter' system query option allows clients to filter a collection of resources that are addressed by a request URL. The expression specified with 'filter' is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Example: name ~= 'Scott%'. |
None
|
Returns:
| Type | Description |
|---|---|
Iterator[Secret]
|
Iterator[Secret]: An iterator over a list of secrets |
Yields:
| Name | Type | Description |
|---|---|---|
Secret |
Secret
|
A secret object |
Source code in ivcap_client/ivcap.py
search(query)
¶
Execute query provided in body and return a list of search result.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
query
|
str
|
The search query to execute. |
required |
Raises:
| Type | Description |
|---|---|
UnexpectedStatus
|
If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. |
TimeoutException
|
If the request takes longer than Client.timeout. |
Returns:
| Type | Description |
|---|---|
Any
|
Search results. |
Source code in ivcap_client/ivcap.py
local(base_dir=None)
classmethod
¶
Return a :class:LocalIVCAP instance for filesystem-only
(no-network) development and testing.
This is the preferred way to force local mode regardless of which environment variables are set — for example in unit tests:
.. code-block:: python
from ivcap_client import IVCAP
ivcap = IVCAP.local(base_dir="./my-artifacts")
artifact = ivcap.upload_artifact(name="result.csv", file_path="/tmp/result.csv")
The base_dir can also be provided via the IVCAP_LOCAL_DIR
environment variable. Precedence (highest first):
- The
base_dirargument to this method. - The
IVCAP_LOCAL_DIRenvironment variable. - The default
"ivcap-artifacts".
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
base_dir
|
str | None
|
Root directory for artifact and aspect storage.
Created on demand. Defaults to |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
LocalIVCAP |
LocalIVCAP
|
A filesystem-backed client with the same
|