Lightweight beamline control system
Project description
Concert is a light-weight control system interface to control Tango and native devices. It requires Python >= 3.7, for tests you will need >= 3.8. It can be used as a library:
from concert.quantities import q from concert.devices.motors.dummy import LinearMotor motor = await LinearMotor() await motor.set_position(10 * q.mm) await motor.move(-5 * q.mm)
or from a session and within an integrated IPython shell:
$ concert start concert > from concert.devices.motors.dummy import LinearMotor concert > motor = await LinearMotor() concert > await motor.set_position(10 * q.mm) # The asyncio blocking way concert > task = motor.set_position(10 * q.mm) # The asyncio non-blocking way concert > motor.position = 10 * q.mm # User convenience for blocking calls concert > motor.position 10 <Unit('millimeter')>
You can read more about Concert in the official documentation.
Citation
If you want to use Concert, we kindly ask you to acknowledge the respective authorship not only by respecting the LGPL software license but also by linking to our project website at http://ufo.kit.edu and citing the following article: Vogelgesang, M., Farago, T., Morgeneyer, T. F., Helfen, L., dos Santos Rolo, T., Myagotin, A. & Baumbach, T. (2016). J. Synchrotron Rad. 23, 1254-1263, https://doi.org/10.1107/S1600577516010195.
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
File details
Details for the file concert-0.32.0.tar.gz
.
File metadata
- Download URL: concert-0.32.0.tar.gz
- Upload date:
- Size: 151.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f78e0299d017f565bcbdd76ac7e198f71f7d1c9f0b5dc27ac3f095aa40f853d |
|
MD5 | afeb1617225bdd1b650c3a901fda05e2 |
|
BLAKE2b-256 | d1b5fc9602d465a2371edf2bfe04d823a6171839e386756b6252b90d034a0ed8 |