snowglobe-cli 0.1.3__tar.gz → 0.1.4__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.
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/PKG-INFO +3 -3
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/README.md +1 -1
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/pyproject.toml +2 -2
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe_cli.egg-info/PKG-INFO +3 -3
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/LICENSE +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/setup.cfg +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/__main__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/access.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/app.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/context.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/cost.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/debug.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/diff.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/optimizer.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/prompts.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/report.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/shell.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/cli/shell_completer.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/collectors/access.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/collectors/query_history.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/collectors/query_profile.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/config/loader.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/core/access_service.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/core/cost_service.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/core/optimizer.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/core/query_service.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/core/report_service.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/core/risk_service.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/engines/access/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/engines/access/explainer.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/engines/access/resolver.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/engines/ai/cortex_optimizer.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/engines/optimizer/query_optimizer.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/graphs/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/graphs/role_graph.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/graphs/user_graph.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/models/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/models/access.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/models/access_path.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/models/object_ref.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/models/object_type.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/models/optimizer.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/models/privilege.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/models/query.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/output/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/output/cli.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/queries/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/queries/query_history.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/snowflake/connection.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/state/db.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/state/state.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/templates/report.md.j2 +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tests/access_tests.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/__main__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/app.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/screens/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/screens/access.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/screens/cost.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/screens/home.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/screens/refresh.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/screens/reports.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/screens/risk.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/screens/tune.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/styles.tcss +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/widgets/__init__.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/widgets/access_paths.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/widgets/cache_badge.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/widgets/header.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe/tui/widgets/nav.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe_cli.egg-info/SOURCES.txt +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe_cli.egg-info/dependency_links.txt +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe_cli.egg-info/entry_points.txt +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe_cli.egg-info/requires.txt +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/snowglobe_cli.egg-info/top_level.txt +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/tests/test_access.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/tests/test_optimizer_engine.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/tests/test_output.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/tests/test_query_validation.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/tests/test_state_db.py +0 -0
- {snowglobe_cli-0.1.3 → snowglobe_cli-0.1.4}/tests/test_tui_tune.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snowglobe-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Explainable cost and access visibility for Snowflake
|
|
5
5
|
Author-email: Jaryd Thornton <jaryd90@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
|
-
Requires-Python: >=3.12
|
|
7
|
+
Requires-Python: >=3.12.3
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
10
10
|
Requires-Dist: cryptography==45.0.5
|
|
@@ -98,7 +98,7 @@ pip install -e '.[tui]'
|
|
|
98
98
|
|
|
99
99
|
## Requirements
|
|
100
100
|
|
|
101
|
-
- Python **3.12+**
|
|
101
|
+
- Python **3.12.3+**
|
|
102
102
|
- A Snowflake account
|
|
103
103
|
- A Snowflake role with `IMPORTED PRIVILEGES ON DATABASE SNOWFLAKE` (grants read access to `ACCOUNT_USAGE`)
|
|
104
104
|
- Optionally: `IMPORTED PRIVILEGES ON DATABASE SNOWFLAKE` for `ORGANIZATION_USAGE` to get your contracted storage rate
|
|
@@ -71,7 +71,7 @@ pip install -e '.[tui]'
|
|
|
71
71
|
|
|
72
72
|
## Requirements
|
|
73
73
|
|
|
74
|
-
- Python **3.12+**
|
|
74
|
+
- Python **3.12.3+**
|
|
75
75
|
- A Snowflake account
|
|
76
76
|
- A Snowflake role with `IMPORTED PRIVILEGES ON DATABASE SNOWFLAKE` (grants read access to `ACCOUNT_USAGE`)
|
|
77
77
|
- Optionally: `IMPORTED PRIVILEGES ON DATABASE SNOWFLAKE` for `ORGANIZATION_USAGE` to get your contracted storage rate
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "snowglobe-cli"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "Explainable cost and access visibility for Snowflake"
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.12"
|
|
6
|
+
requires-python = ">=3.12.3"
|
|
7
7
|
license = "Apache-2.0"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name = "Jaryd Thornton", email = "jaryd90@gmail.com" }
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snowglobe-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Explainable cost and access visibility for Snowflake
|
|
5
5
|
Author-email: Jaryd Thornton <jaryd90@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
|
-
Requires-Python: >=3.12
|
|
7
|
+
Requires-Python: >=3.12.3
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
10
10
|
Requires-Dist: cryptography==45.0.5
|
|
@@ -98,7 +98,7 @@ pip install -e '.[tui]'
|
|
|
98
98
|
|
|
99
99
|
## Requirements
|
|
100
100
|
|
|
101
|
-
- Python **3.12+**
|
|
101
|
+
- Python **3.12.3+**
|
|
102
102
|
- A Snowflake account
|
|
103
103
|
- A Snowflake role with `IMPORTED PRIVILEGES ON DATABASE SNOWFLAKE` (grants read access to `ACCOUNT_USAGE`)
|
|
104
104
|
- Optionally: `IMPORTED PRIVILEGES ON DATABASE SNOWFLAKE` for `ORGANIZATION_USAGE` to get your contracted storage rate
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|