Skip to content

Commit 4779b06

Browse files
committed
Release 0.2.0
1 parent f1250f3 commit 4779b06

3 files changed

Lines changed: 5 additions & 65 deletions

File tree

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,18 @@ If you use [Poetry](https://python-poetry.org) in your project, add the
1010
dependency with `poetry add`:
1111

1212
```
13-
$ poetry add wherobots-python-dbapi-driver
13+
$ poetry add git+https://github.com/wherobots/wherobots-python-dbapi-driver
1414
```
1515

1616
Otherwise, just `pip install` it:
1717

1818
```
19-
$ pip install wherobots-python-dbapi-driver
19+
$ pip install git+https://github.com/wherobots/wherobots-python-dbapi-driver
2020
```
2121

2222
## Usage
2323

2424
```python
25-
import tabulate
26-
2725
from wherobots.db import connect
2826
from wherobots.db.region import Region
2927
from wherobots.db.runtime import Runtime
@@ -35,5 +33,5 @@ with connect(
3533
curr = conn.cursor()
3634
curr.execute("SHOW SCHEMAS IN wherobots_open_data")
3735
results = curr.fetchall()
38-
print(tabulate.tabulate(results, headers="keys", tablefmt="pretty"))
36+
print(results)
3937
```

poetry.lock

Lines changed: 1 addition & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wherobots-python-dbapi"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Python DB-API driver for Wherobots DB"
55
authors = ["Maxime Petazzoni <max@wherobots.com>"]
66
license = "Apache 2.0"
@@ -26,7 +26,6 @@ pytest = "^8.0.2"
2626
black = "^24.2.0"
2727
pre-commit = "^3.6.2"
2828
conventional-pre-commit = "^3.1.0"
29-
shapely = "^2.0.3"
3029
rich = "^13.7.1"
3130

3231
[build-system]

0 commit comments

Comments
 (0)