From b6ed3cd57e2cf4c05043d146635752fa4405fabc Mon Sep 17 00:00:00 2001 From: Max Wang Date: Mon, 17 Nov 2025 16:31:08 -0800 Subject: [PATCH] fix for links on pypi and update walkthrough schema -> columns --- README.md | 12 ++++++------ examples/advanced/walkthrough.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index aca86c1..b07b232 100644 --- a/README.md +++ b/README.md @@ -254,17 +254,17 @@ client.upload_file( ### More sample code -Explore our comprehensive examples in the [`examples/`](examples/) directory: +Explore our comprehensive examples in the [`examples/`](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/tree/main/examples) directory: **🌱 Getting Started:** -- **[Installation & Setup](examples/basic/installation_example.py)** - Validate installation and basic usage patterns -- **[Functional Testing](examples/basic/functional_testing.py)** - Test core functionality in your environment +- **[Installation & Setup](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/basic/installation_example.py)** - Validate installation and basic usage patterns +- **[Functional Testing](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/basic/functional_testing.py)** - Test core functionality in your environment **🚀 Advanced Usage:** -- **[Complete Walkthrough](examples/advanced/walkthrough.py)** - Full feature demonstration with production patterns -- **[File Upload](examples/advanced/file_upload.py)** - Upload files to Dataverse file columns +- **[Complete Walkthrough](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/advanced/walkthrough.py)** - Full feature demonstration with production patterns +- **[File Upload](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/advanced/file_upload.py)** - Upload files to Dataverse file columns -📖 See the [examples README](examples/README.md) for detailed guidance and learning progression. +📖 See the [examples README](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/README.md) for detailed guidance and learning progression. ### Additional documentation diff --git a/examples/advanced/walkthrough.py b/examples/advanced/walkthrough.py index 201196c..c8a5c63 100644 --- a/examples/advanced/walkthrough.py +++ b/examples/advanced/walkthrough.py @@ -79,7 +79,7 @@ def main(): print(f" Logical Name: {table_info.get('table_logical_name')}") print(f" Entity Set: {table_info.get('entity_set_name')}") else: - log_call(f"client.create_table('{table_name}', schema={{...}})") + log_call(f"client.create_table('{table_name}', columns={{...}})") columns = { "new_Title": "string", "new_Quantity": "int",