Skip to content

Commit 8abf968

Browse files
committed
initial commit
0 parents  commit 8abf968

8 files changed

Lines changed: 651 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/
2+
**/__pycache__
3+
.pytest_cache/

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
install:
2+
poetry install
3+
4+
test:
5+
echo "Using BD_USERNAME: $BD_USERNAME"
6+
DEBUG=true poetry run pytest -rP
7+
8+
format:
9+
poetry run black py_boilingdata/*.py tests/*.py
10+
11+
lint: format
12+
poetry run pylint py_boilingdata/*.py
13+
14+
build:
15+
poetry build

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# BoilingData WebSocket Client for Python
2+
3+
Simple client to send SQL queries and receive results from BoilingData WebSockets API.
4+
5+
For example usage, please see [tests/test_connection.py](tests/test_connection.py).
6+
7+
```shell
8+
make install
9+
make build
10+
# make lint
11+
# make test
12+
pip install dist/py_boilingdata-*-py3-none-any.whl
13+
```

0 commit comments

Comments
 (0)