runregistryclient

A python client to the CERN CMS Run Registry version 4


License
GPL-3.0
Install
pip install runregistryclient==0.3.0

Documentation

Build Status codecov Code style: black

CERN CMS Run Registry client

A Python client for the new RunRegistry. A Python client for the old RunRegistry can be found here.

Installation

pip install runregistryclient

Prerequisites

Since mai 2019 the run registry requires authenticaion with a CERN user account. Therefore you need to setup your CERN Grid User Certificate as instructed in the cernrequests package:

See: https://github.com/ptrstn/cernrequests#prerequisites

Usage

Example

If you want a single run, do this:

import runreg

runreg.get(run_number=327600)

If you prefer a non-nested JSON output, use the flat=True parameter.

import runreg

runreg.get(run_number=327600, flat=True)

runreg assumes the tracker workspace by default. If you want to change it, you can do so by specifying the workspace attribute:

import runreg

runreg.get(run_number=327600, workspace="global")

Multiple filters at once

If you want to use several filters at once, for example, to filter according to a sequence number range with certain criteria, you can do it this way:

import runreg

runreg.get(run_number=[(327596, ">="), (327744, "lte")], name=("%Cosmics%", "like"))

Or if you prefer Django like lookup fields:

import runreg

runreg.get(run_number__gte=327596, run_number__lte=327744, name__like="%Cosmics%")

Operators

Following operators are supported:

  • = or eq (assumed per default)
  • >= or gte
  • > or gt
  • <= or lte
  • < or lt
  • like

The operators should be specified as the second element of a (value, operator) tuple such as (321123, "<=").

Attributes

All available attributes can be found in the docs folder under attributes.md.

Development

Python version 3.5 or higher is required.

If you want to improve this software, you should follow these steps:

git clone https://github.com/ptrstn/runregistryclient
cd runregistryclient
python -m venv venv
. venv/bin/activate
pip install -e .
pip install -r testing-requirements.txt

Running Tests

pytest --cov .

FAQ

How do you filter by subcomponent status?

If you want to filter for subcomponent states such as Pixel or SiStrip, you must use the attribute names specified in the RunRegistry API. Unfortunately, they contain "-" and "." characters, so you need to use a little trick.

For example, to filter for the Track Status in the workspace Tracker then you need to do:

import runreg

runreg.get(**{"tracker-track.status": "GOOD"})

You can still combine this with other attributes and options:

import runreg

runreg.get(flat=True, run_number=[(327596, ">="), (327744, "lte")], **{"pix.status": "EXCLUDED", "strip.status":"GOOD"})

Whats the difference between tracker-track and track?

track is used for the global workspace, while tracker-track uses the tracker workspace. The same is true for tracker-pix / pix and tracker-strip / strip.

Does this work with Python 2.7?

No.

References