Recommendations for perl-to-python interoperation?

前端 未结 7 1794
甜味超标
甜味超标 2021-01-25 19:53

We have a sizable code base in Perl. For the forseeable future, our codebase will remain in Perl. However, we\'re looking into adding a GUI-based dashboard utility. We are consi

7条回答
  •  再見小時候
    2021-01-25 20:33

    I'd avoid inter-language calls if possible; fragility and massive increases in dependencies await you down this road. However, there is...

    Inline::Python

    If python must be used, the Inline::* series of modules have been generally well received. This lets you write python inside a perl script. You still have to write perl but it would let you use python libraries inside perl scripts. It will make things more difficult to debug, though.

提交回复
热议问题