CAOM-2.4 repo access and tools
Project description
Client caom2-repo
caom2Repo provides a client (caom2-repo) to perform CRUD (Create, Read, Update, Delete) on an observation in a collection in a repository.
Visitor Plugin
The client also provides a visitor function which accepts a plugin. The visitor function iterates the observations of a collection and updates them according to the algorithm of the plugin function. The following is an example plugin to add a ‘PREVIEW’ Plane to an observation. More plugin examples can be found in caom2repo/tests/.
from __future__ import (absolute_import, division, print_function, unicode_literals) from caom2.observation import Observation from caom2.plane import Plane class ObservationUpdater(object): """ObservationUpdater that adds a plane to the observation.""" def update(self, observation, **kwargs): """ Processes an observation and updates it """ assert isinstance(observation, Observation), ( "observation %s is not an Observation".format(observation)) observation.planes.add(Plane('PREVIEW'))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
caom2repo-1.5.3.tar.gz
(40.6 kB
view details)
Built Distribution
caom2repo-1.5.3-py3-none-any.whl
(46.6 kB
view details)
File details
Details for the file caom2repo-1.5.3.tar.gz
.
File metadata
- Download URL: caom2repo-1.5.3.tar.gz
- Upload date:
- Size: 40.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8ab9553945dd82ef0d086dcc19233663e8219b51f0775b4e2e31ac764e8665e |
|
MD5 | 8fc0f4c67b959b0c9a012593c4a5020d |
|
BLAKE2b-256 | d56dac48015d651903535d5f822a7aa47942e14b9805e1546b662e8713372b48 |
File details
Details for the file caom2repo-1.5.3-py3-none-any.whl
.
File metadata
- Download URL: caom2repo-1.5.3-py3-none-any.whl
- Upload date:
- Size: 46.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8741b93114fbb071234715696fdd2dc1ba7d084f3dc8630e41e4a5d4b1117597 |
|
MD5 | 44d7b9f028b1d032faa1016d61f44880 |
|
BLAKE2b-256 | 7388d2c74fbe77c5124a9936eab6cd3d7c9aed256aec12556ac8bf8f59f0a151 |