Commit d86027a8 authored by Olivier R-D's avatar Olivier R-D

move add_{nodetype} out of Node

parent b2ee9084
The Node Object High level functions and Node object
========================================= =========================================
.. autoclass:: opcua.node.Node .. automodule:: opcua.node
:member-order: bysource
:members: :members:
:undoc-members: :undoc-members:
...@@ -5,6 +5,12 @@ Pure Python OPC-UA library ...@@ -5,6 +5,12 @@ Pure Python OPC-UA library
from opcua.binary_client import BinaryClient from opcua.binary_client import BinaryClient
import opcua.uaprotocol as ua import opcua.uaprotocol as ua
from opcua.node import Node from opcua.node import Node
from opcua.node import create_object
from opcua.node import create_folder
from opcua.node import create_variable
from opcua.node import create_property
from opcua.node import create_method
from opcua.node import call_method
from opcua.attribute_ids import AttributeIds from opcua.attribute_ids import AttributeIds
from opcua.object_ids import ObjectIds from opcua.object_ids import ObjectIds
from opcua.event import Event from opcua.event import Event
......
This diff is collapsed.
...@@ -3,7 +3,7 @@ from distutils.command.install_data import install_data ...@@ -3,7 +3,7 @@ from distutils.command.install_data import install_data
setup (name = "freeopcua", setup (name = "freeopcua",
version = "0.9.1", version = "0.9.2",
description = "Pure Python OPC-UA client and server library", description = "Pure Python OPC-UA client and server library",
author = "Olivier Roulet-Dubonnet", author = "Olivier Roulet-Dubonnet",
author_email = "olivier.roulet@gmail.com", author_email = "olivier.roulet@gmail.com",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment