analog-sdk 0.0.1__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.
analog/__init__.py ADDED
@@ -0,0 +1,11 @@
1
+ """Analog Python SDK.
2
+
3
+ Placeholder release. The full SDK lands in a follow-up version of
4
+ this package. See https://getanalog.io for status.
5
+ """
6
+
7
+ from __future__ import annotations
8
+
9
+ __version__ = "0.0.1"
10
+
11
+ __all__ = ["__version__"]
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: analog-sdk
3
+ Version: 0.0.1
4
+ Summary: Python SDK for Analog — instantly distill webpages into structured data. Placeholder release; full SDK lands in a follow-up version.
5
+ Project-URL: Homepage, https://getanalog.io
6
+ Author-email: Marcus Campbell <marcus@getanalog.io>
7
+ License: MIT
8
+ License-File: LICENSE
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+
12
+ # analog-sdk
13
+
14
+ Python SDK for [Analog](https://getanalog.io) — instantly distill
15
+ webpages into structured data.
16
+
17
+ > **Placeholder release.** This is a stub package that reserves the
18
+ > `analog-sdk` name on PyPI while the full SDK is finalized in
19
+ > Analog's monorepo. The real SDK lands in a follow-up version.
20
+ > For status and release timing, see https://getanalog.io.
21
+
22
+ ## Installation
23
+
24
+ ```bash
25
+ pip install analog-sdk
26
+ ```
27
+
28
+ ## Future usage (when the real SDK ships)
29
+
30
+ ```python
31
+ from analog import analog
32
+
33
+ result = analog("https://news.ycombinator.com/")
34
+ for record in result.structured_content[0].records:
35
+ print(record["title"], record["url"])
36
+ ```
37
+
38
+ ## License
39
+
40
+ MIT — see [LICENSE](./LICENSE).
@@ -0,0 +1,5 @@
1
+ analog/__init__.py,sha256=QFfR18qpT2wvUgfzAHnNL1c5ZsYYxX_5cWj_gPJLbGM,230
2
+ analog_sdk-0.0.1.dist-info/METADATA,sha256=C33uZ3m_VcGGD6Uuur4XYtbZevyZtxrvbFO75Zz2YBo,1090
3
+ analog_sdk-0.0.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
4
+ analog_sdk-0.0.1.dist-info/licenses/LICENSE,sha256=KDWICVyYL3Y20Uw3mYYKuhTpvYJk746DzzVI0xHQLTk,1063
5
+ analog_sdk-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Analog
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.