Commit fe51e1b1 authored by oroulet's avatar oroulet

update README

parent ef00e559
......@@ -8,13 +8,9 @@ http://freeopcua.github.io/, https://github.com/FreeOpcUa/opcua-asyncio
# opcua-asyncio
This repository is a fork of [python-opcua](https://github.com/FreeOpcUa/python-opcua) to rebase it completely on asyncio and drop support for Python < 3.7.
This library has also [sync wrapper](https://github.com/FreeOpcUa/opcua-asyncio/blob/master/asyncua/sync.py) over async API which may completely replace python-opcua in the future.
## Motivation
opcua-asyncio is an asyncio-based asynchronous OPC UA client based on python-opcua, removing hacks for support of python < 3.7.
opcua-asyncio is an asyncio-based asynchronous OPC UA client and server based on python-opcua, removing support of python < 3.7.
Asynchronous programming allows for simpler code (e.g. less need for locks) and potentially performance gains.
This library has also [sync wrapper](https://github.com/FreeOpcUa/opcua-asyncio/blob/master/asyncua/sync.py) over async API which may can be used in sync code instead of python-opcua
---
......@@ -171,7 +167,7 @@ cache-file which leads to significantly better startup performance (~3.5 vs 125
# Development
Code follows PEP8 apart for line lengths which should be max 120 characters and OPC UA structures that keep camel case
Code follows PEP8 apart for line lengths which should be max 160 characters and OPC UA structures that keep camel case
from XML definition.
All protocol code is under opcua directory
......
......@@ -30,11 +30,11 @@ def release():
if ans in ("", "y", "yes"):
os.system("git push")
os.system("git push --tags")
ans = input("upload to pip?(Y/n)")
if ans in ("", "y", "yes"):
os.system("rm -rf dist/*")
os.system("python3 setup.py sdist")
os.system("twine upload dist/*")
#ans = input("upload to pip?(Y/n)")
#if ans in ("", "y", "yes"):
#os.system("rm -rf dist/*")
#os.system("python3 setup.py sdist")
#os.system("twine upload dist/*")
if __name__ == "__main__":
......
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