atlan-application-sdk 0.1.1rc60__py3-none-any.whl → 0.1.1rc61__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.
@@ -51,7 +51,9 @@ SQL_SERVER_MIN_VERSION = os.getenv("ATLAN_SQL_SERVER_MIN_VERSION")
51
51
  SQL_QUERIES_PATH = os.getenv("ATLAN_SQL_QUERIES_PATH", "app/sql")
52
52
 
53
53
  # Output Path Constants
54
- #: Output path format for workflows (example: objectstore://bucket/artifacts/apps/{application_name}/workflows/{workflow_id}/{workflow_run_id})
54
+ #: Output path format for workflows.
55
+ #:
56
+ #: Example: objectstore://bucket/artifacts/apps/{application_name}/workflows/{workflow_id}/{workflow_run_id}
55
57
  WORKFLOW_OUTPUT_PATH_TEMPLATE = (
56
58
  "artifacts/apps/{application_name}/workflows/{workflow_id}/{run_id}"
57
59
  )
@@ -68,7 +70,9 @@ CLEANUP_BASE_PATHS = [
68
70
  ]
69
71
 
70
72
  # State Store Constants
71
- #: Path template for state store files (example: objectstore://bucket/persistent-artifacts/apps/{application_name}/{state_type}/{id}/config.json)
73
+ #: Path template for state store files.
74
+ #:
75
+ #: Example: objectstore://bucket/persistent-artifacts/apps/{application_name}/{state_type}/{id}/config.json
72
76
  STATE_STORE_PATH_TEMPLATE = (
73
77
  "persistent-artifacts/apps/{application_name}/{state_type}/{id}/config.json"
74
78
  )
@@ -147,7 +151,9 @@ WORKER_START_EVENT_VERSION = "v1"
147
151
  #: Whether to enable Atlan storage upload
148
152
  ENABLE_ATLAN_UPLOAD = os.getenv("ENABLE_ATLAN_UPLOAD", "false").lower() == "true"
149
153
  # Dapr Client Configuration
150
- #: Maximum gRPC message length in bytes for Dapr client (default: 100MB)
154
+ #: Maximum gRPC message length in bytes for Dapr client.
155
+ #:
156
+ #: Default: 100MB
151
157
  DAPR_MAX_GRPC_MESSAGE_LENGTH = int(
152
158
  os.getenv("DAPR_MAX_GRPC_MESSAGE_LENGTH", "104857600")
153
159
  )
@@ -250,9 +256,9 @@ REDIS_HOST = os.getenv("REDIS_HOST", "")
250
256
  REDIS_PORT = os.getenv("REDIS_PORT", "")
251
257
  #: Redis password (required for authenticated Redis instances)
252
258
  REDIS_PASSWORD = os.getenv("REDIS_PASSWORD")
253
- #: Redis Sentinel service name (default: mymaster)
259
+ #: Redis Sentinel service name. Default: mymaster
254
260
  REDIS_SENTINEL_SERVICE_NAME = os.getenv("REDIS_SENTINEL_SERVICE_NAME", "mymaster")
255
- #: Redis Sentinel hosts (comma-separated host:port pairs)
261
+ #: Redis Sentinel hosts as comma-separated host:port pairs
256
262
  REDIS_SENTINEL_HOSTS = os.getenv("REDIS_SENTINEL_HOSTS", "")
257
263
  #: Whether to enable strict locking
258
264
  IS_LOCKING_DISABLED = os.getenv("IS_LOCKING_DISABLED", "true").lower() == "true"
@@ -2,4 +2,4 @@
2
2
  Version information for the application_sdk package.
3
3
  """
4
4
 
5
- __version__ = "0.1.1rc60"
5
+ __version__ = "0.1.1rc61"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: atlan-application-sdk
3
- Version: 0.1.1rc60
3
+ Version: 0.1.1rc61
4
4
  Summary: Atlan Application SDK is a Python library for developing applications on the Atlan Platform
5
5
  Project-URL: Repository, https://github.com/atlanhq/application-sdk
6
6
  Project-URL: Documentation, https://github.com/atlanhq/application-sdk/README.md
@@ -22,7 +22,7 @@ Requires-Python: >=3.11
22
22
  Requires-Dist: aiohttp>=3.10.0
23
23
  Requires-Dist: duckdb-engine>=0.17.0
24
24
  Requires-Dist: duckdb>=1.1.3
25
- Requires-Dist: fastapi[standard]>=0.115.0
25
+ Requires-Dist: fastapi[standard]==0.120.2
26
26
  Requires-Dist: loguru>=0.7.3
27
27
  Requires-Dist: opentelemetry-exporter-otlp>=1.27.0
28
28
  Requires-Dist: psutil>=7.0.0
@@ -1,6 +1,6 @@
1
1
  application_sdk/__init__.py,sha256=2e2mvmLJ5dxmJGPELtb33xwP-j6JMdoIuqKycEn7hjg,151
2
- application_sdk/constants.py,sha256=ySrjME6CSoiyjVLgQt0s4dIdgJ0JWIMmMs7WBZBVUpA,11013
3
- application_sdk/version.py,sha256=2aOWC-Y08sXYBsPMJehGpskX5CTH1TNdtzY-QR-Ub8o,88
2
+ application_sdk/constants.py,sha256=XCRJRiug2GXgeeVZu3Mp1QavRw54bWtzxIZ2l1bIkkA,11028
3
+ application_sdk/version.py,sha256=CEakpB1d62-VZEzrOEEq4LSV4f0w3c23I9GOWtTnui8,88
4
4
  application_sdk/worker.py,sha256=i5f0AeKI39IfsLO05QkwC6uMz0zDPSJqP7B2byri1VI,7489
5
5
  application_sdk/activities/__init__.py,sha256=L5WXkTwOwGtjWAlXrUJRCKGwyIyp3z8fBv8BZVCRFQI,11175
6
6
  application_sdk/activities/lock_management.py,sha256=6Wdf3jMKitoarHQP91PIJOoGFz4aaOLS_40c7n1yAOA,3902
@@ -157,8 +157,8 @@ application_sdk/workflows/metadata_extraction/__init__.py,sha256=jHUe_ZBQ66jx8bg
157
157
  application_sdk/workflows/metadata_extraction/sql.py,sha256=6ZaVt84n-8U2ZvR9GR7uIJKv5v8CuyQjhlnoRJvDszc,12435
158
158
  application_sdk/workflows/query_extraction/__init__.py,sha256=n066_CX5RpJz6DIxGMkKS3eGSRg03ilaCtsqfJWQb7Q,117
159
159
  application_sdk/workflows/query_extraction/sql.py,sha256=kT_JQkLCRZ44ZpaC4QvPL6DxnRIIVh8gYHLqRbMI-hA,4826
160
- atlan_application_sdk-0.1.1rc60.dist-info/METADATA,sha256=vbNpysrGHIBYdJGSe-s8V3km-Amr5xeXIbGunIDHnnI,5730
161
- atlan_application_sdk-0.1.1rc60.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
162
- atlan_application_sdk-0.1.1rc60.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
163
- atlan_application_sdk-0.1.1rc60.dist-info/licenses/NOTICE,sha256=A-XVVGt3KOYuuMmvSMIFkg534F1vHiCggEBp4Ez3wGk,1041
164
- atlan_application_sdk-0.1.1rc60.dist-info/RECORD,,
160
+ atlan_application_sdk-0.1.1rc61.dist-info/METADATA,sha256=sRo4wQ9dNcScMKLwS0nqbceTkr-pbE5rr8voxSMRoqo,5730
161
+ atlan_application_sdk-0.1.1rc61.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
162
+ atlan_application_sdk-0.1.1rc61.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
163
+ atlan_application_sdk-0.1.1rc61.dist-info/licenses/NOTICE,sha256=A-XVVGt3KOYuuMmvSMIFkg534F1vHiCggEBp4Ez3wGk,1041
164
+ atlan_application_sdk-0.1.1rc61.dist-info/RECORD,,