pocketbase/pocketbase/__init__.py
2022-09-29 09:22:27 -04:00

18 lines
325 B
Python

__title__ = "pocketbase"
__description__ = "PocketBase client SDK for python."
__version__ = "0.2.2"
from .client import Client, ClientResponseError
class PocketBase(Client):
"""
Proxy class for `Client`
This is for cosmetic reasons only as you can use the
`Client` class just the same
"""
pass