ttd-data 0.0.1__tar.gz

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.
Files changed (59) hide show
  1. ttd_data-0.0.1/PKG-INFO +454 -0
  2. ttd_data-0.0.1/README-PYPI.md +441 -0
  3. ttd_data-0.0.1/README.md +441 -0
  4. ttd_data-0.0.1/pyproject.toml +54 -0
  5. ttd_data-0.0.1/setup.cfg +4 -0
  6. ttd_data-0.0.1/src/ttd_data/__init__.py +17 -0
  7. ttd_data-0.0.1/src/ttd_data/_hooks/__init__.py +5 -0
  8. ttd_data-0.0.1/src/ttd_data/_hooks/registration.py +13 -0
  9. ttd_data-0.0.1/src/ttd_data/_hooks/sdkhooks.py +76 -0
  10. ttd_data-0.0.1/src/ttd_data/_hooks/types.py +112 -0
  11. ttd_data-0.0.1/src/ttd_data/_version.py +15 -0
  12. ttd_data-0.0.1/src/ttd_data/advertiser.py +244 -0
  13. ttd_data-0.0.1/src/ttd_data/basesdk.py +380 -0
  14. ttd_data-0.0.1/src/ttd_data/errors/__init__.py +42 -0
  15. ttd_data-0.0.1/src/ttd_data/errors/advertiserdataserverresponse_error.py +43 -0
  16. ttd_data-0.0.1/src/ttd_data/errors/apierror.py +40 -0
  17. ttd_data-0.0.1/src/ttd_data/errors/dataerror.py +30 -0
  18. ttd_data-0.0.1/src/ttd_data/errors/no_response_error.py +17 -0
  19. ttd_data-0.0.1/src/ttd_data/errors/responsevalidationerror.py +27 -0
  20. ttd_data-0.0.1/src/ttd_data/errors/ttddataerror.py +30 -0
  21. ttd_data-0.0.1/src/ttd_data/httpclient.py +125 -0
  22. ttd_data-0.0.1/src/ttd_data/models/__init__.py +79 -0
  23. ttd_data-0.0.1/src/ttd_data/models/advertiserdata.py +88 -0
  24. ttd_data-0.0.1/src/ttd_data/models/advertiserdataitem.py +134 -0
  25. ttd_data-0.0.1/src/ttd_data/models/advertiserdatarequest.py +56 -0
  26. ttd_data-0.0.1/src/ttd_data/models/advertiserdataresponseerrorcode.py +18 -0
  27. ttd_data-0.0.1/src/ttd_data/models/advertiserdataserverresponse.py +54 -0
  28. ttd_data-0.0.1/src/ttd_data/models/advertiserdataserverresponseline.py +61 -0
  29. ttd_data-0.0.1/src/ttd_data/models/httpmetadata.py +23 -0
  30. ttd_data-0.0.1/src/ttd_data/models/ingestadvertiserdataop.py +89 -0
  31. ttd_data-0.0.1/src/ttd_data/py.typed +1 -0
  32. ttd_data-0.0.1/src/ttd_data/sdk.py +164 -0
  33. ttd_data-0.0.1/src/ttd_data/sdkconfiguration.py +47 -0
  34. ttd_data-0.0.1/src/ttd_data/types/__init__.py +21 -0
  35. ttd_data-0.0.1/src/ttd_data/types/basemodel.py +77 -0
  36. ttd_data-0.0.1/src/ttd_data/utils/__init__.py +175 -0
  37. ttd_data-0.0.1/src/ttd_data/utils/annotations.py +79 -0
  38. ttd_data-0.0.1/src/ttd_data/utils/datetimes.py +23 -0
  39. ttd_data-0.0.1/src/ttd_data/utils/dynamic_imports.py +54 -0
  40. ttd_data-0.0.1/src/ttd_data/utils/enums.py +134 -0
  41. ttd_data-0.0.1/src/ttd_data/utils/eventstreaming.py +280 -0
  42. ttd_data-0.0.1/src/ttd_data/utils/forms.py +234 -0
  43. ttd_data-0.0.1/src/ttd_data/utils/headers.py +136 -0
  44. ttd_data-0.0.1/src/ttd_data/utils/logger.py +27 -0
  45. ttd_data-0.0.1/src/ttd_data/utils/metadata.py +118 -0
  46. ttd_data-0.0.1/src/ttd_data/utils/queryparams.py +217 -0
  47. ttd_data-0.0.1/src/ttd_data/utils/requestbodies.py +66 -0
  48. ttd_data-0.0.1/src/ttd_data/utils/retries.py +271 -0
  49. ttd_data-0.0.1/src/ttd_data/utils/security.py +176 -0
  50. ttd_data-0.0.1/src/ttd_data/utils/serializers.py +229 -0
  51. ttd_data-0.0.1/src/ttd_data/utils/unmarshal_json_response.py +38 -0
  52. ttd_data-0.0.1/src/ttd_data/utils/url.py +155 -0
  53. ttd_data-0.0.1/src/ttd_data/utils/values.py +137 -0
  54. ttd_data-0.0.1/src/ttd_data.egg-info/PKG-INFO +454 -0
  55. ttd_data-0.0.1/src/ttd_data.egg-info/SOURCES.txt +57 -0
  56. ttd_data-0.0.1/src/ttd_data.egg-info/dependency_links.txt +1 -0
  57. ttd_data-0.0.1/src/ttd_data.egg-info/requires.txt +3 -0
  58. ttd_data-0.0.1/src/ttd_data.egg-info/top_level.txt +2 -0
  59. ttd_data-0.0.1/src/ttd_data_python/_hooks/registration.py +13 -0
@@ -0,0 +1,454 @@
1
+ Metadata-Version: 2.4
2
+ Name: ttd-data
3
+ Version: 0.0.1
4
+ Summary: Python Client SDK for TTD Data API.
5
+ Author: Speakeasy
6
+ License: map[name:The MIT License (MIT) shortName:MIT url:https://mit-license.org/]
7
+ Project-URL: repository, https://github.com/thetradedesk/ttd-data-python.git
8
+ Requires-Python: >=3.10
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: httpcore>=1.0.9
11
+ Requires-Dist: httpx>=0.28.1
12
+ Requires-Dist: pydantic>=2.11.2
13
+
14
+ # ttd-data
15
+
16
+ Developer-friendly & type-safe Python SDK specifically catered to leverage *ttd-data* API.
17
+
18
+ [![Built by Speakeasy](https://img.shields.io/badge/Built_by-SPEAKEASY-374151?style=for-the-badge&labelColor=f3f4f6)](https://www.speakeasy.com/?utm_source=ttd-data&utm_campaign=python)
19
+ [![License: MIT](https://img.shields.io/badge/LICENSE_//_MIT-3b5bdb?style=for-the-badge&labelColor=eff6ff)](https://mit-license.org/)
20
+
21
+
22
+ <br /><br />
23
+ > [!IMPORTANT]
24
+ > This SDK is not yet ready for production use. To complete setup please follow the steps outlined in your [workspace](https://app.speakeasy.com/org/thetradedesk/data-api). Delete this section before > publishing to a package manager.
25
+
26
+ <!-- Start Summary [summary] -->
27
+ ## Summary
28
+
29
+
30
+ <!-- End Summary [summary] -->
31
+
32
+ <!-- Start Table of Contents [toc] -->
33
+ ## Table of Contents
34
+ <!-- $toc-max-depth=2 -->
35
+ * [ttd-data](https://github.com/thetradedesk/ttd-data-python/blob/master/#ttd-data)
36
+ * [SDK Installation](https://github.com/thetradedesk/ttd-data-python/blob/master/#sdk-installation)
37
+ * [IDE Support](https://github.com/thetradedesk/ttd-data-python/blob/master/#ide-support)
38
+ * [SDK Example Usage](https://github.com/thetradedesk/ttd-data-python/blob/master/#sdk-example-usage)
39
+ * [Available Resources and Operations](https://github.com/thetradedesk/ttd-data-python/blob/master/#available-resources-and-operations)
40
+ * [Retries](https://github.com/thetradedesk/ttd-data-python/blob/master/#retries)
41
+ * [Error Handling](https://github.com/thetradedesk/ttd-data-python/blob/master/#error-handling)
42
+ * [Server Selection](https://github.com/thetradedesk/ttd-data-python/blob/master/#server-selection)
43
+ * [Custom HTTP Client](https://github.com/thetradedesk/ttd-data-python/blob/master/#custom-http-client)
44
+ * [Resource Management](https://github.com/thetradedesk/ttd-data-python/blob/master/#resource-management)
45
+ * [Debugging](https://github.com/thetradedesk/ttd-data-python/blob/master/#debugging)
46
+ * [Development](https://github.com/thetradedesk/ttd-data-python/blob/master/#development)
47
+ * [Maturity](https://github.com/thetradedesk/ttd-data-python/blob/master/#maturity)
48
+ * [Contributions](https://github.com/thetradedesk/ttd-data-python/blob/master/#contributions)
49
+
50
+ <!-- End Table of Contents [toc] -->
51
+
52
+ <!-- Start SDK Installation [installation] -->
53
+ ## SDK Installation
54
+
55
+ > [!NOTE]
56
+ > **Python version upgrade policy**
57
+ >
58
+ > Once a Python version reaches its [official end of life date](https://devguide.python.org/versions/), a 3-month grace period is provided for users to upgrade. Following this grace period, the minimum python version supported in the SDK will be updated.
59
+
60
+ The SDK can be installed with *uv*, *pip*, or *poetry* package managers.
61
+
62
+ ### uv
63
+
64
+ *uv* is a fast Python package installer and resolver, designed as a drop-in replacement for pip and pip-tools. It's recommended for its speed and modern Python tooling capabilities.
65
+
66
+ ```bash
67
+ uv add ttd-data
68
+ ```
69
+
70
+ ### PIP
71
+
72
+ *PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
73
+
74
+ ```bash
75
+ pip install ttd-data
76
+ ```
77
+
78
+ ### Poetry
79
+
80
+ *Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.
81
+
82
+ ```bash
83
+ poetry add ttd-data
84
+ ```
85
+
86
+ ### Shell and script usage with `uv`
87
+
88
+ You can use this SDK in a Python shell with [uv](https://docs.astral.sh/uv/) and the `uvx` command that comes with it like so:
89
+
90
+ ```shell
91
+ uvx --from ttd-data python
92
+ ```
93
+
94
+ It's also possible to write a standalone Python script without needing to set up a whole project like so:
95
+
96
+ ```python
97
+ #!/usr/bin/env -S uv run --script
98
+ # /// script
99
+ # requires-python = ">=3.10"
100
+ # dependencies = [
101
+ # "ttd-data",
102
+ # ]
103
+ # ///
104
+
105
+ from ttd_data import DataClient
106
+
107
+ sdk = DataClient(
108
+ # SDK arguments
109
+ )
110
+
111
+ # Rest of script here...
112
+ ```
113
+
114
+ Once that is saved to a file, you can run it with `uv run script.py` where
115
+ `script.py` can be replaced with the actual file name.
116
+ <!-- End SDK Installation [installation] -->
117
+
118
+ <!-- Start IDE Support [idesupport] -->
119
+ ## IDE Support
120
+
121
+ ### PyCharm
122
+
123
+ Generally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.
124
+
125
+ - [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
126
+ <!-- End IDE Support [idesupport] -->
127
+
128
+ <!-- Start SDK Example Usage [usage] -->
129
+ ## SDK Example Usage
130
+
131
+ ### Example
132
+
133
+ ```python
134
+ # Synchronous Example
135
+ from ttd_data import DataClient
136
+
137
+
138
+ with DataClient() as data_client:
139
+
140
+ res = data_client.advertiser.ingest_advertiser_data(advertiser_id="<id>")
141
+
142
+ assert res.advertiser_data_server_response is not None
143
+
144
+ # Handle response
145
+ print(res.advertiser_data_server_response)
146
+ ```
147
+
148
+ </br>
149
+
150
+ The same SDK client can also be used to make asynchronous requests by importing asyncio.
151
+
152
+ ```python
153
+ # Asynchronous Example
154
+ import asyncio
155
+ from ttd_data import DataClient
156
+
157
+ async def main():
158
+
159
+ async with DataClient() as data_client:
160
+
161
+ res = await data_client.advertiser.ingest_advertiser_data_async(advertiser_id="<id>")
162
+
163
+ assert res.advertiser_data_server_response is not None
164
+
165
+ # Handle response
166
+ print(res.advertiser_data_server_response)
167
+
168
+ asyncio.run(main())
169
+ ```
170
+ <!-- End SDK Example Usage [usage] -->
171
+
172
+ <!-- Start Available Resources and Operations [operations] -->
173
+ ## Available Resources and Operations
174
+
175
+ <details open>
176
+ <summary>Available methods</summary>
177
+
178
+ ### [Advertiser](https://github.com/thetradedesk/ttd-data-python/blob/master/docs/sdks/advertiser/README.md)
179
+
180
+ * [ingest_advertiser_data](https://github.com/thetradedesk/ttd-data-python/blob/master/docs/sdks/advertiser/README.md#ingest_advertiser_data) - Upload first-party data for the specified ID for use in audience targeting.
181
+
182
+ </details>
183
+ <!-- End Available Resources and Operations [operations] -->
184
+
185
+ <!-- Start Retries [retries] -->
186
+ ## Retries
187
+
188
+ Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
189
+
190
+ To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:
191
+ ```python
192
+ from ttd_data import DataClient
193
+ from ttd_data.utils import BackoffStrategy, RetryConfig
194
+
195
+
196
+ with DataClient() as data_client:
197
+
198
+ res = data_client.advertiser.ingest_advertiser_data(advertiser_id="<id>",
199
+ RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
200
+
201
+ assert res.advertiser_data_server_response is not None
202
+
203
+ # Handle response
204
+ print(res.advertiser_data_server_response)
205
+
206
+ ```
207
+
208
+ If you'd like to override the default retry strategy for all operations that support retries, you can use the `retry_config` optional parameter when initializing the SDK:
209
+ ```python
210
+ from ttd_data import DataClient
211
+ from ttd_data.utils import BackoffStrategy, RetryConfig
212
+
213
+
214
+ with DataClient(
215
+ retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
216
+ ) as data_client:
217
+
218
+ res = data_client.advertiser.ingest_advertiser_data(advertiser_id="<id>")
219
+
220
+ assert res.advertiser_data_server_response is not None
221
+
222
+ # Handle response
223
+ print(res.advertiser_data_server_response)
224
+
225
+ ```
226
+ <!-- End Retries [retries] -->
227
+
228
+ <!-- Start Error Handling [errors] -->
229
+ ## Error Handling
230
+
231
+ [`DataError`](https://github.com/thetradedesk/ttd-data-python/blob/master/./src/ttd_data/errors/dataerror.py) is the base class for all HTTP error responses. It has the following properties:
232
+
233
+ | Property | Type | Description |
234
+ | ------------------ | ---------------- | --------------------------------------------------------------------------------------- |
235
+ | `err.message` | `str` | Error message |
236
+ | `err.status_code` | `int` | HTTP response status code eg `404` |
237
+ | `err.headers` | `httpx.Headers` | HTTP response headers |
238
+ | `err.body` | `str` | HTTP body. Can be empty string if no body is returned. |
239
+ | `err.raw_response` | `httpx.Response` | Raw HTTP response |
240
+ | `err.data` | | Optional. Some errors may contain structured data. [See Error Classes](https://github.com/thetradedesk/ttd-data-python/blob/master/#error-classes). |
241
+
242
+ ### Example
243
+ ```python
244
+ from ttd_data import DataClient, errors
245
+
246
+
247
+ with DataClient() as data_client:
248
+ res = None
249
+ try:
250
+
251
+ res = data_client.advertiser.ingest_advertiser_data(advertiser_id="<id>")
252
+
253
+ assert res.advertiser_data_server_response is not None
254
+
255
+ # Handle response
256
+ print(res.advertiser_data_server_response)
257
+
258
+
259
+ except errors.DataError as e:
260
+ # The base class for HTTP error responses
261
+ print(e.message)
262
+ print(e.status_code)
263
+ print(e.body)
264
+ print(e.headers)
265
+ print(e.raw_response)
266
+
267
+ # Depending on the method different errors may be thrown
268
+ if isinstance(e, errors.AdvertiserDataServerResponseError):
269
+ print(e.data.failed_lines) # OptionalNullable[List[models.AdvertiserDataServerResponseLine]]
270
+ print(e.data.http_meta) # models.HTTPMetadata
271
+ ```
272
+
273
+ ### Error Classes
274
+ **Primary errors:**
275
+ * [`DataError`](https://github.com/thetradedesk/ttd-data-python/blob/master/./src/ttd_data/errors/dataerror.py): The base class for HTTP error responses.
276
+ * [`AdvertiserDataServerResponseError`](https://github.com/thetradedesk/ttd-data-python/blob/master/./src/ttd_data/errors/advertiserdataserverresponseerror.py): Success.
277
+
278
+ <details><summary>Less common errors (5)</summary>
279
+
280
+ <br />
281
+
282
+ **Network errors:**
283
+ * [`httpx.RequestError`](https://www.python-httpx.org/exceptions/#httpx.RequestError): Base class for request errors.
284
+ * [`httpx.ConnectError`](https://www.python-httpx.org/exceptions/#httpx.ConnectError): HTTP client was unable to make a request to a server.
285
+ * [`httpx.TimeoutException`](https://www.python-httpx.org/exceptions/#httpx.TimeoutException): HTTP request timed out.
286
+
287
+
288
+ **Inherit from [`DataError`](https://github.com/thetradedesk/ttd-data-python/blob/master/./src/ttd_data/errors/dataerror.py)**:
289
+ * [`ResponseValidationError`](https://github.com/thetradedesk/ttd-data-python/blob/master/./src/ttd_data/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
290
+
291
+ </details>
292
+ <!-- End Error Handling [errors] -->
293
+
294
+ <!-- Start Server Selection [server] -->
295
+ ## Server Selection
296
+
297
+ ### Override Server URL Per-Client
298
+
299
+ The default server can be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
300
+ ```python
301
+ from ttd_data import DataClient
302
+
303
+
304
+ with DataClient(
305
+ server_url="https://usw-data.adsrvr.org",
306
+ ) as data_client:
307
+
308
+ res = data_client.advertiser.ingest_advertiser_data(advertiser_id="<id>")
309
+
310
+ assert res.advertiser_data_server_response is not None
311
+
312
+ # Handle response
313
+ print(res.advertiser_data_server_response)
314
+
315
+ ```
316
+ <!-- End Server Selection [server] -->
317
+
318
+ <!-- Start Custom HTTP Client [http-client] -->
319
+ ## Custom HTTP Client
320
+
321
+ The Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance.
322
+ Depending on whether you are using the sync or async version of the SDK, you can pass an instance of `HttpClient` or `AsyncHttpClient` respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.
323
+ This allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of `httpx.Client` or `httpx.AsyncClient` directly.
324
+
325
+ For example, you could specify a header for every request that this sdk makes as follows:
326
+ ```python
327
+ from ttd_data import DataClient
328
+ import httpx
329
+
330
+ http_client = httpx.Client(headers={"x-custom-header": "someValue"})
331
+ s = DataClient(client=http_client)
332
+ ```
333
+
334
+ or you could wrap the client with your own custom logic:
335
+ ```python
336
+ from ttd_data import DataClient
337
+ from ttd_data.httpclient import AsyncHttpClient
338
+ import httpx
339
+
340
+ class CustomClient(AsyncHttpClient):
341
+ client: AsyncHttpClient
342
+
343
+ def __init__(self, client: AsyncHttpClient):
344
+ self.client = client
345
+
346
+ async def send(
347
+ self,
348
+ request: httpx.Request,
349
+ *,
350
+ stream: bool = False,
351
+ auth: Union[
352
+ httpx._types.AuthTypes, httpx._client.UseClientDefault, None
353
+ ] = httpx.USE_CLIENT_DEFAULT,
354
+ follow_redirects: Union[
355
+ bool, httpx._client.UseClientDefault
356
+ ] = httpx.USE_CLIENT_DEFAULT,
357
+ ) -> httpx.Response:
358
+ request.headers["Client-Level-Header"] = "added by client"
359
+
360
+ return await self.client.send(
361
+ request, stream=stream, auth=auth, follow_redirects=follow_redirects
362
+ )
363
+
364
+ def build_request(
365
+ self,
366
+ method: str,
367
+ url: httpx._types.URLTypes,
368
+ *,
369
+ content: Optional[httpx._types.RequestContent] = None,
370
+ data: Optional[httpx._types.RequestData] = None,
371
+ files: Optional[httpx._types.RequestFiles] = None,
372
+ json: Optional[Any] = None,
373
+ params: Optional[httpx._types.QueryParamTypes] = None,
374
+ headers: Optional[httpx._types.HeaderTypes] = None,
375
+ cookies: Optional[httpx._types.CookieTypes] = None,
376
+ timeout: Union[
377
+ httpx._types.TimeoutTypes, httpx._client.UseClientDefault
378
+ ] = httpx.USE_CLIENT_DEFAULT,
379
+ extensions: Optional[httpx._types.RequestExtensions] = None,
380
+ ) -> httpx.Request:
381
+ return self.client.build_request(
382
+ method,
383
+ url,
384
+ content=content,
385
+ data=data,
386
+ files=files,
387
+ json=json,
388
+ params=params,
389
+ headers=headers,
390
+ cookies=cookies,
391
+ timeout=timeout,
392
+ extensions=extensions,
393
+ )
394
+
395
+ s = DataClient(async_client=CustomClient(httpx.AsyncClient()))
396
+ ```
397
+ <!-- End Custom HTTP Client [http-client] -->
398
+
399
+ <!-- Start Resource Management [resource-management] -->
400
+ ## Resource Management
401
+
402
+ The `DataClient` class implements the context manager protocol and registers a finalizer function to close the underlying sync and async HTTPX clients it uses under the hood. This will close HTTP connections, release memory and free up other resources held by the SDK. In short-lived Python programs and notebooks that make a few SDK method calls, resource management may not be a concern. However, in longer-lived programs, it is beneficial to create a single SDK instance via a [context manager][context-manager] and reuse it across the application.
403
+
404
+ [context-manager]: https://docs.python.org/3/reference/datamodel.html#context-managers
405
+
406
+ ```python
407
+ from ttd_data import DataClient
408
+ def main():
409
+
410
+ with DataClient() as data_client:
411
+ # Rest of application here...
412
+
413
+
414
+ # Or when using async:
415
+ async def amain():
416
+
417
+ async with DataClient() as data_client:
418
+ # Rest of application here...
419
+ ```
420
+ <!-- End Resource Management [resource-management] -->
421
+
422
+ <!-- Start Debugging [debug] -->
423
+ ## Debugging
424
+
425
+ You can setup your SDK to emit debug logs for SDK requests and responses.
426
+
427
+ You can pass your own logger class directly into your SDK.
428
+ ```python
429
+ from ttd_data import DataClient
430
+ import logging
431
+
432
+ logging.basicConfig(level=logging.DEBUG)
433
+ s = DataClient(debug_logger=logging.getLogger("ttd_data"))
434
+ ```
435
+
436
+ You can also enable a default debug logger by setting an environment variable `TTD_DATA_DEBUG` to true.
437
+ <!-- End Debugging [debug] -->
438
+
439
+ <!-- Placeholder for Future Speakeasy SDK Sections -->
440
+
441
+ # Development
442
+
443
+ ## Maturity
444
+
445
+ This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
446
+ to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
447
+ looking for the latest version.
448
+
449
+ ## Contributions
450
+
451
+ While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation.
452
+ We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.
453
+
454
+ ### SDK Created by [Speakeasy](https://www.speakeasy.com/?utm_source=ttd-data&utm_campaign=python)