Skip to content

Commit ad66523

Browse files
committed
cleanup.
1 parent 4680c6d commit ad66523

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ public class MyConnectionHandler implements JKConnectionHandler {
196196
System.out.println("open: " + async);
197197
}
198198
}
199-
200199
```
201200
Connection handlers can be associated with a jKool query connection handle `JKQueryAsync` as follows:
202201
```java
@@ -259,7 +258,6 @@ file:
259258
```sh
260259
unix: java java -cp ./*:./lib/* com.jkoolcloud.client.api.utils.JKQLCmd -file cmd.properties -query "get number of events for today"
261260
win : java java -cp ./*;./lib/* com.jkoolcloud.client.api.utils.JKQLCmd -file cmd.properties -query "get number of events for today"
262-
263261
```
264262
Below is a sample property file containing `JKQLCmd` command line arguments (`token` should have your jKool API access token):
265263
```properties
@@ -282,7 +280,7 @@ curl -i -H "Content-Type:application/json" -H "token:YOURTOKEN" -X POST https://
282280

283281
### Streaming with Python
284282
Data can also be streamed natively (without helper classes) into jKool using Python. To do so, you will need to use the Python "Request".
285-
Details on the Python Request can be found here - http://docs.python-requests.org/en/latest/user/quickstart/. Below is an example of using
283+
Details on the Python Request can be found [here](http://docs.python-requests.org/en/latest/user/quickstart/). Below is an example of using
286284
it to stream into jKool:
287285

288286
```java

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@
88
<packaging>jar</packaging>
99

1010
<name>jkool-client-api</name>
11-
<url>http://www.jkoolcloud.com/</url>
11+
<url>https://github.com/Nastel/jkool-client-java-api</url>
1212
<description>jKool Client Query and Streaming API</description>
1313
<licenses>
1414
<license>
1515
<name>The Apache License, Version 2.0</name>
1616
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
1717
</license>
1818
</licenses>
19+
<organization>
20+
<name>jKool, LLC</name>
21+
<url>https://www.jkoolcloud.com/</url>
22+
</organization>
1923
<developers>
2024
<developer>
2125
<name>jKool Team</name>

0 commit comments

Comments
 (0)