pymscada 0.1.11b2__py3-none-any.whl → 0.1.11b4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pymscada might be problematic. Click here for more details.
- pymscada/checkout.py +6 -9
- pymscada/demo/files.yaml +2 -3
- pymscada/demo/opnotes.yaml +1 -1
- pymscada/demo/ping.yaml +0 -3
- pymscada/demo/tags.yaml +0 -149
- pymscada/demo/wwwserver.yaml +6 -199
- pymscada/module_config.py +18 -9
- {pymscada-0.1.11b2.dist-info → pymscada-0.1.11b4.dist-info}/METADATA +1 -1
- {pymscada-0.1.11b2.dist-info → pymscada-0.1.11b4.dist-info}/RECORD +12 -12
- {pymscada-0.1.11b2.dist-info → pymscada-0.1.11b4.dist-info}/WHEEL +0 -0
- {pymscada-0.1.11b2.dist-info → pymscada-0.1.11b4.dist-info}/entry_points.txt +0 -0
- {pymscada-0.1.11b2.dist-info → pymscada-0.1.11b4.dist-info}/licenses/LICENSE +0 -0
pymscada/checkout.py
CHANGED
|
@@ -57,21 +57,18 @@ def make_config(overwrite: bool):
|
|
|
57
57
|
else:
|
|
58
58
|
continue
|
|
59
59
|
print(f'{rt} {target}')
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
rd_bytes = config_file.read_bytes()
|
|
61
|
+
if target.name.lower() != 'readme.md':
|
|
62
62
|
for k, v in PATH.items():
|
|
63
|
-
rd_bytes = rd_bytes.replace(k.encode(),str(v).encode())
|
|
64
|
-
|
|
65
|
-
else:
|
|
66
|
-
target.write_bytes(config_file.read_bytes())
|
|
63
|
+
rd_bytes = rd_bytes.replace(k.encode(), str(v).encode())
|
|
64
|
+
target.write_bytes(rd_bytes)
|
|
67
65
|
|
|
68
66
|
|
|
69
67
|
def read_with_subst(file: Path):
|
|
70
68
|
"""Read the file and replace DIR markers."""
|
|
71
69
|
rd = file.read_bytes().decode()
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
rd = rd.replace(k, str(v))
|
|
70
|
+
for k, v in PATH.items():
|
|
71
|
+
rd = rd.replace(k, str(v))
|
|
75
72
|
lines = rd.splitlines()
|
|
76
73
|
return lines
|
|
77
74
|
|
pymscada/demo/files.yaml
CHANGED
pymscada/demo/opnotes.yaml
CHANGED
pymscada/demo/ping.yaml
CHANGED
pymscada/demo/tags.yaml
CHANGED
|
@@ -109,151 +109,6 @@ FloatSelect:
|
|
|
109
109
|
labels: [Floats, For, This, Tag]
|
|
110
110
|
values: [0.1, 0.1, 0.2, 0.3]
|
|
111
111
|
locks: [0, 1, 0, 0]
|
|
112
|
-
cpu_temp:
|
|
113
|
-
desc: CPU Load
|
|
114
|
-
type: float
|
|
115
|
-
min: 0
|
|
116
|
-
max: 100
|
|
117
|
-
units: '°C'
|
|
118
|
-
dp: 1
|
|
119
|
-
cpu_load:
|
|
120
|
-
desc: Float Value
|
|
121
|
-
type: float
|
|
122
|
-
min: 0
|
|
123
|
-
max: 100
|
|
124
|
-
units: '%'
|
|
125
|
-
dp: 1
|
|
126
|
-
disk_use:
|
|
127
|
-
desc: Float Value
|
|
128
|
-
type: float
|
|
129
|
-
min: 0
|
|
130
|
-
max: 100
|
|
131
|
-
units: '%'
|
|
132
|
-
dp: 1
|
|
133
|
-
sim_IntSet: # for the demo PLC sim_ tags not required
|
|
134
|
-
desc: Simulation tag
|
|
135
|
-
type: int
|
|
136
|
-
sim_IntVal:
|
|
137
|
-
desc: Simulation tag
|
|
138
|
-
type: int
|
|
139
|
-
sim_FloatSet:
|
|
140
|
-
desc: Simulation tag
|
|
141
|
-
type: float
|
|
142
|
-
sim_FloatVal:
|
|
143
|
-
desc: Simulation tag
|
|
144
|
-
type: float
|
|
145
|
-
sim_MultiSet:
|
|
146
|
-
desc: Simulation tag
|
|
147
|
-
type: int
|
|
148
|
-
sim_MultiVal:
|
|
149
|
-
desc: Simulation tag
|
|
150
|
-
type: int
|
|
151
|
-
sim_TimeSet:
|
|
152
|
-
desc: Simulation tag
|
|
153
|
-
type: int
|
|
154
|
-
sim_TimeVal:
|
|
155
|
-
desc: Simulation tag
|
|
156
|
-
type: int
|
|
157
|
-
sim_DateSet:
|
|
158
|
-
desc: Simulation tag
|
|
159
|
-
type: int
|
|
160
|
-
sim_DateVal:
|
|
161
|
-
desc: Simulation tag
|
|
162
|
-
type: int
|
|
163
|
-
sim_DateTimeSet:
|
|
164
|
-
desc: Simulation tag
|
|
165
|
-
type: int
|
|
166
|
-
sim_DateTimeVal:
|
|
167
|
-
desc: Simulation tag
|
|
168
|
-
type: int
|
|
169
|
-
Ani_Fin_20:
|
|
170
|
-
desc: 'Logix Fin[20]'
|
|
171
|
-
type: float
|
|
172
|
-
dp: 2
|
|
173
|
-
Ani_Fout_20:
|
|
174
|
-
desc: 'Logix Fout[20]'
|
|
175
|
-
type: float
|
|
176
|
-
dp: 2
|
|
177
|
-
Ani_Iin_20:
|
|
178
|
-
desc: 'Logix Iin[20]'
|
|
179
|
-
type: int
|
|
180
|
-
Ani_Iout_20:
|
|
181
|
-
desc: 'Logix Iout[20]'
|
|
182
|
-
type: int
|
|
183
|
-
Ani_Iout_21_0:
|
|
184
|
-
desc: 'Logix Iout[21].0'
|
|
185
|
-
multi:
|
|
186
|
-
- 'Off'
|
|
187
|
-
- 'On'
|
|
188
|
-
Ani_Iout_21_1:
|
|
189
|
-
desc: 'Logix Iout[21].1'
|
|
190
|
-
multi:
|
|
191
|
-
- 'Off'
|
|
192
|
-
- 'On'
|
|
193
|
-
Ani_Iin_21_0:
|
|
194
|
-
desc: 'Logix Iin[21].0'
|
|
195
|
-
multi:
|
|
196
|
-
- 'Off'
|
|
197
|
-
- 'On'
|
|
198
|
-
Ani_Iin_21_1:
|
|
199
|
-
desc: 'Logix Iin[21].1'
|
|
200
|
-
multi:
|
|
201
|
-
- 'Off'
|
|
202
|
-
- 'On'
|
|
203
|
-
InVar:
|
|
204
|
-
desc: InVar
|
|
205
|
-
type: float
|
|
206
|
-
OutVar:
|
|
207
|
-
desc: OutVar
|
|
208
|
-
type: float
|
|
209
|
-
Router_eth1_bytes_in:
|
|
210
|
-
desc: eth1 bytes in
|
|
211
|
-
type: int
|
|
212
|
-
Router_eth1_bytes_out:
|
|
213
|
-
desc: eth1 bytes out
|
|
214
|
-
type: int
|
|
215
|
-
Router_eth2_bytes_in:
|
|
216
|
-
desc: eth2 bytes in
|
|
217
|
-
type: int
|
|
218
|
-
Router_eth2_bytes_out:
|
|
219
|
-
desc: eth2 bytes out
|
|
220
|
-
type: int
|
|
221
|
-
Router_eth3_bytes_in:
|
|
222
|
-
desc: eth3 bytes in
|
|
223
|
-
type: int
|
|
224
|
-
Router_eth3_bytes_out:
|
|
225
|
-
desc: eth3 bytes out
|
|
226
|
-
type: int
|
|
227
|
-
Router_eth4_bytes_in:
|
|
228
|
-
desc: eth4 bytes in
|
|
229
|
-
type: int
|
|
230
|
-
Router_eth4_bytes_out:
|
|
231
|
-
desc: eth4 bytes out
|
|
232
|
-
type: int
|
|
233
|
-
Router_eth5_bytes_in:
|
|
234
|
-
desc: eth5 bytes in
|
|
235
|
-
type: int
|
|
236
|
-
Router_eth5_bytes_out:
|
|
237
|
-
desc: eth5 bytes out
|
|
238
|
-
type: int
|
|
239
|
-
Router_eth6_bytes_in:
|
|
240
|
-
desc: eth6 bytes in
|
|
241
|
-
type: int
|
|
242
|
-
Router_eth6_bytes_out:
|
|
243
|
-
desc: eth6 bytes out
|
|
244
|
-
type: int
|
|
245
|
-
Router_eth7_bytes_in:
|
|
246
|
-
desc: eth7 bytes in
|
|
247
|
-
type: int
|
|
248
|
-
Router_eth7_bytes_out:
|
|
249
|
-
desc: eth7 bytes out
|
|
250
|
-
type: int
|
|
251
|
-
Router_eth8_bytes_in:
|
|
252
|
-
desc: eth8 bytes in
|
|
253
|
-
type: int
|
|
254
|
-
Router_eth8_bytes_out:
|
|
255
|
-
desc: eth8 bytes out
|
|
256
|
-
type: int
|
|
257
112
|
localhost_ping:
|
|
258
113
|
desc: Ping time to localhost
|
|
259
114
|
type: int
|
|
@@ -261,8 +116,4 @@ localhost_ping:
|
|
|
261
116
|
google_ping:
|
|
262
117
|
desc: Ping time to google
|
|
263
118
|
type: int
|
|
264
|
-
units: ms
|
|
265
|
-
electronet_ping:
|
|
266
|
-
desc: Ping time to electronet
|
|
267
|
-
type: int
|
|
268
119
|
units: ms
|
pymscada/demo/wwwserver.yaml
CHANGED
|
@@ -2,13 +2,13 @@ bus_ip: 127.0.0.1
|
|
|
2
2
|
bus_port: 1324
|
|
3
3
|
ip: 0.0.0.0
|
|
4
4
|
port: 8324
|
|
5
|
-
get_path:
|
|
6
|
-
serve_path: __HOME__
|
|
5
|
+
get_path:
|
|
6
|
+
serve_path: __HOME__
|
|
7
7
|
pages:
|
|
8
8
|
- name: Notes
|
|
9
9
|
parent:
|
|
10
10
|
items:
|
|
11
|
-
- type:
|
|
11
|
+
- type: opnotes
|
|
12
12
|
site: [Site 1, Site 2]
|
|
13
13
|
by: [B1, B2]
|
|
14
14
|
- name: Default Main
|
|
@@ -41,206 +41,18 @@ pages:
|
|
|
41
41
|
- Four
|
|
42
42
|
- Five
|
|
43
43
|
- {tagname: FloatSelect, type: selectdict, opts: {type: float, dp: 2}}
|
|
44
|
-
- name: Trends
|
|
45
|
-
parent: Dropdown
|
|
46
|
-
items:
|
|
47
|
-
- type: uplot # Do all times in seconds, which uplot uses.
|
|
48
|
-
ms:
|
|
49
|
-
desc: Sample Trend
|
|
50
|
-
age: 172800
|
|
51
|
-
legend_pos: left
|
|
52
|
-
time_pos: left
|
|
53
|
-
time_res: m
|
|
54
|
-
axes:
|
|
55
|
-
- scale: x
|
|
56
|
-
range: [-86400, 0] # 86400 172800 1209600
|
|
57
|
-
- scale: '°C'
|
|
58
|
-
range: [0.0, 100.0]
|
|
59
|
-
dp: 1
|
|
60
|
-
- scale: '%'
|
|
61
|
-
range: [0.0, 100.0]
|
|
62
|
-
dp: 1
|
|
63
|
-
# side: 1
|
|
64
|
-
# bands: # TODO
|
|
65
|
-
# - series: [I_Transpower_Limit_Hi, I_Transpower_Limit_Lo]
|
|
66
|
-
# fill: [red, 0.2]
|
|
67
|
-
# dir: -1
|
|
68
|
-
series:
|
|
69
|
-
- tagname: cpu_load
|
|
70
|
-
label: CPU Load
|
|
71
|
-
scale: '%'
|
|
72
|
-
color: black
|
|
73
|
-
width: 1.5
|
|
74
|
-
dp: 1
|
|
75
|
-
- tagname: disk_use
|
|
76
|
-
label: Disk Use
|
|
77
|
-
scale: '%'
|
|
78
|
-
color: blue
|
|
79
|
-
width: 1
|
|
80
|
-
dp: 1
|
|
81
|
-
- tagname: cpu_temp
|
|
82
|
-
label: CPU Temp
|
|
83
|
-
scale: '°C'
|
|
84
|
-
color: red
|
|
85
|
-
width: 1
|
|
86
|
-
dp: 1
|
|
87
44
|
- name: Files
|
|
88
|
-
parent:
|
|
45
|
+
parent:
|
|
89
46
|
items:
|
|
90
47
|
- type: files
|
|
91
|
-
- name: Logix
|
|
92
|
-
items:
|
|
93
|
-
- {tagname: Ani_Fin_20, type: setpoint}
|
|
94
|
-
- {tagname: Ani_Fout_20, type: value}
|
|
95
|
-
- {tagname: Ani_Iin_20, type: setpoint}
|
|
96
|
-
- {tagname: Ani_Iout_20, type: value}
|
|
97
|
-
- {tagname: InVar, type: setpoint}
|
|
98
|
-
- {tagname: OutVar, type: value}
|
|
99
|
-
- {tagname: Ani_Iin_21_0, type: setpoint}
|
|
100
|
-
- {tagname: Ani_Iout_21_0, type: value}
|
|
101
|
-
- {tagname: Ani_Iin_21_1, type: setpoint}
|
|
102
|
-
- {tagname: Ani_Iout_21_1, type: value}
|
|
103
|
-
- name: Values
|
|
104
|
-
parent: SNMP
|
|
105
|
-
items:
|
|
106
|
-
- {tagname: Router_eth1_bytes_in, type: value}
|
|
107
|
-
- {tagname: Router_eth1_bytes_out, type: value}
|
|
108
|
-
- {tagname: Router_eth2_bytes_in, type: value}
|
|
109
|
-
- {tagname: Router_eth2_bytes_out, type: value}
|
|
110
|
-
- {tagname: Router_eth3_bytes_in, type: value}
|
|
111
|
-
- {tagname: Router_eth3_bytes_out, type: value}
|
|
112
|
-
- {tagname: Router_eth4_bytes_in, type: value}
|
|
113
|
-
- {tagname: Router_eth4_bytes_out, type: value}
|
|
114
|
-
- {tagname: Router_eth5_bytes_in, type: value}
|
|
115
|
-
- {tagname: Router_eth5_bytes_out, type: value}
|
|
116
|
-
- {tagname: Router_eth6_bytes_in, type: value}
|
|
117
|
-
- {tagname: Router_eth6_bytes_out, type: value}
|
|
118
|
-
- {tagname: Router_eth7_bytes_in, type: value}
|
|
119
|
-
- {tagname: Router_eth7_bytes_out, type: value}
|
|
120
|
-
- {tagname: Router_eth8_bytes_in, type: value}
|
|
121
|
-
- {tagname: Router_eth8_bytes_out, type: value}
|
|
122
|
-
- name: Trend
|
|
123
|
-
parent: SNMP
|
|
124
|
-
items:
|
|
125
|
-
- type: uplot # Do all times in seconds, which uplot uses.
|
|
126
|
-
ms:
|
|
127
|
-
desc: Bytes
|
|
128
|
-
age: 172800
|
|
129
|
-
legend_pos: left
|
|
130
|
-
time_pos: left
|
|
131
|
-
time_res: m
|
|
132
|
-
axes:
|
|
133
|
-
- scale: x
|
|
134
|
-
range: [-86400, 0]
|
|
135
|
-
- scale: 'bytes'
|
|
136
|
-
range: [0, 100000]
|
|
137
|
-
dp: 0
|
|
138
|
-
series:
|
|
139
|
-
- tagname: Router_eth1_bytes_in
|
|
140
|
-
label: eth1 in
|
|
141
|
-
scale: 'bytes'
|
|
142
|
-
color: violet
|
|
143
|
-
width: 1
|
|
144
|
-
dp: 0
|
|
145
|
-
- tagname: Router_eth1_bytes_out
|
|
146
|
-
label: eth1 out
|
|
147
|
-
scale: 'bytes'
|
|
148
|
-
color: violet
|
|
149
|
-
width: 0.5
|
|
150
|
-
dp: 0
|
|
151
|
-
- tagname: Router_eth2_bytes_in
|
|
152
|
-
label: eth2 in
|
|
153
|
-
scale: 'bytes'
|
|
154
|
-
color: blue
|
|
155
|
-
width: 1
|
|
156
|
-
dp: 0
|
|
157
|
-
- tagname: Router_eth2_bytes_out
|
|
158
|
-
label: eth2 out
|
|
159
|
-
scale: 'bytes'
|
|
160
|
-
color: blue
|
|
161
|
-
width: 0.5
|
|
162
|
-
dp: 0
|
|
163
|
-
- tagname: Router_eth3_bytes_in
|
|
164
|
-
label: eth3 in
|
|
165
|
-
scale: 'bytes'
|
|
166
|
-
color: green
|
|
167
|
-
width: 1
|
|
168
|
-
dp: 0
|
|
169
|
-
- tagname: Router_eth3_bytes_out
|
|
170
|
-
label: eth3 out
|
|
171
|
-
scale: 'bytes'
|
|
172
|
-
color: green
|
|
173
|
-
width: 0.5
|
|
174
|
-
dp: 0
|
|
175
|
-
- tagname: Router_eth4_bytes_in
|
|
176
|
-
label: eth4 in
|
|
177
|
-
scale: 'bytes'
|
|
178
|
-
color: gray
|
|
179
|
-
width: 1
|
|
180
|
-
dp: 0
|
|
181
|
-
- tagname: Router_eth4_bytes_out
|
|
182
|
-
label: eth4 out
|
|
183
|
-
scale: 'bytes'
|
|
184
|
-
color: gray
|
|
185
|
-
width: 0.5
|
|
186
|
-
dp: 0
|
|
187
|
-
- tagname: Router_eth5_bytes_in
|
|
188
|
-
label: eth5 in
|
|
189
|
-
scale: 'bytes'
|
|
190
|
-
color: goldenrod
|
|
191
|
-
width: 1
|
|
192
|
-
dp: 0
|
|
193
|
-
- tagname: Router_eth5_bytes_out
|
|
194
|
-
label: eth5 out
|
|
195
|
-
scale: 'bytes'
|
|
196
|
-
color: goldenrod
|
|
197
|
-
width: 0.5
|
|
198
|
-
dp: 0
|
|
199
|
-
- tagname: Router_eth6_bytes_in
|
|
200
|
-
label: eth6 in
|
|
201
|
-
scale: 'bytes'
|
|
202
|
-
color: brown
|
|
203
|
-
width: 1
|
|
204
|
-
dp: 0
|
|
205
|
-
- tagname: Router_eth6_bytes_out
|
|
206
|
-
label: eth6 out
|
|
207
|
-
scale: 'bytes'
|
|
208
|
-
color: brown
|
|
209
|
-
width: 0.5
|
|
210
|
-
dp: 0
|
|
211
|
-
- tagname: Router_eth7_bytes_in
|
|
212
|
-
label: eth7 in
|
|
213
|
-
scale: 'bytes'
|
|
214
|
-
color: orange
|
|
215
|
-
width: 1
|
|
216
|
-
dp: 0
|
|
217
|
-
- tagname: Router_eth7_bytes_out
|
|
218
|
-
label: eth7 out
|
|
219
|
-
scale: 'bytes'
|
|
220
|
-
color: orange
|
|
221
|
-
width: 0.5
|
|
222
|
-
dp: 0
|
|
223
|
-
- tagname: Router_eth8_bytes_in
|
|
224
|
-
label: eth8 in
|
|
225
|
-
scale: 'bytes'
|
|
226
|
-
color: aqua
|
|
227
|
-
width: 1
|
|
228
|
-
dp: 0
|
|
229
|
-
- tagname: Router_eth8_bytes_out
|
|
230
|
-
label: eth8 out
|
|
231
|
-
scale: 'bytes'
|
|
232
|
-
color: aqua
|
|
233
|
-
width: 0.5
|
|
234
|
-
dp: 0
|
|
235
48
|
- name: Ping Values
|
|
236
|
-
parent:
|
|
49
|
+
parent:
|
|
237
50
|
items:
|
|
238
51
|
- {desc: Default tags, type: h1}
|
|
239
52
|
- {tagname: localhost_ping, type: value}
|
|
240
53
|
- {tagname: google_ping, type: value}
|
|
241
|
-
- {tagname: electronet_ping, type: value}
|
|
242
54
|
- name: Ping Trend
|
|
243
|
-
parent:
|
|
55
|
+
parent:
|
|
244
56
|
items:
|
|
245
57
|
- type: uplot # Do all times in seconds, which uplot uses.
|
|
246
58
|
ms:
|
|
@@ -261,11 +73,6 @@ pages:
|
|
|
261
73
|
scale: mS
|
|
262
74
|
color: black
|
|
263
75
|
dp: 1
|
|
264
|
-
- tagname: electronet_ping
|
|
265
|
-
label: electronet
|
|
266
|
-
scale: mS
|
|
267
|
-
color: blue
|
|
268
|
-
dp: 1
|
|
269
76
|
- tagname: google_ping
|
|
270
77
|
label: google
|
|
271
78
|
scale: mS
|
pymscada/module_config.py
CHANGED
|
@@ -49,12 +49,14 @@ def create_module_registry():
|
|
|
49
49
|
ModuleDefinition(
|
|
50
50
|
name='files',
|
|
51
51
|
help='serve files',
|
|
52
|
-
module_class='pymscada.files:Files'
|
|
52
|
+
module_class='pymscada.files:Files',
|
|
53
|
+
tags=False
|
|
53
54
|
),
|
|
54
55
|
ModuleDefinition(
|
|
55
56
|
name='opnotes',
|
|
56
57
|
help='operator notes',
|
|
57
|
-
module_class='pymscada.opnotes:OpNotes'
|
|
58
|
+
module_class='pymscada.opnotes:OpNotes',
|
|
59
|
+
tags=False
|
|
58
60
|
),
|
|
59
61
|
ModuleDefinition(
|
|
60
62
|
name='validate',
|
|
@@ -93,37 +95,44 @@ def create_module_registry():
|
|
|
93
95
|
ModuleDefinition(
|
|
94
96
|
name='accuweatherclient',
|
|
95
97
|
help='poll weather information',
|
|
96
|
-
module_class='pymscada.iodrivers.accuweather:AccuWeatherClient'
|
|
98
|
+
module_class='pymscada.iodrivers.accuweather:AccuWeatherClient',
|
|
99
|
+
tags=False
|
|
97
100
|
),
|
|
98
101
|
ModuleDefinition(
|
|
99
102
|
name='logixclient',
|
|
100
103
|
help='poll/write to logix devices',
|
|
101
|
-
module_class='pymscada.iodrivers.logix_client:LogixClient'
|
|
104
|
+
module_class='pymscada.iodrivers.logix_client:LogixClient',
|
|
105
|
+
tags=False
|
|
102
106
|
),
|
|
103
107
|
ModuleDefinition(
|
|
104
108
|
name='modbusclient',
|
|
105
109
|
help='poll/write modbus devices',
|
|
106
|
-
module_class='pymscada.iodrivers.modbus_client:ModbusClient'
|
|
110
|
+
module_class='pymscada.iodrivers.modbus_client:ModbusClient',
|
|
111
|
+
tags=False
|
|
107
112
|
),
|
|
108
113
|
ModuleDefinition(
|
|
109
114
|
name='modbusserver',
|
|
110
115
|
help='serve modbus devices',
|
|
111
|
-
module_class='pymscada.iodrivers.modbus_server:ModbusServer'
|
|
116
|
+
module_class='pymscada.iodrivers.modbus_server:ModbusServer',
|
|
117
|
+
tags=False
|
|
112
118
|
),
|
|
113
119
|
ModuleDefinition(
|
|
114
120
|
name='openweatherclient',
|
|
115
121
|
help='poll OpenWeather current and forecast data',
|
|
116
|
-
module_class='pymscada.iodrivers.openweather:OpenWeatherClient'
|
|
122
|
+
module_class='pymscada.iodrivers.openweather:OpenWeatherClient',
|
|
123
|
+
tags=False
|
|
117
124
|
),
|
|
118
125
|
ModuleDefinition(
|
|
119
126
|
name='pingclient',
|
|
120
127
|
help='ping network devices',
|
|
121
|
-
module_class='pymscada.iodrivers.ping_client:PingClient'
|
|
128
|
+
module_class='pymscada.iodrivers.ping_client:PingClient',
|
|
129
|
+
tags=False
|
|
122
130
|
),
|
|
123
131
|
ModuleDefinition(
|
|
124
132
|
name='snmpclient',
|
|
125
133
|
help='poll SNMP devices',
|
|
126
|
-
module_class='pymscada.iodrivers.snmp_client:SnmpClient'
|
|
134
|
+
module_class='pymscada.iodrivers.snmp_client:SnmpClient',
|
|
135
|
+
tags=False
|
|
127
136
|
),
|
|
128
137
|
ModuleDefinition(
|
|
129
138
|
name='console',
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
pymscada-0.1.
|
|
2
|
-
pymscada-0.1.
|
|
3
|
-
pymscada-0.1.
|
|
4
|
-
pymscada-0.1.
|
|
1
|
+
pymscada-0.1.11b4.dist-info/METADATA,sha256=Y7RfEZ5OrXbn4eRxM6sxyDyXjJ2JZEXiVIblk4ZYfLg,2349
|
|
2
|
+
pymscada-0.1.11b4.dist-info/WHEEL,sha256=thaaA2w1JzcGC48WYufAs8nrYZjJm8LqNfnXFOFyCC4,90
|
|
3
|
+
pymscada-0.1.11b4.dist-info/entry_points.txt,sha256=j_UgZmqFhNquuFC2M8g5-8X9FCpp2RaDb7NrExzkj1c,72
|
|
4
|
+
pymscada-0.1.11b4.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
5
5
|
pymscada/__init__.py,sha256=NV_cIIwe66Ugp8ns426rtfJIIyskWbqwImD9p_5p0bQ,739
|
|
6
6
|
pymscada/__main__.py,sha256=WcyVlrYOoDdktJhOoyubTOycMwpayksFdxwelRU5xpQ,272
|
|
7
7
|
pymscada/bus_client.py,sha256=ZUCynJtEvmHruzLS6ZAzp-_0dv1A1u_POgemb38kHuc,8989
|
|
8
8
|
pymscada/bus_server.py,sha256=8F1beP4NRCBpGJQ0u9NZI1mP6P29HSl6mm9GoGMTCJA,11795
|
|
9
|
-
pymscada/checkout.py,sha256=
|
|
9
|
+
pymscada/checkout.py,sha256=1Al29nVqCebupYvMgcY5boz772PtsVp1MVbYaQajV5Q,3373
|
|
10
10
|
pymscada/config.py,sha256=vwGxieaJBYXiHNQEOYVDFaPuGmnUlCnbNm_W9bugKlc,1851
|
|
11
11
|
pymscada/console.py,sha256=b4gm7cuhYKGFNtHoxygWkrqiN42mU8DM4KUi-Q74M4U,8793
|
|
12
12
|
pymscada/demo/README.md,sha256=iNcVbCTkq-d4agLV-979lNRaqf_hbJCn3OFzY-6qfU8,880
|
|
13
13
|
pymscada/demo/__init__.py,sha256=WsDDgkWnZBJbt2-cJCdc2NvRAv_T4a7WOC1Q0k_l0gI,29
|
|
14
14
|
pymscada/demo/accuweather.yaml,sha256=rJIiBTUHfaxuYqLLuyKtAe5dqXVdQyEeHJgIy7z-qXo,322
|
|
15
15
|
pymscada/demo/bus.yaml,sha256=zde5JDo2Yv5s7NvJ569gAEoTDvsvgBwRPxfrYhsxj3w,26
|
|
16
|
-
pymscada/demo/files.yaml,sha256=
|
|
16
|
+
pymscada/demo/files.yaml,sha256=XWtmGDJxtD4qdl2h7miUfJYkDKsvwNTgQjlGpR6LQNs,163
|
|
17
17
|
pymscada/demo/history.yaml,sha256=c0OuYe8LbTeZqJGU2WKGgTEkOA0IYAjO3e046ddQB8E,55
|
|
18
18
|
pymscada/demo/logixclient.yaml,sha256=G_NlJhBYwT1a9ceHDgO6fCNKFmBM2pVO_t9Xa1NqlRY,912
|
|
19
19
|
pymscada/demo/modbus_plc.py,sha256=3zZHHbyrdxyryEHBeNIw-fpcDGcS1MaJiqEwQDr6zWI,2397
|
|
20
20
|
pymscada/demo/modbusclient.yaml,sha256=geeCsUJZkkEj7jjXR_Yk6R5zA5Ta9IczrHsARz7ZgXY,1099
|
|
21
21
|
pymscada/demo/modbusserver.yaml,sha256=67_mED6jXgtnzlDIky9Cg4j-nXur06iz9ve3JUwSyG8,1133
|
|
22
22
|
pymscada/demo/openweather.yaml,sha256=NQ2HL_RlTQ8amYuNQhk09bC7w_rTmIeQ1RsxX1LLtKU,430
|
|
23
|
-
pymscada/demo/opnotes.yaml,sha256=
|
|
24
|
-
pymscada/demo/ping.yaml,sha256=
|
|
23
|
+
pymscada/demo/opnotes.yaml,sha256=gdT8DKaAV4F6u9trLCPyBgf449wYaP_FF8GCbjXm9-k,105
|
|
24
|
+
pymscada/demo/ping.yaml,sha256=fm3eUdR2BwnPI_lU_V07qgmDxjSoPP6lPazYB6ZgpVg,149
|
|
25
25
|
pymscada/demo/pymscada-bus.service,sha256=F3ViriRXyMKdCY3tHa3wXAnv2Fo2_16-EScTLsYnSOA,261
|
|
26
26
|
pymscada/demo/pymscada-demo-modbus_plc.service,sha256=EtbWDwqAs4nLNLKScUiHcUWU1b6_tRBeAAVGi9q95hY,320
|
|
27
27
|
pymscada/demo/pymscada-files.service,sha256=iLOfbl4SCxAwYHT20XCGHU0BJsUVicNHjHzKS8xIdgA,326
|
|
@@ -35,8 +35,8 @@ pymscada/demo/pymscada-io-snmpclient.service,sha256=Rsm8uiwnoGx-1MkXqYgtj4UP9-r7
|
|
|
35
35
|
pymscada/demo/pymscada-opnotes.service,sha256=TlrTRgP3rzrlXT8isAGT_Wy38ScDjT1VvnlgW84XiS8,354
|
|
36
36
|
pymscada/demo/pymscada-wwwserver.service,sha256=7Qy2wsMmFEsQn-b5mgAcsrAQZgXynkv8SpHD6hLvRGc,370
|
|
37
37
|
pymscada/demo/snmpclient.yaml,sha256=z8iACrFvMftYUtqGrRjPZYZTpn7aOXI-Kp675NAM8cU,2013
|
|
38
|
-
pymscada/demo/tags.yaml,sha256=
|
|
39
|
-
pymscada/demo/wwwserver.yaml,sha256=
|
|
38
|
+
pymscada/demo/tags.yaml,sha256=k7xe4V3_W5DhActB0Qfxb8sFlkxughamOC-bU-YKk4U,1831
|
|
39
|
+
pymscada/demo/wwwserver.yaml,sha256=_wJAP2xu-tMN3YqAA_I7Q7Rkiivd4dCnx5L9tquRULs,1787
|
|
40
40
|
pymscada/files.py,sha256=MisnKoWvkffPMSj6sGVmm-4fh866x4UX3t9LJg4oCfk,2400
|
|
41
41
|
pymscada/history.py,sha256=G079gHfzasmGtI5ANS8MdETD4bdZg5vHE_yTKk7atHw,9504
|
|
42
42
|
pymscada/iodrivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -53,7 +53,7 @@ pymscada/iodrivers/snmp_client.py,sha256=66-IDzddeKcSnqOzNXIZ8wuuAqhIxZjyLNrDwDv
|
|
|
53
53
|
pymscada/iodrivers/snmp_map.py,sha256=sDdIR5ZPAETpozDfBt_XQiZ-f4t99UCPlzj7BxFxQyM,2369
|
|
54
54
|
pymscada/main.py,sha256=XtASmPZoQMuzDCHlH3P9XwgYskeLtNdl-hc1tDI7ljc,1875
|
|
55
55
|
pymscada/misc.py,sha256=0Cj6OFhQonyhyk9x0BG5MiS-6EPk_w6zvavt8o_Hlf0,622
|
|
56
|
-
pymscada/module_config.py,sha256=
|
|
56
|
+
pymscada/module_config.py,sha256=kXRvPm0tjM5xS7ak2CgIDBOjiO5-R8GZdRzUIIdz6Ls,7836
|
|
57
57
|
pymscada/opnotes.py,sha256=pxjFgy4uMnAmJcfrk8BX4Gl5j0z4fFb5waXcqI6UJ_M,5133
|
|
58
58
|
pymscada/pdf/__init__.py,sha256=WsDDgkWnZBJbt2-cJCdc2NvRAv_T4a7WOC1Q0k_l0gI,29
|
|
59
59
|
pymscada/pdf/one.pdf,sha256=eoJ45DrAjVZrwmwdA_EAz1fwmT44eRnt_tkc2pmMrKY,1488
|
|
@@ -66,4 +66,4 @@ pymscada/tools/snmp_client2.py,sha256=pdn5dYyEv4q-ubA0zQ8X-3tQDYxGC7f7Xexa7QPaL4
|
|
|
66
66
|
pymscada/tools/walk.py,sha256=OgpprUbKLhEWMvJGfU1ckUt_PFEpwZVOD8HucCgzmOc,1625
|
|
67
67
|
pymscada/validate.py,sha256=fPMlP6RscYuTIgdEJjJ0ZZI0OyVSat1lpqg254wqpdE,13140
|
|
68
68
|
pymscada/www_server.py,sha256=rV1Vsk3J1wBhFMBCnK33SziNuTGgVwNc5zLjQQFxJ-s,12021
|
|
69
|
-
pymscada-0.1.
|
|
69
|
+
pymscada-0.1.11b4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|