Skip to content

Commit 7b07db2

Browse files
authored
Merge branch 'master' into Beta3
2 parents e97c6f5 + 7843881 commit 7b07db2

16 files changed

Lines changed: 30 additions & 210 deletions

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# -------------------------------------------------------------------------
2+
# Copyright (c) 2020, PTC Inc. and/or all its affiliates. All rights reserved.
3+
# See License.txt in the project root for
4+
# license information.
5+
# --------------------------------------------------------------------------
6+
17
# Custom
28
#*.gitignore
39
*.pem
@@ -6,7 +12,6 @@ _notes
612
_new*
713
_test*
814
_build*
9-
1015
# Byte-compiled / optimized / DLL files
1116
__pycache__/
1217
*.py[cod]

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,10 @@ result = tag.add_tag(server, tag_path, tag_info))
111111

112112
```
113113

114-
## Need help
114+
## Need More Information
115115

116116
**Visit:**
117+
117118
[Kepware.com](https://www.kepware.com/)
118119
[Configuration API Info](https://www.kepware.com/en-us/products/kepserverex/features/configuration-api/)
119120
[PTC.com](https://www.ptc.com/)
18.8 KB
Binary file not shown.

dist/kepconfig-1.0b2.1.tar.gz

13.7 KB
Binary file not shown.

kepconfig/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
89
from . import connection, error
910

kepconfig/connection.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# --------------------------------------------------------------------------
66

77

8+
89
r""":mod:`connection` exposes an API that manages the RESTful requests
910
for the Kepware Configuration API.
1011
"""

kepconfig/connectivity/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
89
from . import channel, device, tag

kepconfig/connectivity/channel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
r""":mod:`channel` exposes an API to allow modifications (add, delete, modify) to
89
channel objects within the Kepware Configuration API
910
"""

kepconfig/connectivity/device.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
r""":mod:`device` exposes an API to allow modifications (add, delete, modify) to
89
device objects within the Kepware Configuration API
910
"""

kepconfig/connectivity/tag.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
r""":mod:`tag` exposes an API to allow modifications (add, delete, modify) to
89
tag and tag group objects within the Kepware Configuration API
910
"""

0 commit comments

Comments
 (0)