Skip to content

Commit 1617729

Browse files
committed
Merge branch 'master' of github.com:rdemaria/pytimber
2 parents 57977d1 + b1e3808 commit 1617729

File tree

15 files changed

+7152
-46
lines changed

15 files changed

+7152
-46
lines changed

README.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Explore variable hierarchies:
6565
```python
6666
ldb.tree
6767
print(dir(ldb.tree))
68-
print(ldb.tree.LHC.Collimators.BPM.bpmColl._get_vars())
68+
print(ldb.tree.LHC.Collimators.BPM.bpmColl.get_vars())
6969
```
7070

7171
Get data for a particular LHC fill:
@@ -93,21 +93,11 @@ By default all times are returned as Unix timestamps. If you pass
9393

9494
## Usage with PageStore
9595

96-
pytimber can be combined with [PageStore][] for local data storage.
97-
98-
[pagestore]: https://github.com/rdemaria/pagestore
99-
100-
Installation (assuming pytimber is already installed):
101-
102-
```sh
103-
pip install git+https://github.com/rdemaria/pagestore.git
104-
```
105-
106-
Usage example:
96+
pytimber can be combined with PageStore for local data storage. Usage example:
10797

10898
```python
10999
import pytimber
110-
import pagestore
100+
from pytimber import pagestore
111101

112102
ldb = pytimber.LoggingDB()
113103
mydb = pagestore.PageStore('mydata.db', './datadb')

0 commit comments

Comments
 (0)