ioddcomchecker 1.6.13__cp310-cp310-macosx_11_0_universal2.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 ioddcomchecker might be problematic. Click here for more details.
- ioddcomchecker-1.6.13.dist-info/LICENSE.txt +16 -0
- ioddcomchecker-1.6.13.dist-info/METADATA +147 -0
- ioddcomchecker-1.6.13.dist-info/RECORD +9 -0
- ioddcomchecker-1.6.13.dist-info/WHEEL +5 -0
- ioddcomchecker-1.6.13.dist-info/top_level.txt +1 -0
- siogeen/tools/IoddComChecker.cpython-310-darwin.so +0 -0
- siogeen/tools/__init__.py +17 -0
- siogeen/tools/cli/IoddComChecker.py +43 -0
- siogeen/tools/cli/__init__.py +17 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Copyright (c) 2017-2023 Siogeen UG (haftungsbeschraenkt) - All Rights Reserved
|
|
2
|
+
|
|
3
|
+
Unauthorized copying of this package and its contents, via any medium is
|
|
4
|
+
strictly prohibited.
|
|
5
|
+
Proprietary and confidential.
|
|
6
|
+
|
|
7
|
+
Written by Reimund Renner <reimund@siogeen.com>, November 2017
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
10
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
11
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
12
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
13
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
14
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
15
|
+
SOFTWARE.
|
|
16
|
+
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: ioddcomchecker
|
|
3
|
+
Version: 1.6.13
|
|
4
|
+
Summary: IoddCom IO-Link master checker
|
|
5
|
+
Home-page: https://siogeen.com
|
|
6
|
+
Author: Reimund Renner
|
|
7
|
+
Author-email: reimund@siogeen.com
|
|
8
|
+
License: proprietary and confidential
|
|
9
|
+
Project-URL: Documentation, https://siogeen.com/doc/
|
|
10
|
+
Project-URL: Help Desk, https://siogeen.com/helpdesk/
|
|
11
|
+
Project-URL: Knowledge Base, https://siogeen.com/helpdesk/knowledgebase
|
|
12
|
+
Project-URL: News, https://news.siogeen.com/
|
|
13
|
+
Keywords: IO-Link,IODD,development,test,production
|
|
14
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: Intended Audience :: Manufacturing
|
|
17
|
+
Classifier: Intended Audience :: Science/Research
|
|
18
|
+
Classifier: Intended Audience :: Customer Service
|
|
19
|
+
Classifier: Topic :: Software Development :: Embedded Systems
|
|
20
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
21
|
+
Classifier: Topic :: Software Development :: Testing
|
|
22
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
23
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
24
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
25
|
+
Classifier: License :: Other/Proprietary License
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
29
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
30
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
31
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
32
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
33
|
+
Requires-Python: >=3.7
|
|
34
|
+
Description-Content-Type: text/x-rst
|
|
35
|
+
License-File: LICENSE.txt
|
|
36
|
+
Requires-Dist: ioddcombase>=1.6.13
|
|
37
|
+
Requires-Dist: dict2obj
|
|
38
|
+
|
|
39
|
+
IoddComChecker - IoddCom Checker
|
|
40
|
+
================================
|
|
41
|
+
|
|
42
|
+
.. _IoddComCheckerGui: /project/IoddComCheckerGui
|
|
43
|
+
|
|
44
|
+
This is the CLI for checking your IO-Link masters working with Siogeen IoddCom.
|
|
45
|
+
|
|
46
|
+
If you want using a GUI see IoddComCheckerGui_
|
|
47
|
+
|
|
48
|
+
**Install**
|
|
49
|
+
|
|
50
|
+
Use pip to install IoddComChecker:
|
|
51
|
+
|
|
52
|
+
>>> pip install IoddComChecker
|
|
53
|
+
|
|
54
|
+
**Usage**
|
|
55
|
+
|
|
56
|
+
To start a scan execute on the console:
|
|
57
|
+
|
|
58
|
+
>>> python -m siogeen.tools.cli.IoddComChecker
|
|
59
|
+
|
|
60
|
+
**Command line options**
|
|
61
|
+
|
|
62
|
+
>>> IoddComChecker [-h] [-a ADDRESS] [--auto] [--version]
|
|
63
|
+
|
|
64
|
+
-h, --help show this help message and exit
|
|
65
|
+
-a ADDRESS, --address ADDRESS
|
|
66
|
+
specify one or more master addresses (default all)
|
|
67
|
+
--auto activate master ports if all are disabled
|
|
68
|
+
--version print version
|
|
69
|
+
|
|
70
|
+
**Example**
|
|
71
|
+
|
|
72
|
+
>>> IoddComChecker -a 10.0.0.17 -a 10.0.0.19 --auto
|
|
73
|
+
|
|
74
|
+
For full package, requests and support go to https://siogeen.com
|
|
75
|
+
|
|
76
|
+
**Copyright 2017-2024 Siogeen UG** (limited liability)
|
|
77
|
+
|
|
78
|
+
.. _request: https://siogeen.com/#contact
|
|
79
|
+
|
|
80
|
+
Supported Platforms
|
|
81
|
+
~~~~~~~~~~~~~~~~~~~
|
|
82
|
+
|
|
83
|
+
========================= ===================== ======================
|
|
84
|
+
**OS** Python 2.7, 3.4-3.6 Python 3.7 [1]_ - 3.13
|
|
85
|
+
========================= ===================== ======================
|
|
86
|
+
**Windows** [2]_ x
|
|
87
|
+
**Linux x86/x64** [2]_ x
|
|
88
|
+
**Linux Arm (Raspberry)** [2]_ x
|
|
89
|
+
**macOS** [2]_ 3.8-3.13
|
|
90
|
+
========================= ===================== ======================
|
|
91
|
+
|
|
92
|
+
.. [1] Python 3.7 is deprecated, consider upgrading to newer Python version
|
|
93
|
+
.. [2] IoddCom for Python 2.7, 3.4 - 3.6 on request_.
|
|
94
|
+
|
|
95
|
+
Support for other platforms on request_.
|
|
96
|
+
|
|
97
|
+
Supported operating systems and IO-Link masters
|
|
98
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
99
|
+
Table of supported IO-Link masters for specific operating systems (OS):
|
|
100
|
+
|
|
101
|
+
+-----------------------------------+---------------------------------------------------+
|
|
102
|
+
| Master | supported OS |
|
|
103
|
+
| +---------+----------+--------------+---------------+
|
|
104
|
+
| | Windows | Linux | Raspberry Pi | macOS 64 [3]_ |
|
|
105
|
+
+===================================+=========+==========+==============+===============+
|
|
106
|
+
| TMG-USB based masters [4]_ | x | x | x | x |
|
|
107
|
+
+-----------------------------------+---------+----------+--------------+---------------+
|
|
108
|
+
| TMG ethernet based masters [5]_ | x | x | x | x |
|
|
109
|
+
+-----------------------------------+---------+----------+--------------+---------------+
|
|
110
|
+
| ifm ethernet based masters [6]_ | x | x | x | x |
|
|
111
|
+
+-----------------------------------+---------+----------+--------------+---------------+
|
|
112
|
+
| ifm USB based masters [7]_ | x | x | x | x |
|
|
113
|
+
+-----------------------------------+---------+----------+--------------+---------------+
|
|
114
|
+
| Turck Multi-Protocol masters [8]_ | x | x | x | x |
|
|
115
|
+
+-----------------------------------+---------+----------+--------------+---------------+
|
|
116
|
+
| REST API based masters [9]_ | x | x | x | x |
|
|
117
|
+
+-----------------------------------+---------+----------+--------------+---------------+
|
|
118
|
+
|
|
119
|
+
For Windows, Linux and Raspberry Pi both, 32-bit and 64-bit versions are available.
|
|
120
|
+
|
|
121
|
+
.. [3] For macOS 11.0+
|
|
122
|
+
|
|
123
|
+
.. [4] For example: Baumer, Leuze, Pepperl+Fuchs, SICK AG, Turck
|
|
124
|
+
|
|
125
|
+
.. [5] For Example: Balluff, Belden, Murrelektronik, Pepperl+Fuchs, Wenglor
|
|
126
|
+
|
|
127
|
+
.. [6] All ifm IO-Link masters AL1xxx should be supported. Functionality depends on master type
|
|
128
|
+
|
|
129
|
+
.. [7] ifm USB IO-Link master AL1060
|
|
130
|
+
|
|
131
|
+
.. [8] **New:** Turck Multi-Protocol masters (Modbus TCP, PROFINET, EtherNet/IP): TBEN-L, TBEN-S, FEN20, ...
|
|
132
|
+
Special functions missing: read/write SIO, functions not available: data storage
|
|
133
|
+
|
|
134
|
+
.. [9] REST API based masters: **Beta Support (from V1.7 on)** (Sick SIG200/SIG350, Belden Lion-X, MurrElectronik Impact67 Pro/MVK Pro, Balluff)
|
|
135
|
+
|
|
136
|
+
Not supported masters:
|
|
137
|
+
|
|
138
|
+
* RevolutionPi RevPi masters
|
|
139
|
+
* Pepperl & Fuchs comtrol masters
|
|
140
|
+
* Baumer USB-C and senscontrol masters
|
|
141
|
+
* Germbedded masters
|
|
142
|
+
* TEConcept masters
|
|
143
|
+
* iO-Fly masters
|
|
144
|
+
* iq masters **(soon)**
|
|
145
|
+
|
|
146
|
+
Support for them or other masters on request_.
|
|
147
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
siogeen/tools/IoddComChecker.cpython-310-darwin.so,sha256=cfZKAPqaLrkhoywuEzp6sC7zlOIT9cYfvmPw_hl_fEk,394840
|
|
2
|
+
siogeen/tools/__init__.py,sha256=CCpWoKGerJjGcTDaC48F6skWG4rDZuBzIKxBIZqL74w,462
|
|
3
|
+
siogeen/tools/cli/IoddComChecker.py,sha256=q42zyT8sVC7LvyJWUrlKZ0Y00VYQiA4iSDcLhWKz_UQ,1494
|
|
4
|
+
siogeen/tools/cli/__init__.py,sha256=5U7K-XTwdy1Iy5suv_-WSFGwC_zqleJ6KdZQR7kShP0,468
|
|
5
|
+
ioddcomchecker-1.6.13.dist-info/LICENSE.txt,sha256=mjUk_O3YPxAZeoS61zCys2pyShGDxR4ghwb55ItZ0lg,732
|
|
6
|
+
ioddcomchecker-1.6.13.dist-info/METADATA,sha256=Xn5Fp2jk-ctpRzdXKZVHGUUD2cKujW8OydfVmaWMpeM,6028
|
|
7
|
+
ioddcomchecker-1.6.13.dist-info/WHEEL,sha256=mHs0VDie2515BHxD2OF2NgJIeD-zcVZEsi1QZJ5PiS8,114
|
|
8
|
+
ioddcomchecker-1.6.13.dist-info/top_level.txt,sha256=vIFg0bLkihbkHyuCZUdHmA-50LP8LvTwDknGWir0T5o,8
|
|
9
|
+
ioddcomchecker-1.6.13.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
siogeen
|
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
'''
|
|
2
|
+
Siogeen IoddCom tools.
|
|
3
|
+
|
|
4
|
+
The Siogeen IoddCom is designed for various use cases for best working
|
|
5
|
+
experience with IO-Link devices, simple usage and time saving thus both saving
|
|
6
|
+
costs and offering time for the real tasks.
|
|
7
|
+
|
|
8
|
+
Created on 15.11.2022
|
|
9
|
+
'''
|
|
10
|
+
|
|
11
|
+
__author__ = "Reimund Renner"
|
|
12
|
+
__email__ = "reimund@siogeen.com"
|
|
13
|
+
__contact__ = "contact@siogeen.com"
|
|
14
|
+
__license__ = "proprietary and confidential"
|
|
15
|
+
|
|
16
|
+
# classes for: from siogeen import *
|
|
17
|
+
__all__ = ['IoddComChecker']
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
'''
|
|
3
|
+
Copyright (C) 2023 Siogeen
|
|
4
|
+
|
|
5
|
+
Created on 4.1.2023
|
|
6
|
+
|
|
7
|
+
@author: Reimund Renner
|
|
8
|
+
'''
|
|
9
|
+
|
|
10
|
+
import argparse
|
|
11
|
+
|
|
12
|
+
def getParser():
|
|
13
|
+
parser = argparse.ArgumentParser(
|
|
14
|
+
description='Check for IO-Link masters and devices',
|
|
15
|
+
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
16
|
+
epilog='''Examples:
|
|
17
|
+
python -m siogeen.tools.cli.IoddComChecker
|
|
18
|
+
python -m siogeen.tools.cli.IoddComChecker -a 10.0.0.17 -a 10.0.0.19 --auto''')
|
|
19
|
+
parser.add_argument("-a", "--address",action='append',
|
|
20
|
+
help="specify one or more master addresses (default all)")
|
|
21
|
+
parser.add_argument("--auto", action='store_true',
|
|
22
|
+
help="activate master ports if all are disabled")
|
|
23
|
+
parser.add_argument("--verbose", default=2, help="verbosity 0..3")
|
|
24
|
+
parser.add_argument("--version", action='store_true',
|
|
25
|
+
help="print version")
|
|
26
|
+
|
|
27
|
+
return parser
|
|
28
|
+
|
|
29
|
+
if __name__ == '__main__':
|
|
30
|
+
parser = getParser()
|
|
31
|
+
args = parser.parse_args()
|
|
32
|
+
#args = parser.parse_args(['--auto'])
|
|
33
|
+
#args = parser.parse_args(['-a', '/dev/ttyUSB0'])
|
|
34
|
+
#args = parser.parse_args(['-a', '192.168.178.77'])
|
|
35
|
+
#args = parser.parse_args(['-a', '192.168.178.77', '-a', '192.168.178.73'])
|
|
36
|
+
#args = parser.parse_args(['-a', '192.168.178.77', '--auto'])
|
|
37
|
+
|
|
38
|
+
from siogeen.tools import IoddComChecker
|
|
39
|
+
|
|
40
|
+
if args.version:
|
|
41
|
+
print(f"IoddComChecker {IoddComChecker.__version__}")
|
|
42
|
+
else:
|
|
43
|
+
IoddComChecker.check(args.address, args.auto, verbose=args.verbose)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
'''
|
|
2
|
+
Siogeen IoddCom tools cli's.
|
|
3
|
+
|
|
4
|
+
The Siogeen IoddCom is designed for various use cases for best working
|
|
5
|
+
experience with IO-Link devices, simple usage and time saving thus both saving
|
|
6
|
+
costs and offering time for the real tasks.
|
|
7
|
+
|
|
8
|
+
Created on 09.01.2023
|
|
9
|
+
'''
|
|
10
|
+
|
|
11
|
+
__author__ = "Reimund Renner"
|
|
12
|
+
__email__ = "reimund@siogeen.com"
|
|
13
|
+
__contact__ = "contact@siogeen.com"
|
|
14
|
+
__license__ = "proprietary and confidential"
|
|
15
|
+
|
|
16
|
+
# classes for: from siogeen import *
|
|
17
|
+
__all__ = ['IoddComChecker']
|