You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ Installation of PyKX via pip provides users with access to the library with limi
61
61
62
62
The following steps outline the process by which a user can gain access to an install a kdb Insights license which provides access to PyKX
63
63
64
-
1. Visit https://kx.com/kdb-insights-personal-edition-license-download/ and fill in the attached form following the instructions provided.
64
+
1. Visit https://kx.com/kdb-insights-sdk-personal-edition-download/ and fill in the attached form following the instructions provided.
65
65
2. On receipt of an email from KX providing access to your license download this file and save to a secure location on your computer.
66
66
3. Set an environment variable on your computer pointing to the folder containing the license file (instructions for setting environment variables on PyKX supported operating systems can be found [here](https://chlee.co/how-to-setup-environment-variables-for-windows-mac-and-linux/).
67
67
* Variable Name: `QLIC`
@@ -94,10 +94,10 @@ KX only officially supports versions of PyKX built by KX, i.e. versions of PyKX
94
94
PyKX depends on the following third-party Python packages:
Copy file name to clipboardExpand all lines: custom_theme/partials/header.html.tpl
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,17 @@
1
1
{#-
2
2
This file was automatically generated - do not edit
3
3
-#}
4
+
<!-- Announcement begins-->
5
+
{% block announce %}
6
+
<div class="md-grid">
7
+
<h2>New Documentation Site!</h2>
8
+
<p style="font-size: 14px;">
9
+
We are excited to announce the launch of our enhanced product documentation site for <a href="https://docs.kx.com/3.1/PyKX/home.htm" style="color: var(--md-typeset-a-color);">PyKX</a> at <a href="https://docs.kx.com/home/index.htm" style="color: var(--md-typeset-a-color);">docs.kx.com</a>.
10
+
It offers improved search capabilities, organized navigation, and developer-focused content. Please, take a moment to explore the site and share your feedback with us.
Copy file name to clipboardExpand all lines: docs/examples/interface-overview.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -574,7 +574,7 @@
574
574
"source": [
575
575
"### 3.5 Query external processes via IPC\n",
576
576
"\n",
577
-
"One of the most common usage patterns in organizations with access to data in kdb+/q is to query data from an external server process infrastructure. For the example below you need to [install q](https://kx.com/kdb-insights-personal-edition-license-download/).\n",
577
+
"One of the most common usage patterns in organizations with access to data in kdb+/q is to query data from an external server process infrastructure. For the example below you need to [install q](https://kx.com/kdb-insights-sdk-personal-edition-download/).\n",
578
578
"\n",
579
579
"First, set up a q/kdb+ server. Set it on port 5050 and populate it with some data in the form of a table `tab`:"
Copy file name to clipboardExpand all lines: docs/getting-started/installing.md
+26-6Lines changed: 26 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,7 +141,7 @@ Follow the steps below to install a kdb Insights license for PyKX from Python:
141
141
=== "Personal license"
142
142
143
143
```bash
144
-
To apply for a PyKX license, navigate to https://kx.com/kdb-insights-personal-edition-license-download
144
+
To apply for a PyKX license, navigate to https://kx.com/kdb-insights-sdk-personal-edition-download
145
145
Shortly after you submit your license application, you will receive a welcome email containing your license information.
146
146
Would you like to open this page? [Y/n]:
147
147
```
@@ -208,7 +208,7 @@ For environment-specific flexibility, there are two ways to install your license
208
208
209
209
=== "Using a file"
210
210
211
-
1. For personal usage, navigate to the [personal license](https://kx.com/kdb-insights-personal-edition-license-download/) and complete the form. For commercial usage, contact your KX sales representative or sales@kx.com or apply through https://kx.com/book-demo.
211
+
1. For personal usage, navigate to the [personal license](https://kx.com/kdb-insights-sdk-personal-edition-download/) and complete the form. For commercial usage, contact your KX sales representative or sales@kx.com or apply through https://kx.com/book-demo.
212
212
213
213
2. On receipt of an email from KX, download and save the license file to a secure location on your computer.
214
214
@@ -218,7 +218,7 @@ For environment-specific flexibility, there are two ways to install your license
218
218
219
219
=== "Using text"
220
220
221
-
1. For personal usage, navigate to the [personal license](https://kx.com/kdb-insights-personal-edition-license-download/) and complete the form. For commercial usage, contact your KX sales representative or sales@kx.com or apply through https://kx.com/book-demo.
221
+
1. For personal usage, navigate to the [personal license](https://kx.com/kdb-insights-sdk-personal-edition-download/) and complete the form. For commercial usage, contact your KX sales representative or sales@kx.com or apply through https://kx.com/book-demo.
222
222
223
223
2. On receipt of an email from KX, copy the `#!bash base64` encoded contents of your license provided in plain-text within the email.
224
224
@@ -267,10 +267,10 @@ This command should display the installed version of PyKX.
267
267
PyKX depends on the following third-party Python packages:
268
268
269
269
- `pandas>=1.2, <2.0; python_version=='3.8'`
270
-
- `pandas>=1.2, <=2.2.3; python_version>'3.8'`
270
+
- `pandas>=1.2, <=2.3.0; python_version>'3.8'`
271
271
- `numpy~=1.22; python_version<'3.11'`
272
-
- `numpy~=1.23; python_version=='3.11'`
273
-
- `numpy~=1.26; python_version>='3.12'`
272
+
- `numpy~=1.23, <2.3.0; python_version=='3.11'`
273
+
- `numpy~=1.26, <2.3.0; python_version>='3.12'`
274
274
- `pytz>=2022.1`
275
275
- `toml~=0.10.2`
276
276
- `dill>=0.2.0`
@@ -322,6 +322,26 @@ This command should display the installed version of PyKX.
322
322
- Use Stack Overflow and tag [`pykx`](https://stackoverflow.com/questions/tagged/pykx) or [`kdb`](https://stackoverflow.com/questions/tagged/kdb) depending on the subject.
| Windows | Unlicensed | e.dll/e.lib | 2024.08.21 |
344
+
325
345
## Optional: Installing a q executable
326
346
327
347
The following section is optional and primarily required if you are looking to make use of the [Real-Time Capture](../user-guide/advanced/streaming/index.md) functionality provided by PyKX.
Copy file name to clipboardExpand all lines: docs/help/troubleshooting.md
+46-24Lines changed: 46 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ The following section outlines practical information useful when dealing with ge
8
8
9
9
A number of trial and enterprise type licenses exist for q/kdb+. Not all licenses for q/kdb+ however are valid for PyKX. In particular users require access to a license which contains the feature flags **pykx** and **embedq** which provide access to the PyKX functionality. The following locations can be used for the retrieval of evaluation/personal licenses
10
10
11
-
- For non-commercial personal users you can access a 12 month kdb+ license with PyKX enabled [here](https://kx.com/kdb-insights-personal-edition-license-download).
11
+
- For non-commercial personal users you can access a 12 month kdb+ license with PyKX enabled [here](https://kx.com/kdb-insights-sdk-personal-edition-download).
12
12
- For commercial evaluation, contact your KX sales representative or sales@kx.com requesting a PyKX trial license. Alternately apply through https://kx.com/book-demo.
13
13
14
14
For non-personal or non-commercial usage please contact sales@kx.com.
@@ -111,26 +111,30 @@ The following section outlines how a user can get access to a verbose set of env
111
111
112
112
```python
113
113
>>> kx.util.debug_environment()
114
-
missing q binary at '/usr/local/anaconda3/lib/python3.8/site-packages/pykx/lib/m64/q'
0 commit comments