pocketbase/pocketbase/__init__.py
2023-04-26 20:19:45 -04:00

18 lines
304 B
Python

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