a3s-code 0.9.2__cp310-cp310-win_amd64.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.
a3s_code/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ from .a3s_code import *
2
+
3
+ __doc__ = a3s_code.__doc__
4
+ if hasattr(a3s_code, "__all__"):
5
+ __all__ = a3s_code.__all__
Binary file
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: a3s-code
3
+ Version: 0.9.2
4
+ Classifier: Programming Language :: Rust
5
+ Classifier: Programming Language :: Python :: Implementation :: CPython
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Summary: A3S Code - Native Python bindings for the AI coding agent
10
+ License: MIT
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
13
+
14
+ # A3S Code - Native Python Bindings
15
+
16
+ Native Python module for the A3S Code AI coding agent, built with PyO3.
17
+
18
+ ```python
19
+ from a3s_code import Agent
20
+
21
+ agent = Agent(model="claude-sonnet-4-20250514", api_key="sk-ant-...", workspace="/project")
22
+ result = agent.send("What files handle auth?")
23
+ print(result.text)
24
+ ```
25
+
26
+ ## Installation
27
+
28
+ ```bash
29
+ pip install a3s-code
30
+ ```
31
+
32
+ ## License
33
+
34
+ MIT
35
+
@@ -0,0 +1,6 @@
1
+ a3s_code/__init__.py,sha256=bcH8fqtAdAAttX9X1C87P3-Og-8ReaKBfprLx9mAAfk,115
2
+ a3s_code/a3s_code.cp310-win_amd64.pyd,sha256=nMtNGX2k5_uQC9MO9seP3lCnz893wE8wXVv2TkVmFqo,20578816
3
+ a3s_code-0.9.2.dist-info/METADATA,sha256=4sYjeO6gMud-UpmVBUCCwqPQi1TnOK5Ms3eW1PYv9WE,883
4
+ a3s_code-0.9.2.dist-info/WHEEL,sha256=u0SrrVhLWy5NTpUNZsV4XHb5o4OzM8ROlVkSLMX6_bs,97
5
+ a3s_code-0.9.2.dist-info/sboms/a3s-code-py.cyclonedx.json,sha256=_a5maVGlnv0SLw8vs99BI-tKlMlBOKfl291dgAOdlVw,392990
6
+ a3s_code-0.9.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.12.4)
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-cp310-win_amd64