Skip to content

Commit 260edf1

Browse files
committed
Add DBUtils example
1 parent 35b709f commit 260edf1

File tree

6 files changed

+573
-2
lines changed

6 files changed

+573
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ _build/
2121

2222
Thumbs.db
2323
.DS_Store
24+
demo.db
2425

2526
Cache/
2627
Logs/

.pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ disable =
2424
missing-docstring,
2525
no-self-use,
2626
protected-access,
27+
raise-missing-from,
2728
redefined-argument-from-local,
2829
redefined-outer-name
2930

@@ -46,7 +47,7 @@ variable-naming-style = camelCase
4647

4748
good-names =
4849
b, c, d, e, f, g, h, i, j, k, m, n, p, q, r, s, t, ,v, w, x, y,
49-
dt, fd, fp, fs, ip, ok, tm, ts, wr,
50+
db, dt, fd, fp, fs, ip, ok, tm, ts, wr,
5051
dir_, id_, input_, type_,
5152
allow_none, entry_point, has_key, start_response, ssl_ctx,
5253
memcache, redis,

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
'Sphinx>=2.4,<3', 'sphinx_rtd_theme>=0.4'
1919
]
2020
requireExamples = [
21-
'Pygments>=2.6,<3', 'Pillow>=7,<8', 'dominate>=2.5,<3', 'yattag>=1.13,<2'
21+
'Pygments>=2.6,<3', 'Pillow>=7,<8', 'dominate>=2.5,<3', 'yattag>=1.13,<2',
22+
'DBUtils>=2,<4'
2223
]
2324
requireTests = [
2425
'psutil>=5.7,<6', 'flake8>=3.8,<4', 'pylint>=2.5,<3', 'tox>=3.15,<4',

0 commit comments

Comments
 (0)