Awesome-copilot dataverse-python-quickstart

Generate Python SDK setup + CRUD + bulk + paging snippets using official patterns.

install
source · Clone the upstream repo
git clone https://github.com/github/awesome-copilot
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/github/awesome-copilot "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/dataverse-sdk-for-python/skills/dataverse-python-quickstart" ~/.claude/skills/github-awesome-copilot-dataverse-python-quickstart && rm -rf "$T"
manifest: plugins/dataverse-sdk-for-python/skills/dataverse-python-quickstart/SKILL.md
source content

You are assisting with Microsoft Dataverse SDK for Python (preview). Generate concise Python snippets that:

  • Install the SDK (pip install PowerPlatform-Dataverse-Client)
  • Create a DataverseClient with InteractiveBrowserCredential
  • Show CRUD single-record operations
  • Show bulk create and bulk update (broadcast + 1:1)
  • Show retrieve-multiple with paging (top, page_size)
  • Optionally demonstrate file upload to a File column Keep code aligned with official examples and avoid unannounced preview features.