Completed
Push — master ( 5ff98e...08e4db )
by Olivier
68:12 queued 62:14
created

opcua.wrapper()   A

Complexity

Conditions 4

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 6
Metric Value
dl 0
loc 10
ccs 4
cts 8
cp 0.5
rs 9.2
cc 4
crap 6
1
"""
2
Pure Python OPC-UA library
3
"""
4
5
#from opcua.common.create_nodes import create_folder
6
#from opcua.common.create_nodes import create_object
7
#from opcua.common.create_nodes import create_variable
8
#from opcua.common.create_nodes import create_property
9
#from opcua.common.methods import call_method
10 1
from opcua.common.node import Node
11
12 1
from opcua.common.methods import uamethod
13 1
from opcua.common.event import Event
14 1
from opcua.common.subscription import Subscription
15 1
from opcua.client.client import Client
16 1
from opcua.server.server import Server
17 1
from opcua.common.instanciate import instanciate_node
18
19
20
21