Awesome-omni-skill dataverse-python

dataverse-python guidelines Triggers on: **

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

Dataverse SDK for Python — Getting Started

  • Install the Dataverse Python SDK and prerequisites.
  • Configure environment variables for Dataverse tenant, client ID, secret, and resource URL.
  • Use the SDK to authenticate via OAuth and perform CRUD operations.

Setup

  • Python 3.10+
  • Recommended: virtual environment

Install

pip install dataverse-sdk

Auth Basics

  • Use OAuth with Azure AD app registration.
  • Store secrets in
    .env
    and load via
    python-dotenv
    .

Common Tasks

  • Query tables
  • Create/update rows
  • Batch operations
  • Handle pagination and throttling

Tips

  • Reuse clients; avoid frequent re-auth.
  • Add retries for transient failures.
  • Log requests for troubleshooting.