Skip to content

Commit e1b5b9e

Browse files
committed
core (fix): tidy interface
1 parent 1a8b866 commit e1b5b9e

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ a library for connecting to experiments in python
77
```
88
import matplotlib.pyplot as plt
99
import numpy as np
10-
from practable.book import Experiment
10+
from practable.core import Experiment
1111
import time
1212
1313
messages = []

examples/spinner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import matplotlib.pyplot as plt
66
import numpy as np
7-
from practable.book import Experiment
7+
from practable.core import Experiment
88
import time
99

1010
messages = []
@@ -38,4 +38,4 @@
3838
plt.plot(t/1e3,cs,':r',label="set point")
3939
plt.xlabel("time(s)")
4040
plt.ylabel("position(rad)")
41-
plt.legend()
41+
plt.legend()

src/practable/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""python interface for connecting to github.com/practable remote laboratory experiments"""
2-
from . import book
2+
from . import core
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
Booker class handles logging into a booking server and making bookings
77
The user name is stored in the user's configuration directory, or in cwd
88
9+
Experiment class handles connecting to the experiments themselves
10+
911
@author: tim
1012
1113
"""

0 commit comments

Comments
 (0)