ksql-python icon indicating copy to clipboard operation
ksql-python copied to clipboard

A python wrapper for the KSQL REST API.

Results 24 ksql-python issues
Sort by recently updated
recently updated
newest added

Change http connection dependency Add httpx in requirements.txt Change api.py

Because the Travis CI is no more free for open source, we have to migrate the project to the Circle CI

enhancement
WIP

i'm receiving the following error after inserting into a stream using ```python client.ksql("INSERT INTO riderLocations (profileId, latitude, longitude) VALUES ('4ab5cbad', 37.3952, -122.0813);")` ``` Traceback (most recent call last): File "",...

bug

It would be nice to get the code coverage to 100%. Then the report would immediately jump out at you whenever a line of code is missed during any newly...

help wanted
WIP

when i use 'use_http2=True' parameter in the query function, the data is retrieved and when the kafka stream stops sending data for more than 5 secs the python code throws...

bug

When I make a ksql query using the `ksql-cli` and `curl`, It works fine. Making the same query using this library doesn't work. After investigating the issue, it looks like...

bug

There's a bugfix on the master branch that's not currently available when you download this from pypi: namely a `try...except StopIteration` block was added in the `process_query_results` function in `ksql.utils`...

question

I'm trying to read from ksql in python with this script: ``` from ksql import KSQLAPI client = KSQLAPI('http://0.0.0.0:8088',) columns = ['id INT','name VARCHAR'] client.create_stream(table_name='students', columns_type= columns, topic='students') query =...

bug

``` Traceback (most recent call last): File "/app/consumer.py", line 17, in import ksql File "/usr/local/lib/python3.10/site-packages/ksql/__init__.py", line 6, in from ksql.client import KSQLAPI # noqa File "/usr/local/lib/python3.10/site-packages/ksql/client.py", line 4, in from...

WIP

This is my first issue, so sorry if i missed something. I have encountered an issue when reading data from a stream using a PULL Query (im new to KSQL...