Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cloudcheck"
version = "8.4.3"
version = "8.4.4"
edition = "2024"
description = "CloudCheck is a simple Rust tool to check whether an IP address or hostname belongs to a cloud provider."
license = "GPL-3.0"
Expand Down
4 changes: 2 additions & 2 deletions cloudcheck/providers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import importlib
from sys import stderr
from pathlib import Path
from typing import Dict, Type

Expand Down Expand Up @@ -36,10 +37,9 @@ def load_provider_classes() -> Dict[str, Type[BaseProvider]]:
):
provider_name = attr.__name__
_provider_classes[provider_name] = attr
print(f"Loaded provider class: {attr.__name__}")

except Exception as e:
print(f"Failed to load provider from {file}: {e}")
print(f"Failed to load provider from {file}: {e}", file=stderr)
raise

return _provider_classes
Expand Down
1 change: 0 additions & 1 deletion cloudcheck/providers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def name(self):

def __init__(self, **data):
super().__init__(**data)
print(f"Initializing {self.name}")
self._cidrs = []
self._cache_dir = Path.home() / ".cache" / "cloudcheck"
self._repo_url = "https://github.com/v2fly/domain-list-community.git"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "cloudcheck"
version = "8.4.3"
version = "8.4.4"
description = "Detailed database of cloud providers. Instantly look up a domain or IP address"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.