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.
一段时间以来,众所周知 Cython 是提高蟒蛇速度的好方法。此外,很少有高效的库使用 Cython 来做到这一点。
其中之一称为“uvloop”。但是,当我查看他们的源代码时,我发现其中大部分都使用了“cdef”关键字——我认为这意味着您无法从纯 python 代码访问代码。
我几乎可以肯定'uvloop'可以从纯python代码访问,那么发生了什么?是否可以构建一个可供 python 客户端访问的库,甚至值得吗?
谢谢。