appwrite / appwrite/sdk-for-python
🚀 Feature: Python SDK does not validate row data against table schema before insertion
- 主要言語
- Python
- スター
- 268
- フォーク
- 67
- 平均マージ
- 11時間 59分
- マージ済み PR(30日)
- 2
説明
### 🔖 Feature description
The Python SDK allows defining table schemas (required fields, data types, defaults), but create_row does not perform any client-side validation against this schema.
As a result, issues like missing required fields or incorrect data types are only caught server-side after the API request, leading to delayed and less clear errors.
### 🎤 Pitch
The Python SDK already has full knowledge of the table schema at creation time (required fields, data types, defaults), but this information is not used when inserting rows. This leads to avoidable runtime errors that are only discovered after a network request.
* Adding optional client-side validation would:
* Catch simple mistakes (missing required fields, wrong data types) immediately
* Provide clearer, Python-native error messages
* Reduce unnecessary API calls and debugging time
* Improve onboarding and overall developer experience
This does not replace server-side validation, but complements it by shifting basic checks closer to the developer.
### 👀 Have you spent some time to check if this issue has been raised before?
- [x] I checked and didn't find similar issue
### 🏢 Have you read the Code of Conduct?
- [x] I have read the [Code of Conduct](https://github.com/appwrite/appwrite/blob/master/CODE_OF_CONDUCT.md)
コントリビューションガイド
調査の方向性
まず、Python SDK の create_row エントリーポイントと、それが使用するテーブルスキーマ定義を特定します。必須フィールド、データ型、デフォルト値がどのように表現されているかを確認し、そのうえで無効な行に対する検証動作と Python ネイティブのエラーを定義します。ただし、サーバー側の検証は維持してください。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- databases
- issue の種類
- 機能追加
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100