Whats the exact error?
Traceback (most recent call last): File "C:\Users\nites\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\appwrite\client.py", line 97, in call response.raise_for_status() File "C:\Users\nites\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\requests\models.py", line 1021, in raise_for_status raise HTTPError(http_error_msg, response=self) requests.exceptions.HTTPError: 500 Server Error: Internal Server Error for url: https://cloud.appwrite.io/v1/databases/652ab2e651c88a1be96e/collections
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File "d:\Production\rentmyCastle_backend\database.py", line 95, in <module> create_database_and_collections('development') File "d:\Production\rentmyCastle_backend\database.py", line 75, in create_database_and_collections new_collection = databases.create_collection(new_database['$id'], ID.unique(), collection_name) File "C:\Users\nites\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\appwrite\services\databases.py", line 135, in create_collection return self.client.call('post', path, { File "C:\Users\nites\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\appwrite\client.py", line 109, in call raise AppwriteException(response.json()['message'], response.status_code, response.json().get('type'), response.json()) appwrite.exception.AppwriteException: Server Error
What's your project id?
6529f012f3c6cd71c906
Recommended threads
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...