Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion examples/advanced/walkthrough.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading