API: The Source Code#

The APSBITS package provides tools and utilities to build Bluesky instruments. The package structure is:

 1docs/source         sphinx documentation source
 2pyproject.toml      project configuration
 3src/               Python source code tree
 4    apsbits/       root of the 'apsbits' package
 5        core/      core components for Bluesky data acquisition
 6        utils/     utilities for setup and configuration
 7        demo_instrument/  example instrument implementation
 8            startup.py   setup a demo session for Bluesky data acquisition
 9            callbacks/  receive and handle info from other code
10            configs/   configuration files
11            devices/   demo instrument's controls
12            plans/    demo instrument's measurement procedures
13        demo_qserver/   example queueserver implementation

A Bluesky data acquisition session using the demo instrument begins with:

from apsbits.demo_instrument.startup import *

The apsbits/ package is described in the following sections.

API Documentation#

This section contains detailed API documentation for the APSBITS package.

Core Components#

The core components provide the fundamental building blocks for Bluesky data acquisition:

apsbits.core.best_effort_init

BestEffortCallback: simple real-time visualizations, provides bec.

apsbits.core.catalog_init

Databroker catalog, provides cat

apsbits.core.run_engine_init

Setup the Bluesky RunEngine, provides RE and sd.

Utilities#

The utilities module provides helper functions and tools:

apsbits.utils.aps_functions

APS utility helper functions

apsbits.utils.config_loaders

Configuration management for the instrument.

apsbits.utils.controls_setup

EPICS & ophyd related setup

apsbits.utils.helper_functions

Generic utility helper functions

apsbits.utils.logging_setup

Configure logging for this session.

apsbits.utils.metadata

RunEngine Metadata

apsbits.utils.stored_dict

Storage-backed Dictionary A dictionary that writes its contents to YAML file. Replaces bluesky.utils.PersistentDict. * Contents must be JSON serializable. * Contents stored in a single human-readable YAML file. * Sync to disk shortly after dictionary is updated. .. autosummary: :9: (ERROR/3) Unexpected indentation. ~StoredDict

Demo Components#

Example implementations and templates: