Replies: 1 comment 2 replies
-
I like the idea of ditching numpy. It's a pain to build for different architectures. I have a concern on not supporting compression. Do you know much bigger the data size would be without compression? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have been maintaining an alternative kdb-ipc layer for python for a while now,
aiokdb
at https://github.com/TeaEngineering/aiokdbIt doesn't yet have support for compression, and it has no dependency on pandas or numpy.
I recently switched to an M1 arm Mac, and building numpy for Sublime's py3.3 seemed relatively difficult, so I back-ported my kdb library to py3.3 and then ported sublime-q over to use it. The result is https://github.com/shuckc/sublime-q - you can git clone this (with submodules) into the Sublime plugin folder and it should work.
There are a couple of rough edges - code completion for instance where my API doesn't match Excelleron's that I will fix up, but it's better than nothing.
Beta Was this translation helpful? Give feedback.
All reactions