A python client library for the bliss REST API
Project description
blissclient
A python client for the BLISS REST API, the high-level client is fully typed ready for auto-completion in any modern IDE.
Getting Started
Set the BLISSAPI_URL
export BLISSAPI_URL=http://localhost:5000
Then:
from blissclient import BlissClient
client = BlissClient()
# or the blissapi url can be set directly when instantiating the client:
client = BlissClient("http://localhost:5000")
omega = client.hardware.get("omega")
print(omega.position)
future = omega.move(100)
# Wait for the call to temrinate, blocking
future.get()
Execute calls in the session:
import time
from blissclient import BlissClient, get_object
client = BlissClient()
test_session = client.session
future = test_session.call("ascan", get_object("omega"), 0, 10, 10, 0.1, get_object("diode"))
# Ask for the current future state
print(future.state)
# Block until terminated
result = future.get()
# The redis scan key, can be used with `blissdata``
print(result["key"])
get_object("<name>") are translated to the relevant beacon objects.
See the test suite for more examples.
Events
Events are propagated via a websocket using socket.io. blissclient provides a helper function to create connect functions to instantiate the socket.io connection in either threaded or asyncio forms:
connect = self._client.create_connect()
connect()
connect = self._client.create_connect(async_client=True)
await connect()
This function should be run somewhere in the background to ensure event reception. After that objects will be set in evented mode to limit polling.
The client can then subscribe to hardware object events:
omega = client.hardware.get("omega")
def property_event(data: dict[str, any]):
for key, value in data.items():
# for example position
logger.info(f"property event key=`{key}` value=`{value}`")
def online_event(online: bool):
logger.info(f"onine event {online}")
def locked_event(reason: str):
logger.info(f"locked event {reason}")
omega.subscribe("property", property_event)
omega.subscribe("online", online_event)
omega.subscribe("locked", locked_event)
Events also allow stdout to be captured from a session call:
connect = client.create_connect(async_client=True)
task = asyncio.create_task(connect())
future = test_session.call(
"ascan",
get_object("robx"),
0,
5,
5,
0.2,
get_object("diode1"),
in_terminal=True,
emit_stdout=True,
)
response = future.get()
print(future.stdout)
Future API
The future returned by each call tries to emulate a celery future.
future = test_session.call(...)
# Any progress if the task supports it
future.progress
# Assume the called function returns a bliss `Scan` object
future = test_session.call(
"ascan",
...
has_scan_factory=True,
)
# Wait for the scan to start
progress = future.wait_scan()
# Now access the bliss `Scan` key that can be used with blissdata
print(progress["scan"]["key"])
# Ask for the current state (a single REST call)
future.state
# Blocking until terminated (polls the REST API in the background)
# default `monitor_interval` = 5s
future.get(monitor_interval=1)
# Kill the current task
future.kill()
# If socketio was connected and the call requested `emit_stdout=True`
print(future.stdout)
Accessing scan data via blissdata
blissclient will attempt to autoload scan info and provide access to scan data via blissdata. By default blissclient will try to infer the BLISSDATA_URL from the current BLISSAPI_URL, this assumes that redis is running on the same machine as the REST API. In situations where this is not the case you can manually set the blissdata url, where the default port at ESRF is 25002:
export BLISSDATA_URL="redis://myhost:25002"
Once set blissclient will try to resolve the scans:
# blissdata url can also be set when instantiating the client
client = BlissClient(blissdata_url="redis://myhost:25002")
...
future = test_session.call(
"ascan",
...
)
scan = future.get()
scan.info
{'type': 'ascan',
'save': False,
...
}
scan.stream('timer:epoch')[:]
array([1.7732378e+09])
You can completely disable this behaviour by setting:
export BLISSCLIENT_AUTOLOAD_SCAN=false
or when you instantiate the client:
client = BlissClient(autoload_scans=False)
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file blissclient-1.4.0.tar.gz.
File metadata
- Download URL: blissclient-1.4.0.tar.gz
- Upload date:
- Size: 23.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8558c133fdc47076cc507587da0d95764ef5c35fc884cf41ab778847ccc55c9
|
|
| MD5 |
e315192201b3521f9763d26c6987ba50
|
|
| BLAKE2b-256 |
00f3d00abc8066c0c911f62d9c0960845aeb7e2dda029e34b8d4944202f783f3
|
File details
Details for the file blissclient-1.4.0-py3-none-any.whl.
File metadata
- Download URL: blissclient-1.4.0-py3-none-any.whl
- Upload date:
- Size: 37.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2abfad292299d9421bada03b0c7827745916d6db354083cbdcc44d05340138b7
|
|
| MD5 |
4f0ccdaaf335131cb916145a939e6684
|
|
| BLAKE2b-256 |
57c1717de8ddb8fe909b8599b4b7c7e2657b2a61869b75b3600ecefdcbadecde
|