cloudcheck 8.4.0__tar.gz → 8.4.2__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.
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/Cargo.lock +1 -1
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/Cargo.toml +1 -1
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/PKG-INFO +5 -5
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/README.md +4 -4
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloud_providers_v2.json +431 -71
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/helpers.py +39 -1
- cloudcheck-8.4.2/cloudcheck/providers/__init__.py +48 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/base.py +3 -37
- cloudcheck-8.4.2/cloudcheck_update/__init__.py +46 -0
- cloudcheck-8.4.2/dist/cloudcheck-8.4.2-cp314-cp314-manylinux_2_38_x86_64.whl +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/pyproject.toml +1 -1
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/pytest.ini +2 -2
- cloudcheck-8.4.2/src/lib.rs +281 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/test_cloudcheck.py +5 -2
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/uv.lock +1 -1
- cloudcheck-8.4.0/cloudcheck_update/__init__.py +0 -89
- cloudcheck-8.4.0/dist/cloudcheck-8.4.0-cp314-cp314-manylinux_2_38_x86_64.whl +0 -0
- cloudcheck-8.4.0/src/lib.rs +0 -215
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/.github/dependabot.yml +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/.github/workflows/pipeline-tests.yml +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/.github/workflows/python-tests.yml +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/.github/workflows/rust-tests.yml +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/.gitignore +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloud_providers.json +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/__init__.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/akamai.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/alibaba.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/amazon.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/arvancloud.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/azure.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/backblaze.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/cisco.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/cloudflare.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/cloudfront.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/dell.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/digitalocean.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/fastly.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/github.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/google.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/heroku.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/hetzner.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/hpe.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/huawei.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/ibm.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/imperva.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/kamatera.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/oracle.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/ovh.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/rackspace.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/salesforce.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/scaleway.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/tencent.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/wasabi.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck/providers/zoho.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck_update/cli.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/cloudcheck_update/test_cloudcheck_update.py +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/src/main.rs +0 -0
- {cloudcheck-8.4.0 → cloudcheck-8.4.2}/src/python.rs +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloudcheck
|
|
3
|
-
Version: 8.4.
|
|
3
|
+
Version: 8.4.2
|
|
4
4
|
Summary: Detailed database of cloud providers. Instantly look up a domain or IP address
|
|
5
5
|
Requires-Python: >=3.9
|
|
6
6
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
@@ -11,11 +11,11 @@ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
|
11
11
|
[](https://pypi.org/project/cloudcheck/)
|
|
12
12
|
[](https://www.rust-lang.org)
|
|
13
13
|
[](https://crates.io/crates/cloudcheck)
|
|
14
|
-
[](https://github.com/blacklanternsecurity/cloudcheck/blob/
|
|
14
|
+
[](https://github.com/blacklanternsecurity/cloudcheck/blob/stable/LICENSE)
|
|
15
15
|
[](https://github.com/astral-sh/ruff)
|
|
16
|
-
[](https://github.com/blacklanternsecurity/cloudcheck/actions/workflows/rust-tests.yml)
|
|
17
|
+
[](https://github.com/blacklanternsecurity/cloudcheck/actions/workflows/python-tests.yml)
|
|
18
|
+
[](https://github.com/blacklanternsecurity/cloudcheck/actions/workflows/pipeline-tests.yml)
|
|
19
19
|
|
|
20
20
|
### UPDATE: Now rewritten in Rust, with [34 supported cloud providers](#supported-cloud-providers)!
|
|
21
21
|
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
[](https://pypi.org/project/cloudcheck/)
|
|
5
5
|
[](https://www.rust-lang.org)
|
|
6
6
|
[](https://crates.io/crates/cloudcheck)
|
|
7
|
-
[](https://github.com/blacklanternsecurity/cloudcheck/blob/
|
|
7
|
+
[](https://github.com/blacklanternsecurity/cloudcheck/blob/stable/LICENSE)
|
|
8
8
|
[](https://github.com/astral-sh/ruff)
|
|
9
|
-
[](https://github.com/blacklanternsecurity/cloudcheck/actions/workflows/rust-tests.yml)
|
|
10
|
+
[](https://github.com/blacklanternsecurity/cloudcheck/actions/workflows/python-tests.yml)
|
|
11
|
+
[](https://github.com/blacklanternsecurity/cloudcheck/actions/workflows/pipeline-tests.yml)
|
|
12
12
|
|
|
13
13
|
### UPDATE: Now rewritten in Rust, with [34 supported cloud providers](#supported-cloud-providers)!
|
|
14
14
|
|