No project description provided
Project description
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
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:
=
oreq
(assumed per default)>=
orgte
>
orgt
<=
orlte
<
orlt
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
.
References
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
Built Distribution
Hashes for runregistryclient-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53d82eda47ab4c57862f2eabc73a0db3a930919e6c5851566505cb60347eb22a |
|
MD5 | ea1c9ebd2c730defe404a686ff0a4e6d |
|
BLAKE2b-256 | 6e826a2bddd71c81c1c6064fe7689e9b37d775c59b954466b3762692c1408954 |