feat: add wallet management features and enhance error handling; update tests and examples

This commit is contained in:
bohd4nx
2026-03-15 22:41:52 +02:00
parent 8135a9da7e
commit d8f0240807
13 changed files with 225 additions and 18 deletions
+7
View File
@@ -3,6 +3,8 @@
# This source code is licensed under the MIT License found in the
# LICENSE file in the root directory of this source tree.
from importlib.metadata import version
from pyfragment.client import FragmentClient
from pyfragment.types import (
AdsTopupResult,
@@ -21,13 +23,18 @@ from pyfragment.types import (
UserNotFoundError,
VerificationError,
WalletError,
WalletInfo,
)
__version__: str = version("pyfragment")
__all__ = [
"__version__",
"FragmentClient",
"AdsTopupResult",
"PremiumResult",
"StarsResult",
"WalletInfo",
"ClientError",
"ConfigurationError",
"CookieError",