We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 384a362 commit c87100cCopy full SHA for c87100c
1 file changed
README.md
@@ -1,5 +1,9 @@
1
# BoilingData Client for Python
2
3
+```shell
4
+pip install git+https://github.com/boilingdata/py-boilingdata
5
+```
6
+
7
A python client for sending SQL queries and receive results from BoilingData WebSockets API.
8
9
- This package uses `asyncio` and `threads` to make the `websocket.WebSocketApp()` run on the background.
@@ -31,12 +35,13 @@ loop = asyncio.get_event_loop()
31
35
loop.run_until_complete(main())
32
36
```
33
37
34
-## Build and Install
38
+## Development
39
40
```shell
41
make install
42
make build
-# make lint
-# make test
43
+make lint
44
+make test
45
+make run
46
pip install dist/py_boilingdata-*-py3-none-any.whl
47
0 commit comments