我试图通过qpython查询一个特定的函数。该函数期望一个有几个参数的字典,第一个参数是一个日期(类型-14),第二个参数是一个分钟列表(类型17)。
我写了这个小例子,希望能忠实地说明这个问题。
\d .test
testfun:{[args]
one:args[`one];
two:args[`two];
' string type args[`two];
now when I query through qpython:
from qpython import qconnection
from qpython.qcollection import QDictionary, qlist
import numpy as np
from qpython.qtype import QLONG_LIST, QSYMBOL_LIST, QMINUTE_LIST
query='{[arg_dict] :.test.testfun[arg_dict] }'
kdbconfig = {
'q_host': 'q_host',
'q_port': 42,
'q_usr': 'q_usr',
'q_pwd': 'q_pwd'
params = {
"one" : np.datetime64('2021-01-06', 'D'),
"two" : qlist([ np.timedelta64(10*60, 'm'), np.timedelta64(10*60+30, 'm')] , qtype = QMINUTE_LIST)
qparams = QDictionary(list(params.keys()), list(params.values()))
with qconnection.QConnection(host=kdbconfig['q_host'],
port=kdbconfig['q_port'],
username=kdbconfig['q_usr'],
password=kdbconfig['q_pwd'] ) as q:
data = q.sendSync(query, qparams, pandas = True)
if data is None:
raise ValueError("didnt return any data")
but I get QException: b'-14'
while I would expect type 17
qparams.values
是值得的。[numpy.datetime64('2021-01-06'), QList([420, 450], dtype='timedelta64[m]')]
所以在我看来是合理的。
有谁知道如何使其运作?