PyClarify Client

Copyright 2022 Searis AS

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

class pyclarify.client.Client(clarify_credentials)

Bases: JSONRPCClient

The class containing all rpc methods for talking to Clarify. Uses credential file on initialization.

Parameters:

clarify_credentials (path to json file) – Path to the Clarify credentials json file from the integrations page in clarify. See user guide for more information.

Example

>>> client = Client("./clarify-credentials.json")
data_frame(filter: Optional[Filter] = None, sort: List[str] = [], limit: int = 20, skip: int = 0, total: bool = False, gte: Union[datetime, str] = None, lt: Union[datetime, str] = None, last: int = -1, rollup: Union[str, timedelta] = None, include: List[str] = []) Response

Return dataframe for items.

Time selection: - Maximum window size is 40 days (40 * 24 hours) when rollup is null or less than PT1M (1 minute). - Maximum window size is 400 days (400 * 24 hours) when rollup is greater than or equal to PT1M (1 minute). - No maximum window size if rollup is window.

Parameters:
  • filter (Filter, optional) – A Filter Model that describes a mongodb filter to be applied.

  • sort (list of strings) – List of strings describing the order in which to sort the items in the response.

  • limit (int, default 20) – The maximum number of resources to select. Negative numbers means no limit, which may or may not be allowed.

  • skip (int default: 0) – Skip the first N matches. A negative skip is treated as 0.

  • total (bool default: False) – When true, force the inclusion of a total count in the response. A total count is the total number of resources that matches filter.

  • gte (string(RFC 3339 timestamp) or python datetime, optional, default <now - 7 days>) – An RFC3339 time describing the inclusive start of the window.

  • lt (string(RFC 3339 timestamp) or python datetime, optional, default <now + 7 days>) – An RFC3339 time describing the exclusive end of the window.

  • last (int, default -1) – If above 0, select last N timestamps per series. The selection happens after the rollup aggregation.

  • rollup (timedelta or string(RFC 3339 duration) or "window", default None) – If RFC 3339 duration is specified, roll-up the values into either the full time window (gte -> lt) or evenly sized buckets.

  • include (List of strings, optional) – A list of strings specifying which relationships to be included in the response.

Example

>>> client.data_frame(
>>>     filter = query.Filter(fields={"name": query.NotEqual(value="Air Temperature")}),
>>>     sort = ["-id"],
>>>     limit = 5,
>>>     skip = 3,
>>>     total = False,
>>>     gte="2022-01-01T01:01:01Z",
>>>     lt="2022-01-09T01:01:01Z",
>>>     rollup="PT24H",
>>>     include = ["item"],
>>> )
Returns:

In case of a valid return value, returns a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = Selection(
>>>     meta={
>>>         'total': -1,
>>>         'groupIncludedByType': True
>>>     },
>>>     data=DataFrame(
>>>         times=[datetime.datetime(2022, 1, 1, 12, 0, tzinfo=datetime.timezone.utc),..],
>>>         series={
>>>             'c5i41fjsbu8cohpkcpvg': [0.18616, 0.18574000000000002, ...,],
>>>             ...
>>>         }
>>>     )
>>>     included=IncludedField(
>>>         integration=None,
>>>         items=[
>>>             ItemSelectView(
>>>                 id='c5i41fjsbu8cohpkcpvg',
>>>                 type='items',
>>>                 meta=ResourceMetadata(
>>>                     annotations={
>>>                         "docs-clarify-io/example/environment": "office"
>>>                     },
>>>                     attributesHash='7602afa2fe611e0c8eff17f7936e108ee29e6817',
>>>                     relationshipsHash='5f36b2220a14b54ee5ea290645ee34d943ea5be5',
>>>                     updatedAt=datetime.datetime(2022, 3, 25, 9, 58, 20, 264000, tzinfo=datetime.timezone.utc),
>>>                     createdAt=datetime.datetime(2021, 10, 11, 13, 48, 46, 958000, tzinfo=datetime.timezone.utc)
>>>                 ),
>>>                 attributes=Item(
>>>                     name='Dunder ReBond Inventory Level',
>>>                     valueType=<TypeSignal.numeric: 'numeric'>,
>>>                     description='How many reams of the Dunder ReBond we have in the warehouse.',
>>>                     labels={
>>>                         'type': ['Recycled', 'Bond'],
>>>                         'location': ['Scranton'],
>>>                         'threat-level': ['Midnight']
>>>                     },
>>>                     engUnit='',
>>>                     enumValues={},
>>>                     sourceType=<SourceTypeSignal.measurement: 'measurement'>,
>>>                     sampleInterval=None,
>>>                     gapDetection=datetime.timedelta(seconds=7200),
>>>                     visible=True
>>>                 )
>>>             )
>>>             ...
>>>         ]
>>>     )
>>> )
>>> ),
>>> error = None

In case of the error the method return a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = None
>>> error = Error(
>>>         code = '-32602',
>>>         message = 'Invalid params',
>>>         data = ErrorData(trace = <trace_id>, params = {})
>>> )

Return type:

Response

insert(data: DataFrame) Response

This call inserts data to one or multiple signals. The signal is given an input id by the user. The signal is uniquely identified by its input ID in combination with the integration ID. If no signal with the given combination exists, an empty signal is created. With the creation of the signal, a unique signal id gets assigned to it. Mirroring the Clarify API call integration.insert .

Parameters:

data (DataFrame) – Dataframe containing the values of a signal in a key-value pair, and seperate time axis.

Example

>>> from pyclarify import DataFrame
>>> data = DataFrame(
>>>     series={"<INPUT_ID_1>": [1, 2], "<INPUT_ID_2>": [3, 4]},
>>>     times=["2021-11-01T21:50:06Z",  "2021-11-02T21:50:06Z"]
>>> )
>>> client.insert(data)
Returns:

In case of a valid return value, returns a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> signalsByInput = {
>>>     '<INPUT_ID_1>': CreateSummary(id = '<SIGNAL_ID_1>', created = True),
>>>     '<INPUT_ID_2>': CreateSummary(id = '<SIGNAL_ID_2>', created = True)
>>> }
>>> error = None

Where:

  • InsertResponse is a a pydantic model with field signalsByInput.

  • signalsByInput is a Dict[InputID, CreateSummary].

  • CreateSummary is a a pydantic model with field id: str and created: bool (True if a new instance was created, False is the instance already existed).

In case of the error (for example not equal length) the method return a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = None
>>> error = Error(
>>>         code = '-32602',
>>>         message = 'Invalid params',
>>>         data = ErrorData(
>>>                     trace = <trace_id>,
>>>                     params = {'data.series.id': ['not same length as times']}
>>>         )
>>> )

Return type:

Response

publish_signals(signal_ids: List[ConstrainedStrValue] = [], items: List[Item] = [], items_by_signal: Dict[ConstrainedStrValue, Item] = {}, create_only: bool = False, integration: str = None) Response

Publishes one or multiple signals to create one or multiple items, and creates or updates a set of signals with the provided metadata. Each signal is uniquely identified by its signal ID in combination with the integration ID. Mirroring the Clarify API call admin.publishSignals .

Parameters:
  • signal_ids (List['<SIGNAL_ID>']) – List of strings to be the signal ID of the signal.

  • items (List[ Item ]) – List of Item object that contains metadata for a Item. Click here for more information.

  • items_by_signal (Dict[ResourceID, Item]) – Dictionary with IDs of signals mapped to Item metadata.

  • create_only (bool, default False) – If set to True, skip update of information for existing Items. That is, all signal_ids that map to existing items are silently ignored.

  • integration (str Default None) – Integration ID in string format. None means using the integration in credential file.

Example

>>> from pyclarify import Item
>>>
>>> item = Item(
>>>    name = "Home temperature",
>>>    description = "Temperature in the bedroom",
>>>    labels = {"data-source": ["Raspberry Pi"], "location": ["Home"]},
>>>    visible=True
>>> )
>>> client.publish_signals(signal_ids=['<SIGNAL_ID>'], items=[item], create_only=False)
Returns:

In case of a valid return value, returns a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = PublishSignalsResponse(
>>>                    itemsBySignal = {'<SIGNAL_ID>': SaveSummary(
>>>                           id='<ITEM_ID>',
>>>                           created=True,
>>>                           updated=False )})
>>> error = None

In case of the error the method return a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = None
>>> error = Error(
>>>         code = '-32602',
>>>         message = 'Invalid params',
>>>         data = ErrorData(trace = <trace_id>, params = {})
>>> )

Return type:

Response

save_signals(input_ids: List[ConstrainedStrValue] = [], signals: List[Signal] = [], signals_by_input: Dict[ConstrainedStrValue, Signal] = {}, create_only: bool = False, integration: str = None) Response

This call inserts metadata to one or multiple signals. The signals are uniquely identified by its <INPUT_ID>. Mirroring the Clarify API call integration.saveSignals .

Parameters:
  • input_ids (List['<INPUT_ID>']) –

    List of strings to be the input ID of the signal. Click here for more information.

  • signals (List[Signal]) –

    List of Signal object that contains metadata for a signal. Click here for more information.

  • create_only (bool, default False) – If set to true, skip update of information for existing signals. That is, all Input_ID’s that map to existing signals are silently ignored.

  • integration (str, default None) – Integration ID in string format. None means using the integration in credential file.

Example

>>> from pyclarify import Signal
>>> signal = Signal(
>>>    name = "Home temperature",
>>>    description = "Temperature in the bedroom",
>>>    labels = {"data-source": ["Raspberry Pi"], "location": ["Home"]}
>>> )
>>> save_signals(input_ids=['<INPUT_ID>'], signals=[signal], create_only=False)
Returns:

In case of a valid return value, returns a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = SaveSignalsResponse(
>>>             signalsByInput={
>>>                 '<INPUT_ID>': SaveSummary(id='<SIGNAL_ID>', created=True, updated=False)
>>>              }
>>>          )
>>> error = None

In case of the error the method return a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = None
>>> error = Error(
>>>         code = '-32602',
>>>         message = 'Invalid params',
>>>         data = ErrorData(trace = <trace_id>, params = {})
>>> )

Return type:

Response

select_items(filter: Optional[Filter] = None, include: Optional[List] = [], skip: int = 0, limit: int = 10, sort: List[str] = [], total: Optional[bool] = False) Response

Return item metadata from selected items. For more information click here .

Parameters:
  • filter (Filter, optional) – A Filter Model that describes a mongodb filter to be applied.

  • include (List of strings, optional) – A list of strings specifying which relationships to be included in the response.

  • skip (int, default 0) – Integer describing how many of the first N items to exclude from response.

  • limit (int, default 10) – Number of items to include in the match.

  • sort (list of strings) – List of strings describing the order in which to sort the items in the response.

  • total (bool, deafult False) – When true, force the inclusion of a total count in the response. A total count is the total number of resources that matches filter.

Example

>>> client.select_items(
>>>     filter = query.Filter(fields={"name": query.NotEqual(value="Air Temperature")}),
>>>     skip = 0,
>>>     limit = 10,
>>>     sort = ["-id", "name"],
>>>     total=True,
>>> )
Returns:

In case of a valid return value, returns a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = Selection(
>>>     meta={
>>>         'total': -1,
>>>         'groupIncludedByType': True
>>>     },
>>>     data=[
>>>         ItemSelectView(
>>>             type='items',
>>>             id='cb8hjnrfgirpojeq0uv0',
>>>             meta=ResourceMetadata(
>>>                 annotations={},
>>>                 attributesHash='bd1554f5f6893165f086943adaad176590985b70',
>>>                 relationshipsHash='5f36b2ea290645ee34d943220a14b54ee5ea5be5',
>>>                 updatedAt=datetime.datetime(2022, 7, 15, 7, 40, 15, 899000, tzinfo=datetime.timezone.utc),
>>>                 createdAt=datetime.datetime(2022, 7, 15, 7, 40, 15, 899000, tzinfo=datetime.timezone.utc)
>>>             ),
>>>             attributes=Item(
>>>                 name='test55',
>>>                 valueType=<TypeSignal.numeric: 'numeric'>,
>>>                 description='',
>>>                 labels={'data-source': [], 'location': [], 'type': []},
>>>                 engUnit='',
>>>                 enumValues={},
>>>                 sourceType=<SourceTypeSignal.measurement: 'measurement'>,
>>>                 sampleInterval=None,
>>>                 gapDetection=None,
>>>                 visible=True
>>>             ),
>>>             relationships={}
>>>         ),
>>>         ItemSelectView(...),
>>>         ...
>>>     ]
>>> ),
>>> error=None

Return type:

Response

In case of the error the method return a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = None
>>> error = Error(
>>>         code = '-32602',
>>>         message = 'Invalid params',
>>>         data = ErrorData(trace = <trace_id>, params = {})
>>> )

select_signals(filter: Optional[Filter] = None, skip: int = 0, limit: int = 20, sort: List[str] = [], total: Optional[bool] = False, include: Optional[List] = [], integration: str = None) Response

Return signal metadata from selected signals and/or item.

Parameters:
  • filter (Filter, optional) – A Filter Model that describes a mongodb filter to be applied.

  • skip (int, default 0) – Integer describing how many of the first N items to exclude from response.

  • limit (int, default 10) – Number of items to include in the match.

  • sort (list of strings) – List of strings describing the order in which to sort the items in the response.

  • total (bool, default False) – When true, force the inclusion of a total count in the response. A total count is the total number of resources that matches filter.

  • include (List of strings, optional) – A list of strings specifying which relationships to be included in the response.

  • integration (str Default None) – Integration ID in string format. None means using the integration in credential file.

Example

>>> client.select_signals(
>>>     filter = Filter(fields={"name": filter.NotEqual(value="Air Temperature")}),
>>>     limit = 10,
>>>     skip = 0,
>>>     sort = ["-id"],
>>>     total= True,
>>>     include = ["item"]
>>> )
Returns:

In case of a valid return value, returns a pydantic model with the following format:

>>> jsonrpc='2.0'
>>> id='1'
>>> result=Selection(
>>>     meta=SelectionMeta(
>>>     total=725,
>>>     groupIncludedByType=True
>>>     ),
>>>     data=[
>>>         SignalSelectView(
>>>             id='c5fg083sab1b6pm3u290',
>>>             type='signals',
>>>             meta=ResourceMetadata(
>>>                 annotations={
>>>                     "docs-clarify-io/example/environment": "office"
>>>                 },
>>>                 attributesHash='9ae4eb17c8b3b9f24cea06f09a1a4cab34569077',
>>>                 relationshipsHash='02852897e7fe1e7896360b3c3914c5207d2af6fa',
>>>                 updatedAt=datetime.datetime(2022, 3, 17, 12, 17, 10, 199000, tzinfo=datetime.timezone.utc),
>>>                 createdAt=datetime.datetime(2021, 10, 7, 14, 11, 44, 897000, tzinfo=datetime.timezone.utc)
>>>             ),
>>>             attributes=SavedSignal(
>>>                 name='Total reams of paper',
>>>                 description='Total count of reams of paper in inventory',
>>>                 labels={
>>>                     'type': ['Recycled', 'Bond'],
>>>                     'location': ['Scranton']
>>>                 },
>>>                 sourceType=<SourceTypeSignal.measurement: 'measurement'>,
>>>                 valueType=<TypeSignal.numeric: 'numeric'>,
>>>                 engUnit='',
>>>                 enumValues={},
>>>                 sampleInterval=None,
>>>                 gapDetection=None,
>>>                 input='inventory_recycled_bond',
>>>                 integration=None,
>>>                 item=None
>>>             ),
>>>             relationships=RelationshipsDict(
>>>                 integration=RelationshipData(
>>>                     data=RelationshipMetadata(
>>>                         type='integrations',
>>>                         id='c5e3u8coh8drsbpi4cvg'
>>>                     )
>>>                 ),
>>>                 item=RelationshipData(data=None)
>>>             )
>>>         ),
>>>         ...
>>>     ],
>>>     included=IncludedField(
>>>         integration=None,
>>>         items=[
>>>             ItemSelectView(
>>>                 id='c5i41fjsbu8cohpkcpvg',
>>>                 type='items',
>>>                 meta=ResourceMetadata(
>>>                     annotations={
>>>                         "docs-clarify-io/example/environment": "office"
>>>                     },
>>>                     attributesHash='7602afa2fe611e0c8eff17f7936e108ee29e6817',
>>>                     relationshipsHash='5f36b2220a14b54ee5ea290645ee34d943ea5be5',
>>>                     updatedAt=datetime.datetime(2022, 3, 25, 9, 58, 20, 264000, tzinfo=datetime.timezone.utc),
>>>                     createdAt=datetime.datetime(2021, 10, 11, 13, 48, 46, 958000, tzinfo=datetime.timezone.utc)
>>>                 ),
>>>                 attributes=Item(
>>>                     name='Dunder ReBond Inventory Level',
>>>                     valueType=<TypeSignal.numeric: 'numeric'>,
>>>                     description='How many reams of the Dunder ReBond we have in the warehouse.',
>>>                     labels={
>>>                         'type': ['Recycled', 'Bond'],
>>>                         'location': ['Scranton'],
>>>                         'threat-level': ['Midnight']
>>>                     },
>>>                     engUnit='',
>>>                     enumValues={},
>>>                     sourceType=<SourceTypeSignal.measurement: 'measurement'>,
>>>                     sampleInterval=None,
>>>                     gapDetection=datetime.timedelta(seconds=7200),
>>>                     visible=True
>>>                 )
>>>             )
>>>             ...
>>>         ]
>>>     )
>>> )
>>> error=None

In case of the error the method return a pydantic model with the following format:

>>> jsonrpc = '2.0'
>>> id = '1'
>>> result = None
>>> error = Error(
>>>         code = '-32602',
>>>         message = 'Invalid params',
>>>         data = ErrorData(trace = <trace_id>, params = {})
>>> )

Return type:

Response