sql-glider 0.1.21__py3-none-any.whl → 0.1.23__py3-none-any.whl

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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sql-glider
3
- Version: 0.1.21
3
+ Version: 0.1.23
4
4
  Summary: SQL Utility Toolkit for better understanding, use, and governance of your queries in a native environment.
5
5
  Project-URL: Homepage, https://github.com/rycowhi/sql-glider/
6
6
  Project-URL: Repository, https://github.com/rycowhi/sql-glider/
@@ -1,6 +1,6 @@
1
1
  sqlglider/__init__.py,sha256=gDf7s52dMcX7JuCZ1SLawcB1vb3U0yJCohu9RQAATBY,125
2
- sqlglider/_version.py,sha256=QwRysHnO-cJwIFSvXReHDj93DEPhlibOTtnnb25J9-c,706
3
- sqlglider/cli.py,sha256=jQisnNRvRR5AeBnGF7POtcndMR-7cen7yfp7WDShgO4,68523
2
+ sqlglider/_version.py,sha256=eZj6tqY-zTtH5r_8y6a4Vovz6LQ_hDHSesTIiwuyahQ,706
3
+ sqlglider/cli.py,sha256=yvCkwU75aCSwExXcu0xHpMMI2G5X6L-DViP44nUgs5A,68548
4
4
  sqlglider/global_models.py,sha256=2vyJXAuXOsXQpE-D3F0ejj7eR9z0nDWFjTkielhzM8k,356
5
5
  sqlglider/catalog/__init__.py,sha256=2PqFPyzFXJ14FpSUcBmVK2L-a_ypWQHAbHFHxLDk_LE,814
6
6
  sqlglider/catalog/base.py,sha256=R7htHC43InpH4uRjYk33dMYYji6oylHns7Ye_mgfjJE,3116
@@ -32,8 +32,8 @@ sqlglider/utils/__init__.py,sha256=KGp9-UzKz_OFBOTFoSy-g-NXDZsvyWXG_9-1zcC6ePE,2
32
32
  sqlglider/utils/config.py,sha256=qx5zE9pjLCCzHQDFVPLVd7LgJ-lghxUa2x-aZOAHByY,4962
33
33
  sqlglider/utils/file_utils.py,sha256=5_ff28E0r1R7emZzsOnRuHd-7zIX6873eyr1SuPEr4E,1093
34
34
  sqlglider/utils/schema.py,sha256=LiWrYDunXKJdoSlpKmIaIQ2hLSaIN1iQHqkXjMpGzRE,1883
35
- sql_glider-0.1.21.dist-info/METADATA,sha256=tceZxbt-9yvvLlQn52RcmixUiPs62HhswbJFiGMksmA,29695
36
- sql_glider-0.1.21.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
37
- sql_glider-0.1.21.dist-info/entry_points.txt,sha256=HDuakHqHS5C0HFKsMIxMYmDU7-BLBGrnIJcYaVRu-s0,251
38
- sql_glider-0.1.21.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
39
- sql_glider-0.1.21.dist-info/RECORD,,
35
+ sql_glider-0.1.23.dist-info/METADATA,sha256=kus6plflZU9p594ooQRsVkeYgEPyW8V_hbvCyMUGid8,29695
36
+ sql_glider-0.1.23.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
37
+ sql_glider-0.1.23.dist-info/entry_points.txt,sha256=HDuakHqHS5C0HFKsMIxMYmDU7-BLBGrnIJcYaVRu-s0,251
38
+ sql_glider-0.1.23.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
39
+ sql_glider-0.1.23.dist-info/RECORD,,
sqlglider/_version.py CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.1.21'
32
- __version_tuple__ = version_tuple = (0, 1, 21)
31
+ __version__ = version = '0.1.23'
32
+ __version_tuple__ = version_tuple = (0, 1, 23)
33
33
 
34
34
  __commit_id__ = commit_id = None
sqlglider/cli.py CHANGED
@@ -1678,7 +1678,14 @@ def graph_query(
1678
1678
  )
1679
1679
  raise typer.Exit(1)
1680
1680
 
1681
- if output_format not in ["text", "json", "csv", "mermaid", "mermaid-markdown", "dot"]:
1681
+ if output_format not in [
1682
+ "text",
1683
+ "json",
1684
+ "csv",
1685
+ "mermaid",
1686
+ "mermaid-markdown",
1687
+ "dot",
1688
+ ]:
1682
1689
  err_console.print(
1683
1690
  f"[red]Error:[/red] Invalid output format '{output_format}'. "
1684
1691
  "Use 'text', 'json', 'csv', 'mermaid', 'mermaid-markdown', or 'dot'."
@@ -1873,9 +1880,7 @@ def graph_visualize(
1873
1880
 
1874
1881
  if output_file:
1875
1882
  output_file.write_text(diagram, encoding="utf-8")
1876
- console.print(
1877
- f"[green]Success:[/green] Diagram written to {output_file}"
1878
- )
1883
+ console.print(f"[green]Success:[/green] Diagram written to {output_file}")
1879
1884
  else:
1880
1885
  print(diagram)
1881
1886