Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ All notable changes to this project will be documented in this file.
**Table Management:**
- Table metadata operations (create, inspect, delete custom tables)

**Integration & Analysis:**
- Pandas DataFrame integration for seamless data analysis workflows

**Reliability & Error Handling:**
- Comprehensive error handling with specific exception types (`DataverseError`, `AuthenticationError`, etc.)
- HTTP retry logic with exponential backoff for resilient operations
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ A Python client library for Microsoft Dataverse that provides a unified interfac
- **📎 File Operations**: Upload files to Dataverse file columns with automatic chunking for large files
- **🔐 Azure Identity**: Built-in authentication using Azure Identity credential providers with comprehensive support
- **🛡️ Error Handling**: Structured exception hierarchy with detailed error context and retry guidance
- **🐼 Pandas Integration**: Preliminary DataFrame-oriented operations for data analysis workflows

## Getting started

Expand Down Expand Up @@ -264,7 +263,6 @@ Explore our comprehensive examples in the [`examples/`](examples/) directory:
**🚀 Advanced Usage:**
- **[Complete Walkthrough](examples/advanced/complete_walkthrough.py)** - Full feature demonstration with production patterns
- **[File Upload](examples/advanced/file_upload.py)** - Upload files to Dataverse file columns
- **[Pandas Integration](examples/advanced/pandas_integration.py)** - DataFrame-based operations for data analysis

📖 See the [examples README](examples/README.md) for detailed guidance and learning progression.

Expand Down
5 changes: 1 addition & 4 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Start here for getting up and running with the SDK:
### 🔬 Advanced Examples (`advanced/`)
Deep-dive into production-ready patterns and specialized functionality:

- **`complete_walkthrough.py`** - **COMPREHENSIVE DEMO** 🚀
- **`walkthrough.py`** - **COMPREHENSIVE DEMO** 🚀
- Full SDK feature demonstration with production-ready patterns
- Table creation with custom schemas and enums
- Single and bulk CRUD operations with error handling
Expand All @@ -44,9 +44,6 @@ Deep-dive into production-ready patterns and specialized functionality:
- File upload to Dataverse file columns with chunking
- Advanced file handling patterns

- **`pandas_integration.py`** - **DATA ANALYSIS** 📊
- DataFrame-based operations for data analysis
- Pandas integration patterns

## 🚀 Getting Started

Expand Down
242 changes: 0 additions & 242 deletions examples/advanced/pandas_integration.py

This file was deleted.

3 changes: 0 additions & 3 deletions examples/basic/installation_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ def validate_imports():
from PowerPlatform.Dataverse.core.config import DataverseConfig
print(f" ✅ Core config: DataverseConfig")

from PowerPlatform.Dataverse.utils.pandas_adapter import PandasODataClient
print(f" ✅ Utils: PandasODataClient")

from PowerPlatform.Dataverse.data.odata import ODataClient
print(f" ✅ Data layer: ODataClient")

Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ dependencies = [
"azure-identity>=1.17.0",
"azure-core>=1.30.2",
"requests>=2.32.0",
"pandas>=2.2.0",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion src/PowerPlatform/Dataverse/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""
Utilities and adapters for the Dataverse SDK.

This module contains adapters (like Pandas integration).
Placeholder module for future utility adapters.
"""

__all__ = []
Loading
Loading