surfdataverse 1.1.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
@@ -0,0 +1,38 @@
1
+ """
2
+ SurfDataverse - A Python package for Microsoft Dataverse integration
3
+
4
+ This package provides a clean, object-oriented interface for connecting to,
5
+ reading from, and writing to Microsoft Dataverse environments.
6
+
7
+ Main Components:
8
+ - DataverseClient: Authentication and connection management
9
+ - DataverseRow: Base class for entity operations
10
+ - Entity classes: Article, Recipe, Ingredient, etc.
11
+ """
12
+
13
+ from .core import DataverseClient, DataverseTable
14
+ from .exceptions import (
15
+ AuthenticationError,
16
+ ConfigurationError,
17
+ ConnectionError,
18
+ DataverseAPIError,
19
+ EntityError,
20
+ SurfDataverseError,
21
+ ValidationError,
22
+ )
23
+ from .tables import Tables
24
+
25
+ __author__ = "Friedemann Heinz"
26
+
27
+ __all__ = [
28
+ "DataverseClient",
29
+ "DataverseTable",
30
+ "Tables",
31
+ "SurfDataverseError",
32
+ "AuthenticationError",
33
+ "ConnectionError",
34
+ "ConfigurationError",
35
+ "DataverseAPIError",
36
+ "EntityError",
37
+ "ValidationError",
38
+ ]