sqlshell 0.1.4__tar.gz → 0.1.6__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.
Potentially problematic release.
This version of sqlshell might be problematic. Click here for more details.
- {sqlshell-0.1.4 → sqlshell-0.1.6}/PKG-INFO +8 -2
- {sqlshell-0.1.4 → sqlshell-0.1.6}/README.md +7 -1
- {sqlshell-0.1.4 → sqlshell-0.1.6}/pyproject.toml +1 -1
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell/__init__.py +1 -1
- sqlshell-0.1.6/sqlshell/main.py +1473 -0
- sqlshell-0.1.6/sqlshell/sqlshell/create_test_databases.py +96 -0
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell.egg-info/PKG-INFO +8 -2
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell.egg-info/SOURCES.txt +1 -1
- sqlshell-0.1.4/sqlshell/main.py +0 -346
- sqlshell-0.1.4/sqlshell/sqlshell/main.py +0 -346
- {sqlshell-0.1.4 → sqlshell-0.1.6}/setup.cfg +0 -0
- {sqlshell-0.1.4 → sqlshell-0.1.6}/setup.py +0 -0
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell/setup.py +0 -0
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell/sqlshell/__init__.py +0 -0
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell/sqlshell/create_test_data.py +0 -0
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell.egg-info/dependency_links.txt +0 -0
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell.egg-info/entry_points.txt +0 -0
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell.egg-info/requires.txt +0 -0
- {sqlshell-0.1.4 → sqlshell-0.1.6}/sqlshell.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: sqlshell
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: A powerful SQL shell with GUI interface for data analysis
|
|
5
5
|
Home-page: https://github.com/yourusername/sqlshell
|
|
6
6
|
Author: SQLShell Team
|
|
@@ -29,7 +29,7 @@ Dynamic: requires-python
|
|
|
29
29
|
|
|
30
30
|
# SQL Shell
|
|
31
31
|
|
|
32
|
-
A GUI application that provides a SQL REPL interface for querying
|
|
32
|
+
A GUI application that provides a SQL REPL interface for querying Excel and parquet files (more to come!)
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|

|
|
@@ -50,6 +50,12 @@ A GUI application that provides a SQL REPL interface for querying DuckDB databas
|
|
|
50
50
|
pip install -r requirements.txt
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
You can also do:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
pip install sqlshell
|
|
57
|
+
```
|
|
58
|
+
|
|
53
59
|
## Usage
|
|
54
60
|
|
|
55
61
|
1. Run the application:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SQL Shell
|
|
2
2
|
|
|
3
|
-
A GUI application that provides a SQL REPL interface for querying
|
|
3
|
+
A GUI application that provides a SQL REPL interface for querying Excel and parquet files (more to come!)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|

|
|
@@ -21,6 +21,12 @@ A GUI application that provides a SQL REPL interface for querying DuckDB databas
|
|
|
21
21
|
pip install -r requirements.txt
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
You can also do:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install sqlshell
|
|
28
|
+
```
|
|
29
|
+
|
|
24
30
|
## Usage
|
|
25
31
|
|
|
26
32
|
1. Run the application:
|