sqlite-bro 0.12.2__tar.gz → 0.14.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sqlite_bro-0.12.2 → sqlite_bro-0.14.0}/PKG-INFO +92 -89
- {sqlite_bro-0.12.2 → sqlite_bro-0.14.0}/README.rst +7 -5
- sqlite_bro-0.14.0/pyproject.toml +36 -0
- sqlite_bro-0.14.0/sqlite_bro/__init__.py +1 -0
- {sqlite_bro-0.12.2 → sqlite_bro-0.14.0}/sqlite_bro/sqlite_bro.py +469 -68
- sqlite_bro-0.14.0/sqlite_bro/tests/test_general_duckdb.py +150 -0
- sqlite_bro-0.14.0/sqlite_bro/tests/test_general_no_gui.py +68 -0
- sqlite_bro-0.12.2/HISTORY.rst +0 -264
- sqlite_bro-0.12.2/MANIFEST.in +0 -3
- sqlite_bro-0.12.2/setup.cfg +0 -10
- sqlite_bro-0.12.2/setup.py +0 -54
- sqlite_bro-0.12.2/sqlite_bro/tests/__init__.py +0 -0
- sqlite_bro-0.12.2/sqlite_bro.egg-info/PKG-INFO +0 -89
- sqlite_bro-0.12.2/sqlite_bro.egg-info/SOURCES.txt +0 -15
- sqlite_bro-0.12.2/sqlite_bro.egg-info/dependency_links.txt +0 -1
- sqlite_bro-0.12.2/sqlite_bro.egg-info/entry_points.txt +0 -3
- sqlite_bro-0.12.2/sqlite_bro.egg-info/top_level.txt +0 -1
- {sqlite_bro-0.12.2 → sqlite_bro-0.14.0}/LICENSE +0 -0
- {sqlite_bro-0.12.2/sqlite_bro → sqlite_bro-0.14.0/sqlite_bro/tests}/__init__.py +0 -0
- {sqlite_bro-0.12.2 → sqlite_bro-0.14.0}/sqlite_bro/tests/test_general.py +0 -0
|
@@ -1,89 +1,92 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
2
|
-
Name: sqlite_bro
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: a graphic SQLite Client in 1 Python file
|
|
5
|
-
|
|
6
|
-
Author: stonebig
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Classifier:
|
|
12
|
-
Classifier:
|
|
13
|
-
Classifier:
|
|
14
|
-
Classifier:
|
|
15
|
-
Classifier: Operating System ::
|
|
16
|
-
Classifier: Programming Language :: Python
|
|
17
|
-
Classifier:
|
|
18
|
-
Classifier:
|
|
19
|
-
Classifier: Topic ::
|
|
20
|
-
License-File: LICENSE
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
*
|
|
35
|
-
|
|
36
|
-
*
|
|
37
|
-
|
|
38
|
-
* Export of
|
|
39
|
-
|
|
40
|
-
*
|
|
41
|
-
|
|
42
|
-
*
|
|
43
|
-
|
|
44
|
-
*
|
|
45
|
-
|
|
46
|
-
*
|
|
47
|
-
|
|
48
|
-
* Easy to
|
|
49
|
-
|
|
50
|
-
* Easy to
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
::
|
|
73
|
-
|
|
74
|
-
$ sqlite_bro
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sqlite_bro
|
|
3
|
+
Version: 0.14.0
|
|
4
|
+
Summary: a graphic SQLite and DuckDB Client in 1 Python file
|
|
5
|
+
Keywords: sqlite,duckdb,gui,ttk,sql
|
|
6
|
+
Author: stonebig
|
|
7
|
+
Requires-Python: >=3.3
|
|
8
|
+
Description-Content-Type: text/x-rst
|
|
9
|
+
Classifier: Intended Audience :: Education
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: MacOS
|
|
12
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Operating System :: POSIX
|
|
15
|
+
Classifier: Operating System :: Unix
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering
|
|
19
|
+
Classifier: Topic :: Software Development :: Widget Sets
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Project-URL: Documentation, https://github.com/stonebig/sqlite_bro/README.rst
|
|
22
|
+
Project-URL: Source, https://github.com/stonebig/sqlite_bro
|
|
23
|
+
|
|
24
|
+
sqlite_bro : a graphic SQLite and DuckDB browser in 1 Python file
|
|
25
|
+
=================================================================
|
|
26
|
+
|
|
27
|
+
sqlite_bro is a tool to browse SQLite (and optionally DuckDB)
|
|
28
|
+
databases with any basic python installation.
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
Features
|
|
32
|
+
--------
|
|
33
|
+
|
|
34
|
+
* Tabular browsing of a SQLite or DuckDB database
|
|
35
|
+
|
|
36
|
+
* Optional DuckDB engine : open or create a '.duckdb' file (needs 'pip install duckdb')
|
|
37
|
+
|
|
38
|
+
* Import/Export of .csv files with auto-detection
|
|
39
|
+
|
|
40
|
+
* Import/Export of .sql script
|
|
41
|
+
|
|
42
|
+
* Export of database creation .sql script
|
|
43
|
+
|
|
44
|
+
* Support of sql-embedded Python functions
|
|
45
|
+
|
|
46
|
+
* support supports command-line scripting if Python>=3.2 (see sqlite_bro -h), with or without Graphic User Interface
|
|
47
|
+
|
|
48
|
+
* Easy to distribute : 1 Python source file, Python and PyPy3 compatible
|
|
49
|
+
|
|
50
|
+
* Easy to start : just launch sqlite_bro
|
|
51
|
+
|
|
52
|
+
* Easy to learn : Welcome example, minimal interface
|
|
53
|
+
|
|
54
|
+
* Easy to teach : Character size, SQL + SQL result export on a click
|
|
55
|
+
|
|
56
|
+
Installation
|
|
57
|
+
------------
|
|
58
|
+
|
|
59
|
+
You can install, upgrade, uninstall sqlite_bro.py with these commands::
|
|
60
|
+
|
|
61
|
+
$ apt-get install python3-tk # apt-get install python-tk if you are using python2
|
|
62
|
+
$ pip install sqlite_bro
|
|
63
|
+
$ pip install --upgrade sqlite_bro
|
|
64
|
+
$ pip uninstall sqlite_bro
|
|
65
|
+
|
|
66
|
+
or just launch latest version from IPython with %load https://raw.githubusercontent.com/stonebig/sqlite_bro/master/sqlite_bro/sqlite_bro.py
|
|
67
|
+
or just copy the file 'sqlite_bro.py' to any pc and type 'python sqlite_bro.py'
|
|
68
|
+
|
|
69
|
+
Example usage
|
|
70
|
+
-------------
|
|
71
|
+
|
|
72
|
+
::
|
|
73
|
+
|
|
74
|
+
$ sqlite_bro
|
|
75
|
+
|
|
76
|
+
::
|
|
77
|
+
|
|
78
|
+
$ sqlite_bro -h
|
|
79
|
+
|
|
80
|
+
Screenshots
|
|
81
|
+
-----------
|
|
82
|
+
|
|
83
|
+
.. image:: https://raw.githubusercontent.com/stonebig/sqlite_bro/master/docs/sqlite_bro.GIF
|
|
84
|
+
|
|
85
|
+
.. image:: https://raw.githubusercontent.com/stonebig/sqlite_bro/master/docs/sqlite_bro_command_line.GIF
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
Links
|
|
89
|
+
-----
|
|
90
|
+
|
|
91
|
+
* `Fork me on GitHub <http://github.com/stonebig/sqlite_bro>`_
|
|
92
|
+
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
sqlite_bro : a graphic SQLite browser in 1 Python file
|
|
2
|
-
|
|
1
|
+
sqlite_bro : a graphic SQLite and DuckDB browser in 1 Python file
|
|
2
|
+
=================================================================
|
|
3
3
|
|
|
4
|
-
sqlite_bro is a tool to browse SQLite
|
|
5
|
-
any basic python installation.
|
|
4
|
+
sqlite_bro is a tool to browse SQLite (and optionally DuckDB)
|
|
5
|
+
databases with any basic python installation.
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Features
|
|
9
9
|
--------
|
|
10
10
|
|
|
11
|
-
* Tabular browsing of a SQLite database
|
|
11
|
+
* Tabular browsing of a SQLite or DuckDB database
|
|
12
|
+
|
|
13
|
+
* Optional DuckDB engine : open or create a '.duckdb' file (needs 'pip install duckdb')
|
|
12
14
|
|
|
13
15
|
* Import/Export of .csv files with auto-detection
|
|
14
16
|
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[build-system] # flit_core seems the step after 'setuptools','wheel','build','twine' (see https://github.com/pypa/build/issues/394)
|
|
2
|
+
requires = ["flit_core"]
|
|
3
|
+
build-backend = "flit_core.buildapi"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sqlite_bro"
|
|
7
|
+
authors = [
|
|
8
|
+
{name = "stonebig"},
|
|
9
|
+
]
|
|
10
|
+
dependencies = []
|
|
11
|
+
requires-python = ">=3.3"
|
|
12
|
+
readme = "README.rst"
|
|
13
|
+
license = {file = "LICENSE"}
|
|
14
|
+
classifiers=[
|
|
15
|
+
'Intended Audience :: Education',
|
|
16
|
+
'License :: OSI Approved :: MIT License',
|
|
17
|
+
'Operating System :: MacOS',
|
|
18
|
+
'Operating System :: Microsoft :: Windows',
|
|
19
|
+
'Operating System :: OS Independent',
|
|
20
|
+
'Operating System :: POSIX',
|
|
21
|
+
'Operating System :: Unix',
|
|
22
|
+
'Programming Language :: Python :: 3',
|
|
23
|
+
'Development Status :: 5 - Production/Stable',
|
|
24
|
+
'Topic :: Scientific/Engineering',
|
|
25
|
+
'Topic :: Software Development :: Widget Sets',
|
|
26
|
+
]
|
|
27
|
+
dynamic = ["version",]
|
|
28
|
+
description="a graphic SQLite and DuckDB Client in 1 Python file"
|
|
29
|
+
keywords = ["sqlite", "duckdb", "gui", "ttk", "sql"]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Documentation = "https://github.com/stonebig/sqlite_bro/README.rst"
|
|
33
|
+
Source = "https://github.com/stonebig/sqlite_bro"
|
|
34
|
+
|
|
35
|
+
[project.scripts]
|
|
36
|
+
sqlite_bro = "sqlite_bro.sqlite_bro:_main"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.14.0'
|