This Streamlit application validates the format of data in Excel files based on predefined rules in the first row of the file. It checks for the correct length and character restrictions of the data entries.
- Launch the application.
- Upload an Excel file.
- The application displays the file name being validated.
- It shows the validation rules and progresses through the data.
- Errors will be displayed if any mismatches are found.
- Python 3.7 or later
- Streamlit
- Pandas
Install the required packages: ```bash pip install streamlit pandas ``` Run the application: ```bash streamlit run app.py ```
このStreamlitアプリケーションは、ファイルの最初の行に事前定義されたルールに基づいてExcelファイル内のデータのフォーマットを検証します。データエントリの正しい長さと文字制限をチェックします。
- アプリケーションを起動します。
- Excelファイルをアップロードします。
- 検証中のファイル名が表示されます。
- 検証ルールとデータの進行状況が表示されます。
- 不一致が見つかった場合、エラーが表示されます。
- Python 3.7 以上
- Streamlit
- Pandas
必要なパッケージをインストールします: ```bash pip install streamlit pandas ``` アプリケーションを実行します: ```bash streamlit run app.py ```
這個 Streamlit 應用程式根據文件第一行的預定義規則驗證 Excel 文件中的數據格式。它檢查數據條目的正確長度和字符限制。
- 啟動應用程式。
- 上傳 Excel 文件。
- 應用程式顯示正在驗證的檔案名稱。
- 顯示驗證規則並進行數據處理。
- 如果發現任何不匹配,將顯示錯誤。
- Python 3.7 或更高版本
- Streamlit
- Pandas
安裝所需的套件: ```bash pip install streamlit pandas ``` 運行應用程式: ```bash streamlit run app.py ```