Skip to main content

Python interface to ICAT and IDS

Project description

Documentation build status PyPI version

python-icat – Python interface to ICAT and IDS

This package provides a collection of modules for writing Python programs that access an ICAT service using the SOAP interface. It is based on Suds and extends it with ICAT specific features.

Download

The latest release version can be found in the Python Package Index (PyPI).

System requirements

Python

  • 3.4 and newer.

Required library packages

  • setuptools

  • packaging

  • Suds. The original version by Jeff Ortel is not maintained anymore since very long time and not supported. There are several forks around, most of them short-lived. Two of them have been evaluated with python-icat and found to work: the fork by Jurko Gospodnetić and the more recent suds-community. The latter has officially been renamed back to suds since version 1.0.0. Note that suds-community does not work with older ICAT servers, see below.

Optional library packages

These packages are only needed to use certain extra features. They are not required to install or use python-icat itself:

  • PyYAML

    Only needed to use the YAML backend of icatdump.py and icatingest.py and to run the example scripts (see below).

  • lxml

    Only needed to use the XML backend of icatdump.py and icatingest.py.

  • setuptools_scm

    The version number is managed using this package. All source distributions add a static text file with the version number and fall back using that if setuptools_scm is not available. So this package is only needed to build out of the plain development source tree as cloned from GitHub.

  • pytest >= 3.1.0

    Only if you want to run the tests.

  • pytest-dependency >= 0.2

    Only if you want to run the tests.

  • distutils-pytest

    Only if you want to run the tests.

Installation

Installation from PyPI

You can install python-icat from PyPI using pip:

$ pip install python-icat

Installation from the source distribution

Steps to manually build from the source distribution:

  1. Download the sources, unpack, and change into the source directory.

  2. Build:

    $ python setup.py build
  3. Test (optional, see below):

    $ python setup.py test
  4. Install:

    $ python setup.py install

The last step might require admin privileges in order to write into the site-packages directory of your Python installation.

Building from development sources

For production use, it is always recommended to use the latest release version from PyPI, see above. If you need some not yet released bleeding edge feature or if you want to participate in the development, you may also clone the source repository from GitHub.

Note that some source files are dynamically created and thus missing in the development sources. If you want to build from the development sources, you may use the provided Makefile. E.g. type make build, make test, and make sdist.

Documentation

See the online documentation.

Example scripts can be found in doc/examples. This is mostly an unsorted collection of test scripts that I initially wrote for myself to try things out.

Almost all scripts use example_data.yaml as input for test data. Of course for real production, the input will come from different sources, out of some workflow from the site. But this would be dynamic and site specific and thus not suitable, neither for testing nor for the inclusion into example scripts. So its easier to have just one blob of dummy input data in one single file. That is also the reason why the example scripts require PyYAML.

Test

There is no need to run the tests at all. The test suite is mostly useful to the maintainer of python-icat.

Most tests require a test ICAT server to talk to. These tests are disabled by default, unless you configure such a test server. To do so, place an icat.cfg file into tests/data. This file must have at least the configuration sections “root”, “useroffice”, “acord”, “ahau”, “jbotu”, “jdoe”, “nbour”, and “rbeck” with the options and credentials to access the test server as the respective user. See doc/examples for an example. Obviously, this implies that your authentication plugin must also have these users configured.

WARNING: the tests are destructive! They will delete all content from the test server and replace it with example content. Do not configure the tests to access a production server!

You can safely run the tests without configuring any test server. You will just get many skipped tests then.

Bugs and limitations

  • There are issues with ICAT server 4.8.0 and older when using suds-community, see Issue #72 for details. Use suds-jurko when you need to talk to those older ICAT servers. On the other hand, suds-jurko does not seem to be maintained any more and can not be installed with setuptools 58.0.0 and newer.

  • If supported by the ICAT server (icat.server 4.9.0 and newer), the icat.config module queries the server for information on available authenticators and the credential keys they require for login. The configuration variables for these keys are then adapted accordingly. Therefore, the set of configuration variables depends on the ICAT server and the available authentication plugins. But the help message displayed by the –help command line option is static. As a result, this help message is not always accurate. When connecting to a specific ICAT service, it may happen that different configuration variables and thus command line arguments are effective then those shown by the generic help message.

  • The return value of the formal string representation operator of class Query can not be used to recreate another query object with the same value as required by Python standards, see Issue #94 for details.

  • The entries in the no_proxy configuration variable are matched against the host part of the URL by simple string comparison. The host is excluded from proxy use if its name ends with any item in no_proxy. It is not checked whether the matching part starts with a domain component. E.g. setting no_proxy=ion.example.org will not only exclude icat.ion.example.org, but also lion.example.org, although the latter is not in the ion.example.org domain. IP addresses are not supported in no_proxy. This is a limitation in the implementation of the underlying Python library.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-icat-1.0.0b1.tar.gz (230.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page