Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不确定这是否是个好主意。这是我的要求。
我有一个默认的 less css 文件和其他从数据集生成的动态 less 文件。现在,我想将上述较少的文件编译为单个 css 文件。
因此,为此我正在考虑运行 node.js 以在后台与 celery 异步执行此操作。我知道有 python 端口可以少编译成 css,但我认为 node.js 更适合这个。
请提出建议和想法。提前致谢。
好吧,我自己使用子进程解决了这个问题。实际上,任何 Unix 命令都可以这样使用。
import subprocess p = subprocess.Popen(['lessc', '-x', '-'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) output = p.communicate(less_content)