API Reference¶
This part of the documentation covers all the interfaces of our client library.
Client¶
- class caplena.Client(api_key, *, api_base_uri=ApiBaseUri.PRODUCTION, api_version=ApiVersion.VER_2022_11_22, timeout=120, max_retries=5, backoff_factor=2, http_client=<class 'caplena.http.requests_http_client.RequestsHttpClient'>, logging_level=LoggingLevel.WARNING)¶
Represents a client connection that connects to Caplena. This class is used to interact with the Caplena REST API.
- Parameters:
api_key (str) – The API key to use for making requests.
api_base_uri (ApiBaseUri) – The API Base URI to use, defaults to
https://api.caplena.com/v2
.api_version (ApiVersion) – The API Version to use, defaults to
2022-06-13
.timeout (int) – The maximum number of seconds before the request times out, defaults to
120
.max_retries (int) – The maximum number of times the request is retried before giving up, defaults to
0
.backoff_factor (float) – The backoff factor to apply between attempts, defaults to
2
.retry_status_codes – A set of HTTP status codes that we should retry on, defaults to
{408, 409, 413, 429, 500, 502, 503, 504}
.retry_methods (Iterable[HttpMethod]) – A set of HTTP methods that we should retry on, defaults to
{GET, PUT, HEAD}
.http_client (Union[HttpClient, Type[HttpClient]]) – The HTTP client class or instance to use for making requests, defaults to
RequestsHttpClient
. If an HTTP class is given, the factory methodbuild_http_client
is used to create an instance.logging_level (LoggingLevel) – The level of events to log out to console, defaults to
WARNING
.
- property projects: ProjectsController¶
The projects controller, encapsulating all project actions.
Controllers¶
- class caplena.controllers.ProjectsController(*, config)¶
The projects controller, encapsulating all project actions.
- Parameters:
config (Configuration) – The configuration object that a particular controller should use.
- append_row(*, id, columns)¶
Appends a single row to a previously created project.
- append_rows(*, id, rows)¶
Appends multiple rows to a previously created project. It is possible to append a maximum of 20 rows in a single request.
- Parameters:
- Raises:
ApiException – An API exception.
- Return type:
- create(*, name, language, columns, tags=<caplena.constants._NOT_SET object>, translation_engine=<caplena.constants._NOT_SET object>, anonymize_pii=<caplena.constants._NOT_SET object>)¶
Creates a new project.
- Parameters:
name (str) – Project name, as displayed in the user interface.
language (str) – Base language for this project.
columns (List[Dict[str, Any]]) – Columns of a project define its schema. In a sense, every project column corresponds to exactly one column in an Excel sheet. The four column types numerical, date, boolean and text are auxiliary columns, meaning that they won’t be analyzed, but they can be used to visualize your results. Please note that for columns of type numerical, its integer values must be between -(2^53-1) and 2^53-1. For bigger numbers, please use a column of type text.
tags (List[str] | None) – Tags assigned to this project. If omitted, no tags are assigned.
translation_engine (str | None) – Translation engine used to translate rows into the base language of this project. If omitted, no translation will be performed.
anonymize_pii (Dict[str, List[str]] | None) – settings to use for anonymization, visit the developer docs for more information.
- Raises:
ApiException – An API exception.
- Return type:
- get_append_status(*, project_id, task_id=None)¶
Checks statuses of all upload tasks for requested project or only requested upload task if its ID is provided
Note: We keep the status of upload tasks only for the 7 days. After that time task info won’t be available.
- Parameters:
- Raises:
ApiException – An API exception.
ValueError – when task_id is not proper UUID or uuid in a string
- Return type:
- list(*, order_by=<caplena.api.api_ordering.ApiOrdering object>, limit=None, filter=None)¶
Returns an iterator of all projects you have previously created. By default, the projects are returned in sorted order, with the most recently modified project appearing first.
- Parameters:
order_by (ApiOrdering) – Column on which the results should be ordered on. Defaults to
desc:last_modified
.limit (int | None) – Number of results returned per page. If unspecified, will return all results.
filter (ProjectsFilter | None) – Filters to apply to this request. If omitted, no filters are applied.
- Raises:
ApiException – An API exception.
- Return type:
- list_rows(*, id, limit=None, filter=None)¶
Returns a list of all rows you have previously created for this project. The rows are returned in sorted order, with the least recently added row appearing first.
- Parameters:
id (str) – The project identifier.
limit (int | None) – Number of results returned per page. If unspecified, will return all results.
filter (RowsFilter | None) – Filters to apply to this request. If omitted, no filters are applied.
- Raises:
ApiException – An API exception.
- Return type:
- remove(*, id)¶
Removes a previously created project.
- Parameters:
id (str) – The project identifier.
- Raises:
ApiException – An API exception.
- Return type:
None
- remove_row(*, p_id, r_id)¶
Removes a previously created row.
- Parameters:
- Raises:
ApiException – An API exception.
- Return type:
None
- retrieve(*, id)¶
Retrieves a project you have previously created.
- Parameters:
id (str) – The project identifier.
- Raises:
ApiException – An API exception.
- Return type:
- retrieve_row(*, p_id, r_id)¶
Retrieves a row for a project you have previously created.
- Parameters:
- Raises:
ApiException – An API exception.
- Return type:
- update(*, id, name=<caplena.constants._NOT_SET object>, columns=<caplena.constants._NOT_SET object>, tags=<caplena.constants._NOT_SET object>)¶
Updates a project you have previously created.
- Parameters:
- Raises:
ApiException – An API exception.
- Return type:
Resources¶
- class caplena.resources.ProjectDetail(id, **attrs)¶
The project detail resource.
- class Auxiliary(**attrs)¶
- type: typing_extensions.Literal[numerical, boolean, text, date, any]¶
Type of this column.
- class Column(**attrs)¶
-
- ref: str¶
Human-readable identifier for this column. The reference field is immutable and is unique among all columns within the same project.
- type: typing_extensions.Literal[numerical, boolean, text, date, any, text_to_analyze]¶
Type of this column.
- class TextToAnalyze(**attrs)¶
- class Metadata(**attrs)¶
- class LearnsForm(**attrs)¶
- learns_from: LearnsForm | None¶
Base column that this column learns from.
- type: typing_extensions.Literal[text_to_analyze]¶
Type of this column.
- upload_status: typing_extensions.Literal[pending, in_progress, succeeded, failed]¶
Current upload status of this project.
- class caplena.resources.ListedProject(id, **attrs)¶
The project list resource.
- upload_status: typing_extensions.Literal[pending, in_progress, succeeded, failed]¶
Current upload status of this project.
- class caplena.resources.RowsAppend(**attrs)¶
The bulk row create response object.
- estimated_minutes: float¶
Estimation in minutes about how long this bulk operation will approximately take.
- results: CaplenaList[RowsAppendResult]¶
The results of the bulk append operation.
- status: typing_extensions.Literal[pending]¶
Status of the bulk append operation.
- class caplena.resources.RowsAppendStatus(**attrs)¶
Status of requested task
- class LongRunningTaskStatus(**attrs)¶
Task status
- status: typing_extensions.Literal[in_progress, succeeded, failed]¶
Status of requested upload task
- tasks: List[LongRunningTaskStatus] | None¶
tasks of the project
- class caplena.resources.Row(id, **attrs)¶
The Row resource.
- class Column(**attrs)¶
-
- type: typing_extensions.Literal[numerical, boolean, text, date, any, text_to_analyze]¶
Type of this column.
- class TextToAnalyzeColumn(**attrs)¶
- class Topic(**attrs)¶
-
- code: int¶
Code for the inferred topic sentiment. If sentiment is disabled, the neutral topic sentiment
code
will be used.
- sentiment: typing_extensions.Literal[neutral, positive, negative, any]¶
Inferred sentiment for this column value.
- sentiment_overall: typing_extensions.Literal[neutral, positive, negative] | None¶
Inferred overall sentiment for this column.
- source_language: str | None¶
Source language of this value as an ISO-639-1 Code (https://cloud.google.com/translate/docs/languages).
- topics: CaplenaList[Topic]¶
Topics matching the value of this column. If no topics match, an empty array is returned.
- type: typing_extensions.Literal[text_to_analyze]¶
Type of this column.
- refresh()¶
Refreshes the properties of this row.
- Raises:
ApiException – An API exception.
- Return type:
None
- remove()¶
Removes this row.
- Raises:
ApiException – An API exception.
- Return type:
None
- retrieve_project()¶
Retrieves the project that this row belongs to.
- Raises:
ApiException – An API exception.
- Return type:
- save()¶
Saves the unpersisted properties of this row.
- Raises:
ApiException – An API exception.
- Return type:
None
Filters¶
- class caplena.filters.ProjectsFilter(constraints=None, has_conjunction=False)¶
The filter that can be used to filter projects.
- Parameters:
- __and__(other)¶
Creates and returns the immutable conjunction of two separate filters. The original filters will not be modified.
- Parameters:
self (Filter) – The first filter.
other (Filter) – The second filter.
- Return type:
Filter
- __or__(other)¶
Creates and returns the immutable disjunction of two separate filters. The original filters will not be modified.
- Parameters:
self (Filter) – The first filter.
other (Filter) – The second filter.
- Return type:
Filter
- classmethod created(*, gte=None, gt=None, lte=None, lt=None, range=None, year=None, year__gte=None, year__gt=None, year__lte=None, year__lt=None, month=None, month__gte=None, month__gt=None, month__lte=None, month__lt=None, day=None, day__gte=None, day__gt=None, day__lte=None, day__lt=None)¶
Allows filtering results based on date fields. For example, filtering with
ProjectsFilter.created(year=2022, month=1)
returns all results for January 2022 for the specified field.- Parameters:
gte (datetime | List[datetime] | None) – Greater than or equal to filter for date times.
gt (datetime | List[datetime] | None) – Greater than filter for date times.
lte (datetime | List[datetime] | None) – Less than or equal to filter for date times.
lt (datetime | List[datetime] | None) – Less than filter for date times.
range (typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year] | List[typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year]] | None) – Range filter for date times.
year (int | List[int] | None) – Allows filtering on the year.
year__gte (int | List[int] | None) – Greater than or equal to filter on the year.
year__gt (int | List[int] | None) – Greater than filter on the year.
year__lte (int | List[int] | None) – Less than or equal to filter on the year.
year__lt (int | List[int] | None) – Less than filter on the year.
month (int | List[int] | None) – Allows filtering on the month of the year.
month__gte (int | List[int] | None) – Greater than or equal to filter on the month of the year.
month__gt (int | List[int] | None) – Greater than filter on the month of the year.
month__lte (int | List[int] | None) – Less than or equal to filter on the month of the year.
month__lt (int | List[int] | None) – Greater than filter on the month of the year.
day (int | List[int] | None) – Allows filtering on the day of the month.
day__gte (int | List[int] | None) – Greater than or equal to filter on the day of the month.
day__gt (int | List[int] | None) – Greater than filter on the day of the month.
day__lte (int | List[int] | None) – Less than or equal to filter on the day of the month.
day__lt (int | List[int] | None) – Greater than filter on the day of the month.
- Return type:
- classmethod language(language)¶
Allows filtering projects based on their language. For example, filtering with
ProjectsFilter.language(['en', 'es'])
returns all English and Spanish projects.
- classmethod last_modified(*, gte=None, gt=None, lte=None, lt=None, range=None, year=None, year__gte=None, year__gt=None, year__lte=None, year__lt=None, month=None, month__gte=None, month__gt=None, month__lte=None, month__lt=None, day=None, day__gte=None, day__gt=None, day__lte=None, day__lt=None)¶
Allows filtering results based on date fields. For example, filtering with
ProjectsFilter.last_modified(year=2022, month=1)
returns all results for January 2022 for the specified field.- Parameters:
gte (datetime | List[datetime] | None) – Greater than or equal to filter for date times.
gt (datetime | List[datetime] | None) – Greater than filter for date times.
lte (datetime | List[datetime] | None) – Less than or equal to filter for date times.
lt (datetime | List[datetime] | None) – Less than filter for date times.
range (typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year] | List[typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year]] | None) – Range filter for date times.
year (int | List[int] | None) – Allows filtering on the year.
year__gte (int | List[int] | None) – Greater than or equal to filter on the year.
year__gt (int | List[int] | None) – Greater than filter on the year.
year__lte (int | List[int] | None) – Less than or equal to filter on the year.
year__lt (int | List[int] | None) – Less than filter on the year.
month (int | List[int] | None) – Allows filtering on the month of the year.
month__gte (int | List[int] | None) – Greater than or equal to filter on the month of the year.
month__gt (int | List[int] | None) – Greater than filter on the month of the year.
month__lte (int | List[int] | None) – Less than or equal to filter on the month of the year.
month__lt (int | List[int] | None) – Greater than filter on the month of the year.
day (int | List[int] | None) – Allows filtering on the day of the month.
day__gte (int | List[int] | None) – Greater than or equal to filter on the day of the month.
day__gt (int | List[int] | None) – Greater than filter on the day of the month.
day__lte (int | List[int] | None) – Less than or equal to filter on the day of the month.
day__lt (int | List[int] | None) – Greater than filter on the day of the month.
- Return type:
- classmethod name(*, exact__i=None, contains__i=None)¶
Allows filtering results based on text fields. For example, filtering with
ProjectsFilter.name(contains__i='reviews')
only returns results containing the text reviews for the specified field.
- classmethod owner(*, id, email__exact__i, email__contains__i)¶
Allows filtering projects based on their owner. For example, filtering with
ProjectsFilter.owner(email__exact__i='katy@acme.com')
only returns projects that belong tokaty@acme.com
.- Parameters:
id (str | List[str] | None) – Allows filtering on project owner identifiers.
email__exact__i (str | List[str] | None) – Allows filtering on exact, case-insensitive email addresses of project owners.
email__contains__i (str | List[str] | None) – Allows filtering on partial, case-insensitive email addresses of project owners.
- Return type:
- classmethod tags(tag)¶
Allows filtering projects based on the tags they contain. For example, filtering with
ProjectsFilter.tags('tag1') & ProjectsFilter.tags('tag2')
returns all projects that are tagged with bothtag1
andtag2
.
- classmethod translation_engine(translation_engine)¶
Allows filtering projects based on their translation engine. For example, filtering with
ProjectsFilter.translation_engine('google_translate')
returns all projects that have Google Translate enabled.
- classmethod translation_status(translation_status)¶
Allows filtering projects based on their translation status. For example, filtering with
ProjectsFilter.translation_status(['disabled', 'pending'])
returns all projects that have translation disabled or translation is still pending.
- classmethod upload_status(upload_status)¶
Allows filtering projects based on their upload status. For example, filtering with
ProjectsFilter.upload_status(['pending', 'failed'])
returns all projects that are pending or have failed.
- class caplena.filters.RowsFilter(constraints=None, has_conjunction=False)¶
The filter that can be used to filter rows.
- Parameters:
- class Columns¶
Allows filtering rows based on the values of its columns.
- classmethod boolean(*, ref, exact=None)¶
Allows filtering on boolean columns.
- Parameters:
- Return type:
- classmethod date(*, ref, gte=None, gt=None, lte=None, lt=None, range=None)¶
Allows filtering on date columns.
- Parameters:
gte (datetime | List[datetime] | None) – Greater than or equal to filter for date times.
gt (datetime | List[datetime] | None) – Greater than filter for date times.
lte (datetime | List[datetime] | None) – Less than or equal to filter for date times.
lt (datetime | List[datetime] | None) – Less than filter for date times.
range (typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year] | List[typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year]] | None) – Range filter for date times.
ref (str) –
- Return type:
- static numerical(*, ref, exact=None, gte=None, gt=None, lte=None, lt=None)¶
Allows filtering on numerical columns.
- Parameters:
ref (str) – The numerical column reference.
exact (float | List[float] | None) – Exact filter for numerical values.
gte (float | List[float] | None) – Greater than or equal to filter for numerical values.
gt (float | List[float] | None) – Greater than filter for numerical values.
lte (float | List[float] | None) – Less than or equal to filter for numerical values.
lt (float | List[float] | None) – Less than filter for numerical values.
- Return type:
- classmethod text(*, ref, exact__i=None, contains__i=None)¶
Allows filtering on text columns.
- classmethod text_to_analyze(*, ref, exact__i=None, contains__i=None, was_reviewed=None, source_language=None, translated_value__exact__i=None, translated_value__contains__i=None)¶
Allows filtering on verbatim columns.
- Parameters:
ref (str) – The verbatim column reference.
exact__i (str | List[str] | None) – Allows filtering on exact, case-insensitive verbatims.
contains__i (str | List[str] | None) – Allows filtering on partial, case-insensitive verbatims.
was_reviewed (bool | List[bool] | None) – Allows filtering on reviewed columns.
source_language (str | List[str] | None) – Allows filtering on the source language of this column.
translated_value__exact__i (str | List[str] | None) – Allows filtering on exact, case-insensitive translated text verbatims.
translated_value__contains__i (str | List[str] | None) – Allows filtering on partial, case-insensitive translated text verbatims.
- Return type:
- __and__(other)¶
Creates and returns the immutable conjunction of two separate filters. The original filters will not be modified.
- Parameters:
self (Filter) – The first filter.
other (Filter) – The second filter.
- Return type:
Filter
- __or__(other)¶
Creates and returns the immutable disjunction of two separate filters. The original filters will not be modified.
- Parameters:
self (Filter) – The first filter.
other (Filter) – The second filter.
- Return type:
Filter
- classmethod created(*, gte=None, gt=None, lte=None, lt=None, range=None, year=None, year__gte=None, year__gt=None, year__lte=None, year__lt=None, month=None, month__gte=None, month__gt=None, month__lte=None, month__lt=None, day=None, day__gte=None, day__gt=None, day__lte=None, day__lt=None)¶
Allows filtering results based on date fields. For example, filtering with
RowsFilter.created(year=2022, month=1)
returns all results for January 2022 for the specified field.- Parameters:
gte (datetime | List[datetime] | None) – Greater than or equal to filter for date times.
gt (datetime | List[datetime] | None) – Greater than filter for date times.
lte (datetime | List[datetime] | None) – Less than or equal to filter for date times.
lt (datetime | List[datetime] | None) – Less than filter for date times.
range (typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year] | List[typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year]] | None) – Range filter for date times.
year (int | List[int] | None) – Allows filtering on the year.
year__gte (int | List[int] | None) – Greater than or equal to filter on the year.
year__gt (int | List[int] | None) – Greater than filter on the year.
year__lte (int | List[int] | None) – Less than or equal to filter on the year.
year__lt (int | List[int] | None) – Less than filter on the year.
month (int | List[int] | None) – Allows filtering on the month of the year.
month__gte (int | List[int] | None) – Greater than or equal to filter on the month of the year.
month__gt (int | List[int] | None) – Greater than filter on the month of the year.
month__lte (int | List[int] | None) – Less than or equal to filter on the month of the year.
month__lt (int | List[int] | None) – Greater than filter on the month of the year.
day (int | List[int] | None) – Allows filtering on the day of the month.
day__gte (int | List[int] | None) – Greater than or equal to filter on the day of the month.
day__gt (int | List[int] | None) – Greater than filter on the day of the month.
day__lte (int | List[int] | None) – Less than or equal to filter on the day of the month.
day__lt (int | List[int] | None) – Greater than filter on the day of the month.
- Return type:
- classmethod last_modified(*, gte=None, gt=None, lte=None, lt=None, range=None, year=None, year__gte=None, year__gt=None, year__lte=None, year__lt=None, month=None, month__gte=None, month__gt=None, month__lte=None, month__lt=None, day=None, day__gte=None, day__gt=None, day__lte=None, day__lt=None)¶
Allows filtering results based on date fields. For example, filtering with
RowsFilter.last_modified(year=2022, month=1)
returns all results for January 2022 for the specified field.- Parameters:
gte (datetime | List[datetime] | None) – Greater than or equal to filter for date times.
gt (datetime | List[datetime] | None) – Greater than filter for date times.
lte (datetime | List[datetime] | None) – Less than or equal to filter for date times.
lt (datetime | List[datetime] | None) – Less than filter for date times.
range (typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year] | List[typing_extensions.Literal[all_time, this_month, last_month, this_quarter, last_quarter, this_year, last_year]] | None) – Range filter for date times.
year (int | List[int] | None) – Allows filtering on the year.
year__gte (int | List[int] | None) – Greater than or equal to filter on the year.
year__gt (int | List[int] | None) – Greater than filter on the year.
year__lte (int | List[int] | None) – Less than or equal to filter on the year.
year__lt (int | List[int] | None) – Less than filter on the year.
month (int | List[int] | None) – Allows filtering on the month of the year.
month__gte (int | List[int] | None) – Greater than or equal to filter on the month of the year.
month__gt (int | List[int] | None) – Greater than filter on the month of the year.
month__lte (int | List[int] | None) – Less than or equal to filter on the month of the year.
month__lt (int | List[int] | None) – Greater than filter on the month of the year.
day (int | List[int] | None) – Allows filtering on the day of the month.
day__gte (int | List[int] | None) – Greater than or equal to filter on the day of the month.
day__gt (int | List[int] | None) – Greater than filter on the day of the month.
day__lte (int | List[int] | None) – Less than or equal to filter on the day of the month.
day__lt (int | List[int] | None) – Greater than filter on the day of the month.
- Return type:
Iterator¶
- class caplena.iterator.CaplenaIterator(*, results_fetcher, current_page=0, total_results_fetched=0, results=None, total_count=None, limit=None, has_next=True)¶
A lazy iterator, only fetches more results when the entries are iterated.
Exceptions¶
- class caplena.api.ApiException(*, type, code, message='An unknown error occurred. Please reach out to us at support@caplena.com.', details=None, help=None, context=None)¶
The API Exception that is thrown by the Caplena REST API.
- Parameters:
type (str) – The type of the error returned.
code (str) – A short string that uniquely identifies the reason for this error. Useful for programmatic error handling. Should never be shown to your end users.
message (str) – A brief human-readable message providing more details about the error that has occurred. Please note that error messages might change and are therefore not suitable for programmatic error handling. Can be shown to end users.
details (str | None) – A lengthier human-readable explanation of the error. This property is intened for use by developers only and provides additional information on how this issue could be resolved. Should never be shown to your end users.
help (str | None) – URL that links to part of our developer documentation, allowing engineers to learn more about how to fix the given issue. Should never be shown to your end users.
context (Any) – Additional context that might be present depending on the error type and code.
- code: str¶
A short string that uniquely identifies the reason for this error. Useful for programmatic error handling. Should never be shown to your end users.
- details: str | None¶
A lengthier human-readable explanation of the error. This property is intened for use by developers only and provides additional information on how this issue could be resolved. Should never be shown to your end users.
- help: str | None¶
URL that links to part of our developer documentation, allowing engineers to learn more about how to fix the given issue. Should never be shown to your end users.