pocketbase
pocketbase copied to clipboard
PocketBase client SDK for python
* Support create(), get_full_list(), download() and delete() * Refactored Client.send() to support binary responses. * Added Client.send_raw() which returns raw bytes from HTTP response. It was not possible to support...
Any interest in supporting the backup API? It might be something I could contribute.
In JS SDK, there's a method to verify if a given token is still valid. `pb.authStore.isValid` I didn't find any equivalent in this Python SDK. The problem is, it also...
Is there a possibility of having an async client, which'd compliment the current httpx synchronous client.
Currently any exception in the SSEClient/Eventloop will result in the the thead exiting. In my testing I see the http.ReadTimeout exception when the connection to the server is dropped. There...
I just started using the Pocketbase Python SDK for a machine learning tool i wanna build. The Python SDK returns me an Record Model which i convert with vars(search_requests_record) to...
This is an update for the new Pocketbase v0.23+ API; the admin login route has moved to /api/admins/auth-with-password (and other routes are similar) It would appear that all the tests...
I tried to use batch API but can't find anything in the code, any plan for batch API support?
Adds updated CollectionField fields
Hi, I have been trying to implment Oauth using the pocketbase python SDK but until now I had no luck. I was wondering if there was an example code I...