Skip to content

Commit b6ed3cd

Browse files
author
Max Wang
committed
fix for links on pypi and update walkthrough schema -> columns
1 parent 1394b88 commit b6ed3cd

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -254,17 +254,17 @@ client.upload_file(
254254

255255
### More sample code
256256

257-
Explore our comprehensive examples in the [`examples/`](examples/) directory:
257+
Explore our comprehensive examples in the [`examples/`](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/tree/main/examples) directory:
258258

259259
**🌱 Getting Started:**
260-
- **[Installation & Setup](examples/basic/installation_example.py)** - Validate installation and basic usage patterns
261-
- **[Functional Testing](examples/basic/functional_testing.py)** - Test core functionality in your environment
260+
- **[Installation & Setup](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/basic/installation_example.py)** - Validate installation and basic usage patterns
261+
- **[Functional Testing](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/basic/functional_testing.py)** - Test core functionality in your environment
262262

263263
**πŸš€ Advanced Usage:**
264-
- **[Complete Walkthrough](examples/advanced/walkthrough.py)** - Full feature demonstration with production patterns
265-
- **[File Upload](examples/advanced/file_upload.py)** - Upload files to Dataverse file columns
264+
- **[Complete Walkthrough](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/advanced/walkthrough.py)** - Full feature demonstration with production patterns
265+
- **[File Upload](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/advanced/file_upload.py)** - Upload files to Dataverse file columns
266266

267-
πŸ“– See the [examples README](examples/README.md) for detailed guidance and learning progression.
267+
πŸ“– See the [examples README](https://github.com/microsoft/PowerPlatform-DataverseClient-Python/blob/main/examples/README.md) for detailed guidance and learning progression.
268268

269269
### Additional documentation
270270

β€Žexamples/advanced/walkthrough.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def main():
7979
print(f" Logical Name: {table_info.get('table_logical_name')}")
8080
print(f" Entity Set: {table_info.get('entity_set_name')}")
8181
else:
82-
log_call(f"client.create_table('{table_name}', schema={{...}})")
82+
log_call(f"client.create_table('{table_name}', columns={{...}})")
8383
columns = {
8484
"new_Title": "string",
8585
"new_Quantity": "int",

0 commit comments

Comments
Β (0)