queryguard-cli 0.1.0__tar.gz → 0.2.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.
- {queryguard_cli-0.1.0 → queryguard_cli-0.2.0}/PKG-INFO +6 -1
- {queryguard_cli-0.1.0 → queryguard_cli-0.2.0}/README.md +5 -0
- {queryguard_cli-0.1.0 → queryguard_cli-0.2.0}/pyproject.toml +2 -2
- {queryguard_cli-0.1.0 → queryguard_cli-0.2.0}/queryguard/analysis.py +5 -1
- {queryguard_cli-0.1.0 → queryguard_cli-0.2.0}/LICENSE +0 -0
- {queryguard_cli-0.1.0 → queryguard_cli-0.2.0}/queryguard/__init__.py +0 -0
- {queryguard_cli-0.1.0 → queryguard_cli-0.2.0}/queryguard/client.py +0 -0
- {queryguard_cli-0.1.0 → queryguard_cli-0.2.0}/queryguard/console_utils.py +0 -0
- {queryguard_cli-0.1.0 → queryguard_cli-0.2.0}/queryguard/main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: queryguard-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: A BigQuery Cost Analysis CLI Tool
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Keywords: bigquery,gcp,cost-optimization,finops,cli
|
|
@@ -27,6 +27,7 @@ Description-Content-Type: text/markdown
|
|
|
27
27
|
|
|
28
28
|
**The Forensic Auditor for your BigQuery Bill.**
|
|
29
29
|
|
|
30
|
+
[](https://github.com/mark-de-haan/query-guard-cli/actions/workflows/test.yml)
|
|
30
31
|
[](https://www.python.org/downloads/)
|
|
31
32
|
[](https://opensource.org/licenses/MIT)
|
|
32
33
|
[](https://github.com/psf/black)
|
|
@@ -37,6 +38,10 @@ Stop guessing who spent the budget. **Know.**
|
|
|
37
38
|
|
|
38
39
|
---
|
|
39
40
|
|
|
41
|
+

|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
40
45
|
## ⚡ Features
|
|
41
46
|
|
|
42
47
|
* **🌍 Global Auto-Discovery**: Automatically scans your project to find active regions and queries them in parallel. No more guessing if data is in `us-central1` or `europe-west3`.
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**The Forensic Auditor for your BigQuery Bill.**
|
|
4
4
|
|
|
5
|
+
[](https://github.com/mark-de-haan/query-guard-cli/actions/workflows/test.yml)
|
|
5
6
|
[](https://www.python.org/downloads/)
|
|
6
7
|
[](https://opensource.org/licenses/MIT)
|
|
7
8
|
[](https://github.com/psf/black)
|
|
@@ -12,6 +13,10 @@ Stop guessing who spent the budget. **Know.**
|
|
|
12
13
|
|
|
13
14
|
---
|
|
14
15
|
|
|
16
|
+

|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
15
20
|
## ⚡ Features
|
|
16
21
|
|
|
17
22
|
* **🌍 Global Auto-Discovery**: Automatically scans your project to find active regions and queries them in parallel. No more guessing if data is in `us-central1` or `europe-west3`.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "queryguard-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.0"
|
|
4
4
|
description = "A BigQuery Cost Analysis CLI Tool"
|
|
5
5
|
authors = ["Mark de Haan <markdehaan90@gmail.com>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -29,4 +29,4 @@ bqg = "queryguard.main:app"
|
|
|
29
29
|
|
|
30
30
|
[build-system]
|
|
31
31
|
requires = ["poetry-core"]
|
|
32
|
-
build-backend = "poetry.core.masonry.api"
|
|
32
|
+
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|