What is PyKX?

This page briefly describes PyKX, its use cases, and its connection with q/kdb+.

Introduction

PyKX is a Python-first interface to kdb+ (the world's fastest time-series database) and q (kdb+'s underlying vector programming language). PyKX is the result of 10+ years of integrations between two languages: Python and q. Its aim is to help users query and analyze huge amounts of in-memory and on-disk time-series data, significantly faster than other libraries.

Use cases

PyKX supports three main use cases, allowing Python data engineers and data scientists to:

  1. Store, query, manipulate and use q objects within a Python process.
  2. Query external q processes via an Inter-Process Communication (IPC) interface.
  3. Embed Python functionality within a native q session using its under q functionality.

PyKX vs. Python/q interfaces

There are three historical interfaces which allow interoperability between Python and q/kdb+:

How does PyKX compare to other q interfaces for Python? Here’s a TL;DR comparison table highlighting the key differences between EmbedPy, PyQ, qPython, and PyKX:

Feature

EmbedPy

PyQ

qPython

PyKX

Interoperability

Python from q

Python & q in same process

Python-first, over IPC

Python-first, in-process & IPC

Execution

Designed for q developers, run in q session

Requires PyQ binary or start from q

Processing completed on q session via IPC, deserialization using Python

Run from Python session, class-based type system

Use Case

Leverage Python functionality not available in q

Operate on same data across languages

Common use case, expensive in processing & memory

Store, query, manipulate q objects within Python, via IPC or Python in q session

Flexibility

-

Locked into using PyQ binary

-

Pythonic interface, context interface for q scripts, q first mode, IPC available

Data Conversion

q to/from Numpy/Python only

q to/from Numpy/Pandas only

Data converted directly from socket

Leverages q memory space embedded within Python, supports NumPy, Pandas, PyArrow

Tip

KX maintains both embedPy and PyQ on a best-efforts basis under the Fusion initiative. qPython is in maintenance mode, not supported by KX. If you're using EmbedPy, PyQ, or qPython, we recommend switching to PyKX to pick up the latest updates from KX.

Next steps