Dataverse-Python-File-Operations
Dataverse-Python-File-Operations是一款code方向的AI技能,核心价值是# Dataverse SDK for Python - File Operations & Practical Examples ## Overview Complete guide to file upload operations, chunking strategies, and practical real-world examples using the PowerPlatform-,可用于解决开发者在code领域的实际问题,帮助用户提升效率、自动化重复任务或优化工作流。
# Dataverse SDK for Python - File Operations & Practical Examples ## Overview Complete guide to file upload operations, chunking strategies, and practical real-world examples using the PowerPlatform-
mkdir -p ./skills/dataverse-python-file-operations && curl -sfL https://raw.githubusercontent.com/github/awesome-copilot/main/skills/dataverse-python-file-operations/SKILL.md -o ./skills/dataverse-python-file-operations/SKILL.md Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).
Skill Content
# Dataverse SDK for Python - File Operations & Practical Examples
Overview
Complete guide to file upload operations, chunking strategies, and practical real-world examples using the PowerPlatform-DataverseClient-Python SDK.
---
1. File Upload Fundamentals
Small File Upload (< 128 MB)
from pathlib import Path
from PowerPlatform.Dataverse.client import DataverseClient
file_path = Path("document.pdf")
record_id = "account-guid"
# Single PATCH upload for small files
response = client.upload_file(
table_name="account",
record_id=record_id,
file_column_name="new_documentfile",
file_path=file_path
)
print(f"Upload successful: {response}")**When to use:** Documents, images, PDFs under 128 MB
Large File Upload with Chunking
from pathlib import Path
file_path = Path("large_video.mp4")
record_id = "account-guid"
# SDK automatically handles chunking for large files
response = client.upload_file(
table_name="account",
record_id=record_id,
file_column_name="new_videofile",
file_path=file_path,
chunk_size=4 * 1024 * 1024 # 4 MB chunks
)
print("Chunked upload complete")**When to use:** Large videos, databases, archives > 128 MB
Upload with Progress Tracking
import hashlib
from pathlib import Path
def calculate_file_hash(file_path):
"""Calculate SHA-256 hash of file."""
hash_obj = hashlib.sha256()
with open(file_path, 'rb') as f:
for chunk in iter(lambda: f.read(1024*1024), b''):
hash_obj.update(chunk)
return hash_obj.hexdigest()
def upload_with_tracking(client, table_name, record_id, column_name, file_path):
"""Upload file with validation tracking."""
file_path = Path(file_path)
file_size = file_path.stat().st_size
print(f"Starting upload: {file_path.name} ({file_size / 1024 / 1024:.2f} MB)")
# Calculate hash before upload
original_hash = calculate_file_hash(file_path)
print(f"File hash: {original_hash}")
# Perform upload
response = client.upload_file(
table_name=table_name,
record_id=record_id,
file_column_name=column_name,
file_path=file_path
)
print(f"✓ Upload complete")
return response
# Usage
upload_with_tracking(client, "account", account_id, "new_documentfile", "report.pdf")---
2. Upload Strategies & Configuration
Automatic Chunking Decision
def upload_file_smart(client, table_name, record_id, column_name, file_path):
"""Upload with automatic strategy selection."""
file_path = Path(file_path)
file_size = file_path.stat().st_size
max_single_patch = 128 * 1024 * 1024 # 128 MB
if file_size <= max_single_patch:
print(f"Using single PATCH (file < 128 MB)")
chunk_size = None # SDK will use single request
else:
print(f"Using chunked upload (file > 128 MB)")
chunk_size = 4 * 1024 * 1024 # 4 MB chunks
response = client.upload_file(
table_name=table_name,
record_id=record_id,
file_column_name=column_name,
file_path=file_path,
chunk_size=chunk_size
)
return response
# Usage
upload_file_smart(client, "account", account_id, "new_largemedifile", "video.mp4")Batch File Uploads
from pathlib import Path
from PowerPlatform.Dataverse.core.errors import HttpError
def batch_upload_files(client, table_name, record_id, files_dict):
"""
Upload multiple files to different columns of same record.
Args:
table_name: Table name
record_id: Record ID
files_dict: {"column_name": "file_path", ...}
Returns:
{"success": [...], "failed": [...]}
"""
results = {"success": [], "failed": []}
for column_name, file_path in files_dict.items():
try:
print(f"Uploading {Path(file_path).name} to {column_name}...")
response = client.upload_file(
tab🎯 Best For
- UI designers
- Product designers
- Claude users
- GitHub Copilot users
- Software engineers
💡 Use Cases
- Generating component mockups
- Creating design system tokens
- Python code quality enforcement
- Dependency management
📖 How to Use This Skill
- 1
Install the Skill
Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.
- 2
Load into Your AI Assistant
Open Claude or GitHub Copilot and reference the skill. Paste the SKILL.md content or use the system prompt tab.
- 3
Apply Dataverse-Python-File-Operations to Your Work
Open your project in the AI assistant and ask it to apply the skill. Start with a small module to verify the output quality.
- 4
Review and Refine
Review AI suggestions before committing. Run tests, check for regressions, and iterate on the skill output.
❓ Frequently Asked Questions
Does this work with Figma?
Some design skills integrate with Figma plugins. Check the Works With section for supported tools.
Is Dataverse-Python-File-Operations compatible with Cursor and VS Code?
Yes — this skill works with any AI coding assistant including Cursor, VS Code with Copilot, and JetBrains IDEs.
Do I need specific dependencies for Dataverse-Python-File-Operations?
Check the install command and Works With section. Most code skills only require the AI assistant and your codebase.
How do I install Dataverse-Python-File-Operations?
Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/dataverse-python-file-operations/SKILL.md, ready to use.
Can I customize this skill for my team?
Absolutely. Edit the SKILL.md file to add team-specific instructions, examples, or workflows.
⚠️ Common Mistakes to Avoid
Skipping usability testing
AI-generated designs should be validated with real users before development.
Skipping validation
Always test AI-generated code changes, even for simple refactors.
Missing dependency updates
Check if the skill requires updated dependencies or new packages.