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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: sqlshell
3
- Version: 0.1.4
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 DuckDB databases and Excel files.
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
  ![SQLShell Interface](sqlshell_demo.png)
@@ -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 DuckDB databases and Excel files.
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
  ![SQLShell Interface](sqlshell_demo.png)
@@ -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:
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "sqlshell"
7
- version = "0.1.4"
7
+ version = "0.1.6"
8
8
  description = "A powerful SQL shell with GUI interface for data analysis"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -2,5 +2,5 @@
2
2
  SQLShell - A powerful SQL shell with GUI interface for data analysis
3
3
  """
4
4
 
5
- __version__ = "0.1.1"
5
+ __version__ = "0.1.6"
6
6
  __author__ = "SQLShell Team"