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:
BestEffortCallback: simple real-time visualizations, provides bec. |
|
Databroker catalog, provides cat |
|
Setup the Bluesky RunEngine, provides RE and sd. |
Utilities#
The utilities module provides helper functions and tools:
APS utility helper functions |
|
Configuration management for the instrument. |
|
EPICS & ophyd related setup |
|
Generic utility helper functions |
|
Configure logging for this session. |
|
RunEngine Metadata |
|
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:
Demo instrument package. |
|