Hi, i ran 4.1 without any issues but im in the process to migrating to selfhosted 1.5 and thus i needed to upgrade the python sdk. I get errors from inside the pip package.
Currently using python 3.1 and, as mentioned, the appwrite 5.0.0 running in this docker image: runpod/pytorch:2.1.0-py3.10-cuda11.8.0-devel-ubuntu22.04
The image and environment is exactly the same as with 4.1. I dont think my appwrite server version matters, as it doesnt even reach the point.
My test script just contains:
`from appwrite.client import Client'
which results in this error message:
(EDIT: I pasted the wrong error message, sorry)
Traceback (most recent call last): File "/workspace/test.py", line 1, in <module> from appwrite.client import Client File "/usr/local/lib/python3.10/dist-packages/appwrite/client.py", line 7, in <module> from .encoders.value_class_encoder import ValueClassEncoder ModuleNotFoundError: No module named 'appwrite.encoders'
@D5
@D5 sorry, pasted the wrong error message, corrected it
Recommended threads
- Realtime with multiple connections
I need the Realtime on multiple Collections for diffrent applicational logic. So my question is: Is there a way to have only 1 Websocket connection or do I need...
- Can't login or deploy functions in Appwr...
Hello, since i updatet to the appwrite cli 6.1.0 i can't login or deploy functions with the cli. When i call the command: "appwrite get account --verbose" i ge...
- Create admin user?
I'm not really sure how this is supposed to work, I installed Appwrite through docker-compose and set it up. When I launched the app and went into it, I created...