How can I create a language independent library using Python?

后端 未结 7 1756
夕颜
夕颜 2021-01-11 10:51

If I create a package in Python, then another Python user can import that package and interface with it.

How can I create a package so that it doesn\'t matter what l

相关标签:
7条回答
  • 2021-01-11 11:28

    In a similar spirit as what Nurzhan mentions above regarding CORBA, you could use OPC UA: https://en.m.wikipedia.org/wiki/OPC_Unified_Architecture

    It is an architecture oriented to device control via server to client communication but may suit your needs. In my work we have used licensed C/C++ (Unified automation and Java sdks (prosys), explored Python options and also embedded solutions from PLCs and the inter-plarform communication works well.

    There are several open source projects for OPC UA in Python in the web, e.g. freeopcua.

    0 讨论(0)
提交回复
热议问题