Commit 552ba60b authored by Kevin Colyar's avatar Kevin Colyar

Adds pycrypto requirement and corrects server example in README

parent 56f45306
......@@ -103,7 +103,7 @@ if __name__ == "__main__":
Example server code:
```
from opcua import ua, Server
from opcua import ua, Server, ObjectIds
server = Server()
......
......@@ -4,7 +4,7 @@ from distutils.command.install_data import install_data
import sys
if sys.version_info[0] < 3:
install_requires = ["enum34", "trollius", "futures"]
install_requires = ["enum34", "trollius", "futures", "pycrypto"
else:
install_requires = []
......
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