mirror of
https://github.com/FreeOpcUa/opcua-asyncio
synced 2025-10-29 17:07:18 +08:00
12 lines
210 B
Python
Executable File
12 lines
210 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import os
|
|
sys.path.append(os.path.join(os.path.dirname(os.path.realpath(__file__)), ".."))
|
|
|
|
from asyncua.tools import uadiscover
|
|
|
|
|
|
if __name__ == "__main__":
|
|
uadiscover()
|