You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package provides reading and writing functionality for [**self describing data sets (sdds)**](https://ops.aps.anl.gov/SDDSIntroTalk/slides.html) files.
12
-
On the python side, the data is stored in a class structure with attributes corresponding to the sdds-format itself (see [sdds-format](https://ops.aps.anl.gov/manuals/SDDStoolkit/SDDStoolkitsu2.html)).
11
+
On the python side, the data is stored in a class structure with attributes corresponding to the sdds-format itself (see [sdds-format](https://ops.aps.anl.gov/manuals/SDDStoolkit/SDDStoolkitsu2.html)).
13
12
14
13
See the [API documentation](https://pylhc.github.io/sdds/) for details.
15
14
16
15
## Installing
17
16
18
17
Installation is easily done via `pip`:
18
+
19
19
```bash
20
20
python -m pip install sdds
21
21
```
22
22
23
23
One can also install in a `conda` environment via the `conda-forge` channel with:
24
+
24
25
```bash
25
26
conda install -c conda-forge sdds
26
27
```
@@ -40,7 +41,7 @@ By default the endianness (byte order) of the file is determined either by
40
41
a comment `!# little-endian` or `!# big-endian` in the header of the file.
41
42
If this comment is not found, the endianness of the running machine is assumed.
42
43
43
-
One can force a certain kind of endianness to the reader by supplying it to
44
+
One can force a certain kind of endianness to the reader by supplying it to
0 commit comments