On Tuesday, September 20, 2016 at 4:54:13 AM UTC-4, merc7791 wrote:
I used qPython instead.
qPython is a fine library and may suit your needs. Note, however, that PyQ and qPython take two fundamentally different approaches to working with kdb+ data in Python. qPython is a traditional database communications library that lets you connect to a kdb+ instance, get the serialized data over an IPC connection, convert it to Python objects that can be manipulated in Python, serialized and sent back to kdb+ for storage. PyQ is different. Instead of bringing kdb+ data to Python it brings Python to kdb+. This eliminates IPC, serialization and copying overhead and may increase the performance of some applications 10-100 times. See <https://pyq.enlnt.com/slides\> for more details.