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.
@@ -1,89 +1,92 @@
1
- Metadata-Version: 2.1
2
- Name: sqlite_bro
3
- Version: 0.12.2
4
- Summary: a graphic SQLite Client in 1 Python file
5
- Home-page: https://github.com/stonebig/sqlite_bro
6
- Author: stonebig
7
- Author-email: write_pull_requests_to_stonebig@github.com
8
- License: MIT license
9
- Keywords: sqlite,gui,ttk,sql
10
- Platform: UNKNOWN
11
- Classifier: Development Status :: 5 - Production/Stable
12
- Classifier: Environment :: Console
13
- Classifier: Intended Audience :: Education
14
- Classifier: License :: OSI Approved :: MIT License
15
- Classifier: Operating System :: OS Independent
16
- Classifier: Programming Language :: Python
17
- Classifier: Programming Language :: Python :: 2.7
18
- Classifier: Programming Language :: Python :: 3
19
- Classifier: Topic :: Scientific/Engineering :: Information Analysis
20
- License-File: LICENSE
21
-
22
- sqlite_bro : a graphic SQLite browser in 1 Python file
23
- ======================================================
24
-
25
- sqlite_bro is a tool to browse SQLite databases with
26
- any basic python installation.
27
-
28
-
29
- Features
30
- --------
31
-
32
- * Tabular browsing of a SQLite database
33
-
34
- * Import/Export of .csv files with auto-detection
35
-
36
- * Import/Export of .sql script
37
-
38
- * Export of database creation .sql script
39
-
40
- * Support of sql-embedded Python functions
41
-
42
- * support supports command-line scripting if Python>=3.2 (see sqlite_bro -h), with or without Graphic User Interface
43
-
44
- * Easy to distribute : 1 Python source file, Python and PyPy3 compatible
45
-
46
- * Easy to start : just launch sqlite_bro
47
-
48
- * Easy to learn : Welcome example, minimal interface
49
-
50
- * Easy to teach : Character size, SQL + SQL result export on a click
51
-
52
- Installation
53
- ------------
54
-
55
- You can install, upgrade, uninstall sqlite_bro.py with these commands::
56
-
57
- $ apt-get install python3-tk # apt-get install python-tk if you are using python2
58
- $ pip install sqlite_bro
59
- $ pip install --upgrade sqlite_bro
60
- $ pip uninstall sqlite_bro
61
-
62
- or just launch latest version from IPython with %load https://raw.githubusercontent.com/stonebig/sqlite_bro/master/sqlite_bro/sqlite_bro.py
63
- or just copy the file 'sqlite_bro.py' to any pc and type 'python sqlite_bro.py'
64
-
65
- Example usage
66
- -------------
67
-
68
- ::
69
-
70
- $ sqlite_bro
71
-
72
- ::
73
-
74
- $ sqlite_bro -h
75
-
76
- Screenshots
77
- -----------
78
-
79
- .. image:: https://raw.githubusercontent.com/stonebig/sqlite_bro/master/docs/sqlite_bro.GIF
80
-
81
- .. image:: https://raw.githubusercontent.com/stonebig/sqlite_bro/master/docs/sqlite_bro_command_line.GIF
82
-
83
-
84
- Links
85
- -----
86
-
87
- * `Fork me on GitHub <http://github.com/stonebig/sqlite_bro>`_
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 databases with
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'