Skip to content

Commit a7965a0

Browse files
committed
Fix broken example file references in README.md
- Update quickstart.py references to examples/advanced/complete_walkthrough.py - Update quickstart_file_upload.py reference to examples/advanced/file_upload.py - Update quickstart_pandas.py reference to examples/advanced/pandas_integration.py - All references now point to existing files in the current directory structure
1 parent 3f3dad6 commit a7965a0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,21 +89,21 @@ client = DataverseClient(base_url=base_url, credential=credential)
8989

9090
## Quickstart
9191

92-
Edit `examples/quickstart.py` and run:
92+
For a comprehensive walkthrough, edit `examples/advanced/complete_walkthrough.py` and run:
9393

9494
```powershell
95-
python examples/quickstart.py
95+
python examples/advanced/complete_walkthrough.py
9696
```
9797

98-
The quickstart demonstrates:
98+
The walkthrough demonstrates:
9999
- Creating a simple custom table (metadata APIs)
100100
- Creating, reading, updating, and deleting records (OData)
101101
- Bulk create (CreateMultiple) to insert many records in one call
102102
- Bulk update via unified `update` (multi-ID broadcast & per‑record patches)
103103
- Retrieve multiple with paging (`$top` vs `page_size`)
104104
- Executing a read-only SQL query (Web API `?sql=`)
105105

106-
For upload files functionalities, run quickstart_file_upload.py instead
106+
For upload files functionalities, run `examples/advanced/file_upload.py` instead
107107

108108
## Examples
109109

@@ -343,7 +343,7 @@ Notes:
343343

344344
### Pandas helpers
345345

346-
`PandasODataClient` is a thin wrapper around the low-level client. All methods accept logical (singular) names (e.g. `account`, `new_sampleitem`), not entity set (plural) names. See `examples/quickstart_pandas.py` for a DataFrame workflow.
346+
`PandasODataClient` is a thin wrapper around the low-level client. All methods accept logical (singular) names (e.g. `account`, `new_sampleitem`), not entity set (plural) names. See `examples/advanced/pandas_integration.py` for a DataFrame workflow.
347347

348348
VS Code Tasks
349349
- Install deps: `Install deps (pip)`

0 commit comments

Comments
 (0)