# To use the Python SDK, install the package:# pip install memobasefrom memobase import MemoBaseClientmemobase = MemoBaseClient(project_url='PROJECT_URL', api_key='PROJECT_TOKEN')assert memobase.ping()
Copy
{ "data": {}, "errno": 0, "errmsg": ""}
Project
Health Check
Check if your memobase is set up correctly
GET
/
api
/
v1
/
healthcheck
Python
Copy
# To use the Python SDK, install the package:# pip install memobasefrom memobase import MemoBaseClientmemobase = MemoBaseClient(project_url='PROJECT_URL', api_key='PROJECT_TOKEN')assert memobase.ping()
Copy
{ "data": {}, "errno": 0, "errmsg": ""}
Check if your memobase server is set up correctly and all required services (database, Redis) are available and functioning properly.