mirror of
https://github.com/bohd4nx/FragmentAPI.git
synced 2026-07-25 14:24:31 +00:00
52 lines
1.1 KiB
Python
52 lines
1.1 KiB
Python
# Copyright (c) 2026 bohd4nx
|
|
#
|
|
# 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,
|
|
ClientError,
|
|
ConfigurationError,
|
|
CookieError,
|
|
FragmentAPIError,
|
|
FragmentError,
|
|
FragmentPageError,
|
|
OperationError,
|
|
ParseError,
|
|
PremiumResult,
|
|
StarsResult,
|
|
TransactionError,
|
|
UnexpectedError,
|
|
UserNotFoundError,
|
|
VerificationError,
|
|
WalletError,
|
|
WalletInfo,
|
|
)
|
|
|
|
__version__: str = version("pyfragment")
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"FragmentClient",
|
|
"AdsTopupResult",
|
|
"PremiumResult",
|
|
"StarsResult",
|
|
"WalletInfo",
|
|
"ClientError",
|
|
"ConfigurationError",
|
|
"CookieError",
|
|
"FragmentAPIError",
|
|
"FragmentError",
|
|
"FragmentPageError",
|
|
"OperationError",
|
|
"ParseError",
|
|
"TransactionError",
|
|
"UnexpectedError",
|
|
"UserNotFoundError",
|
|
"VerificationError",
|
|
"WalletError",
|
|
]
|