Is there a simple way to use Python libraries from Common Lisp?

前端 未结 5 2634
闹比i
闹比i 2021-02-20 03:35

One thing I really miss when writing Common Lisp code is access to Python libraries, both standard library and third party modules. CLPython provides a limited subset of Python

5条回答
  •  甜味超标
    2021-02-20 03:55

    I would suggest writing an "exposer" interface for your code that takes text and writes text such that you can call it on the command line. Ideally, with a typical STDIN | STDOUT approach.

    I believe that is typically the best approach for non-performance applications.

提交回复
热议问题