sasso 0.1.0__py3-none-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.
sasso/__init__.py ADDED
@@ -0,0 +1,312 @@
1
+ """sasso — a pure-Rust SCSS → CSS compiler, with a clean Pythonic API.
2
+
3
+ import sasso
4
+
5
+ css = sasso.compile(".a { .b { color: red; } }")
6
+
7
+ No ctypes leaks into anything you touch here; all the FFI plumbing lives in the
8
+ private :mod:`sasso._ffi` module, over the ``libsasso`` C ABI.
9
+
10
+ ``__version__`` is the version of THIS Python package; the bundled compiler's
11
+ version is reported separately by :func:`compiler_version`.
12
+ """
13
+ from __future__ import annotations
14
+
15
+ import ctypes
16
+ from abc import ABC, abstractmethod
17
+ from dataclasses import dataclass
18
+ from typing import List, Optional, Sequence
19
+
20
+ from . import _ffi
21
+
22
+ __all__ = [
23
+ "compile",
24
+ "SassoError",
25
+ "Importer",
26
+ "LoadResult",
27
+ "compiler_version",
28
+ "__version__",
29
+ ]
30
+
31
+ #: Version of this Python package (PEP 396). Floats independently of the bundled
32
+ #: ``sasso`` compiler crate, whose version is :func:`compiler_version`. This is
33
+ #: the single source of truth: ``pyproject.toml`` reads it dynamically.
34
+ __version__ = "0.1.0"
35
+
36
+
37
+ def compiler_version() -> str:
38
+ """Return the version of the bundled native ``sasso`` compiler.
39
+
40
+ This is the version of the Rust ``sasso`` crate the wheel was built against
41
+ (e.g. ``"0.6.0"``), reported by the native library's ``sasso_version()``. It
42
+ is distinct from :data:`__version__`, which is the version of this Python
43
+ package.
44
+ """
45
+ return _ffi.version()
46
+
47
+
48
+ class SassoError(Exception):
49
+ """Raised when a compile fails (syntax error, missing import, an importer
50
+ raising, etc.).
51
+
52
+ Attributes
53
+ ----------
54
+ message : str
55
+ The full diagnostic message from the compiler.
56
+ line : int | None
57
+ 1-based line of the error, or ``None`` if the compiler didn't locate it.
58
+ column : int | None
59
+ 1-based column of the error, or ``None`` if unknown.
60
+ """
61
+
62
+ def __init__(
63
+ self,
64
+ message: str,
65
+ line: Optional[int] = None,
66
+ column: Optional[int] = None,
67
+ ) -> None:
68
+ super().__init__(message)
69
+ self.message: str = message
70
+ self.line: Optional[int] = line
71
+ self.column: Optional[int] = column
72
+
73
+ def __str__(self) -> str:
74
+ if self.line is not None:
75
+ loc = f"{self.line}:{self.column}" if self.column is not None else str(self.line)
76
+ return f"{self.message} (at {loc})"
77
+ return self.message
78
+
79
+
80
+ @dataclass
81
+ class LoadResult:
82
+ """What an :meth:`Importer.load` returns: the stylesheet source plus how to
83
+ parse it.
84
+
85
+ Attributes
86
+ ----------
87
+ contents : str
88
+ The stylesheet source text.
89
+ syntax : "scss" | "sass" | "css"
90
+ How to parse ``contents``. Default ``"scss"``.
91
+ source_map_url : str | None
92
+ Optional source-map URL override for this loaded file.
93
+ """
94
+
95
+ contents: str
96
+ syntax: str = "scss" # "scss" | "sass" | "css"
97
+ source_map_url: Optional[str] = None
98
+
99
+
100
+ class Importer(ABC):
101
+ """Subclass this to resolve ``@use`` / ``@forward`` / ``@import`` yourself
102
+ (e.g. from a database, a bundler's virtual filesystem, or HTTP).
103
+
104
+ Two phases, mirroring dart-sass:
105
+
106
+ * :meth:`canonicalize` turns a possibly-relative, extension-less URL into a
107
+ stable canonical key (or returns ``None`` if this importer doesn't handle
108
+ it).
109
+ * :meth:`load` fetches the source for a canonical key.
110
+
111
+ Raising any exception inside either method aborts the compile and surfaces
112
+ as a :class:`SassoError` (the original exception is chained as ``__cause__``).
113
+ """
114
+
115
+ @abstractmethod
116
+ def canonicalize(
117
+ self,
118
+ url: str,
119
+ *,
120
+ from_import: bool,
121
+ containing_url: Optional[str],
122
+ ) -> Optional[str]:
123
+ """Resolve ``url`` to a canonical key, or return ``None`` if unhandled.
124
+
125
+ ``from_import`` is ``True`` for a legacy ``@import``. ``containing_url``
126
+ is the canonical key of the importing file (``None`` for the
127
+ entrypoint), so you can resolve relative URLs.
128
+ """
129
+
130
+ @abstractmethod
131
+ def load(self, canonical: str) -> Optional[LoadResult]:
132
+ """Return the source for ``canonical`` (from :meth:`canonicalize`), or
133
+ ``None`` if it can't be loaded."""
134
+
135
+
136
+ _SYNTAX = {"scss": _ffi.SYNTAX_SCSS, "sass": _ffi.SYNTAX_SASS, "css": _ffi.SYNTAX_CSS}
137
+ _STYLE = {"expanded": _ffi.STYLE_EXPANDED, "compressed": _ffi.STYLE_COMPRESSED}
138
+
139
+
140
+ class _ImporterBridge:
141
+ """Wraps a user :class:`Importer` in the C-ABI trampolines and keeps every
142
+ object the FFI layer points at (the ``CFUNCTYPE`` thunks, the struct) alive
143
+ for the whole compile. Also captures the first exception raised in a callback
144
+ so the caller can re-raise it after ``sasso_compile`` returns (we must not
145
+ let a Python exception unwind through the C frame, which is undefined
146
+ behavior)."""
147
+
148
+ def __init__(self, importer: Importer) -> None:
149
+ self._importer = importer
150
+ self.pending_exception: Optional[BaseException] = None
151
+
152
+ # Bind the trampolines to instance attributes => GC-rooted for the life
153
+ # of this bridge, which the caller keeps alive across the compile.
154
+ self._cb_canon = _ffi.CANONICALIZE_FN(self._canonicalize)
155
+ self._cb_load = _ffi.LOAD_FN(self._load)
156
+ self.struct = _ffi.SassoImporter(
157
+ user_data=None,
158
+ canonicalize=self._cb_canon,
159
+ load=self._cb_load,
160
+ )
161
+
162
+ def _set_error(self, sink: int, exc: BaseException) -> int:
163
+ if self.pending_exception is None:
164
+ self.pending_exception = exc
165
+ msg = str(exc).encode("utf-8")
166
+ _ffi._lib.sasso_importer_set_error(sink, msg, len(msg))
167
+ return _ffi.IMPORTER_ERROR
168
+
169
+ def _canonicalize(self, _user_data, url_bytes, ctx_ptr, sink) -> int:
170
+ try:
171
+ url = url_bytes.decode("utf-8")
172
+ ctx = ctx_ptr.contents
173
+ containing = ctx.containing_url.decode("utf-8") if ctx.containing_url else None
174
+ canon = self._importer.canonicalize(
175
+ url,
176
+ from_import=bool(ctx.from_import),
177
+ containing_url=containing,
178
+ )
179
+ if canon is None:
180
+ return _ffi.IMPORTER_NOT_FOUND
181
+ b = canon.encode("utf-8")
182
+ _ffi._lib.sasso_importer_set_canonical(sink, b, len(b))
183
+ return _ffi.IMPORTER_OK
184
+ except BaseException as exc: # noqa: BLE001 — must not unwind into C
185
+ return self._set_error(sink, exc)
186
+
187
+ def _load(self, _user_data, canon_bytes, sink) -> int:
188
+ try:
189
+ canonical = canon_bytes.decode("utf-8")
190
+ result = self._importer.load(canonical)
191
+ if result is None:
192
+ return _ffi.IMPORTER_NOT_FOUND
193
+ contents = result.contents.encode("utf-8")
194
+ syntax = _SYNTAX.get(result.syntax, _ffi.SYNTAX_SCSS)
195
+ smu = result.source_map_url
196
+ smu_bytes = smu.encode("utf-8") if smu else None
197
+ smu_len = len(smu_bytes) if smu_bytes else 0
198
+ _ffi._lib.sasso_importer_set_result(
199
+ sink, contents, len(contents), syntax, smu_bytes, smu_len
200
+ )
201
+ return _ffi.IMPORTER_OK
202
+ except BaseException as exc: # noqa: BLE001
203
+ return self._set_error(sink, exc)
204
+
205
+
206
+ def compile(
207
+ source: str,
208
+ *,
209
+ style: str = "expanded",
210
+ syntax: str = "scss",
211
+ load_paths: Optional[Sequence[str]] = None,
212
+ url: Optional[str] = None,
213
+ importer: Optional[Importer] = None,
214
+ ) -> str:
215
+ """Compile ``source`` to a CSS string.
216
+
217
+ Parameters
218
+ ----------
219
+ source : str
220
+ The stylesheet source.
221
+ style : "expanded" | "compressed"
222
+ Output style. Default ``"expanded"``.
223
+ syntax : "scss" | "sass" | "css"
224
+ Syntax of ``source``. Default ``"scss"``.
225
+ load_paths : sequence of str, optional
226
+ Filesystem directories searched by the built-in importer for
227
+ ``@use`` / ``@import``. Ignored when ``importer`` is given.
228
+ url : str, optional
229
+ Display path for the entrypoint; enables nicer error snippets and is the
230
+ ``containing_url`` your importer sees for top-level imports.
231
+ importer : Importer, optional
232
+ A custom importer. Takes precedence over ``load_paths``.
233
+
234
+ Returns
235
+ -------
236
+ str
237
+ The compiled CSS.
238
+
239
+ Raises
240
+ ------
241
+ SassoError
242
+ On any compile failure. If a custom importer raised, that original
243
+ exception is chained (``__cause__``).
244
+ ValueError
245
+ For an unknown ``style`` or ``syntax``.
246
+ """
247
+ try:
248
+ style_code = _STYLE[style]
249
+ except KeyError:
250
+ raise ValueError(
251
+ f"unknown style {style!r}; expected one of {sorted(_STYLE)}"
252
+ ) from None
253
+ try:
254
+ syntax_code = _SYNTAX[syntax]
255
+ except KeyError:
256
+ raise ValueError(
257
+ f"unknown syntax {syntax!r}; expected one of {sorted(_SYNTAX)}"
258
+ ) from None
259
+
260
+ opts = _ffi.SassoOptions()
261
+ _ffi._lib.sasso_options_init(ctypes.byref(opts), ctypes.sizeof(opts))
262
+ opts.style = style_code
263
+ opts.syntax = syntax_code
264
+
265
+ # Keep every transient buffer alive until after the compile returns.
266
+ keepalive: List[object] = []
267
+
268
+ if url is not None:
269
+ url_b = url.encode("utf-8")
270
+ keepalive.append(url_b)
271
+ opts.url = url_b
272
+
273
+ bridge: Optional[_ImporterBridge] = None
274
+ if importer is not None:
275
+ bridge = _ImporterBridge(importer)
276
+ keepalive.append(bridge)
277
+ opts.importer = ctypes.pointer(bridge.struct)
278
+ elif load_paths:
279
+ encoded = [p.encode("utf-8") for p in load_paths]
280
+ keepalive.extend(encoded)
281
+ arr_type = ctypes.c_char_p * len(encoded)
282
+ arr = arr_type(*encoded)
283
+ keepalive.append(arr)
284
+ opts.load_paths = ctypes.cast(arr, ctypes.POINTER(ctypes.c_char_p))
285
+ opts.load_paths_len = len(encoded)
286
+
287
+ raw = source.encode("utf-8")
288
+ res_ptr = _ffi._lib.sasso_compile(raw, len(raw), ctypes.byref(opts))
289
+ if not res_ptr:
290
+ raise SassoError("sasso_compile returned NULL (out of memory or internal panic)")
291
+ res = res_ptr.contents
292
+ try:
293
+ if res.ok:
294
+ return ctypes.string_at(res.css, res.css_len).decode("utf-8")
295
+
296
+ # Failure. If a custom importer raised a Python exception, prefer that as
297
+ # the chained cause.
298
+ message = (
299
+ ctypes.string_at(res.error, res.error_len).decode("utf-8")
300
+ if res.error
301
+ else "unknown compile error"
302
+ )
303
+ line = res.error_line or None
304
+ column = res.error_column or None
305
+ err = SassoError(message, line=line, column=column)
306
+ if bridge is not None and bridge.pending_exception is not None:
307
+ raise err from bridge.pending_exception
308
+ raise err
309
+ finally:
310
+ _ffi._lib.sasso_result_free(res_ptr)
311
+ # `keepalive` is held until here, after the C call has fully returned.
312
+ del keepalive
sasso/_ffi.py ADDED
@@ -0,0 +1,164 @@
1
+ """Private ctypes plumbing for the libsasso C ABI.
2
+
3
+ NOTHING in here is part of the public API — import from ``sasso`` instead. This
4
+ module owns every ``ctypes`` detail: struct layouts mirroring ``sasso.h``, the
5
+ CDLL handle, the importer-callback trampolines, and the sink dispatch. The
6
+ public ``sasso.compile`` / ``sasso.Importer`` surface is built on top of it in
7
+ ``__init__.py`` so that a user never sees a ``ctypes`` type.
8
+
9
+ The struct layouts below mirror ``native/include/sasso.h`` exactly. They are
10
+ locked to the C ABI of the vendored ``native/src/lib.rs`` (core ``sasso 0.6.0``);
11
+ a change to either must be made in lockstep with the other.
12
+ """
13
+ from __future__ import annotations
14
+
15
+ import ctypes
16
+ import sys
17
+ from pathlib import Path
18
+
19
+ # ---------------------------------------------------------------------------
20
+ # Locating the bundled native library.
21
+ #
22
+ # The lib ships *inside* the package (as package data), so we resolve it relative
23
+ # to this file — never an absolute machine path. Each platform wheel bundles the
24
+ # single shared library for its (OS, arch): libsasso.so (Linux), libsasso.dylib
25
+ # (macOS), or sasso.dll (Windows). We probe the names valid for the running
26
+ # platform so the loader works whichever wheel got installed.
27
+ # ---------------------------------------------------------------------------
28
+ _LIB_NAMES = {
29
+ "darwin": ["libsasso.dylib"],
30
+ "win32": ["sasso.dll"],
31
+ }.get(sys.platform, ["libsasso.so", "libsasso.dylib"])
32
+
33
+
34
+ def _find_library() -> str:
35
+ here = Path(__file__).resolve().parent
36
+ for name in _LIB_NAMES:
37
+ candidate = here / name
38
+ if candidate.exists():
39
+ return str(candidate)
40
+ raise ImportError(
41
+ "could not find the bundled libsasso shared library next to "
42
+ f"{here!r} (looked for {_LIB_NAMES}). This sasso wheel may be for a "
43
+ "different platform than the one you're running on."
44
+ )
45
+
46
+
47
+ # ABI constants (mirror sasso.h).
48
+ STYLE_EXPANDED = 0
49
+ STYLE_COMPRESSED = 1
50
+
51
+ SYNTAX_SCSS = 0
52
+ SYNTAX_SASS = 1
53
+ SYNTAX_CSS = 2
54
+
55
+ IMPORTER_OK = 1
56
+ IMPORTER_NOT_FOUND = 0
57
+ IMPORTER_ERROR = -1
58
+
59
+
60
+ # --- struct layouts (mirror sasso.h exactly) ------------------------------
61
+ class SassoCanonicalizeContext(ctypes.Structure):
62
+ _fields_ = [
63
+ ("from_import", ctypes.c_int32),
64
+ ("containing_url", ctypes.c_char_p),
65
+ ]
66
+
67
+
68
+ # canonicalize(user_data, url, ctx*, sink) -> int32
69
+ CANONICALIZE_FN = ctypes.CFUNCTYPE(
70
+ ctypes.c_int32,
71
+ ctypes.c_void_p,
72
+ ctypes.c_char_p,
73
+ ctypes.POINTER(SassoCanonicalizeContext),
74
+ ctypes.c_void_p,
75
+ )
76
+ # load(user_data, canonical, sink) -> int32
77
+ LOAD_FN = ctypes.CFUNCTYPE(
78
+ ctypes.c_int32,
79
+ ctypes.c_void_p,
80
+ ctypes.c_char_p,
81
+ ctypes.c_void_p,
82
+ )
83
+
84
+
85
+ class SassoImporter(ctypes.Structure):
86
+ _fields_ = [
87
+ ("user_data", ctypes.c_void_p),
88
+ ("canonicalize", CANONICALIZE_FN),
89
+ ("load", LOAD_FN),
90
+ ]
91
+
92
+
93
+ class SassoOptions(ctypes.Structure):
94
+ _fields_ = [
95
+ ("struct_size", ctypes.c_uint32),
96
+ ("style", ctypes.c_int32),
97
+ ("syntax", ctypes.c_int32),
98
+ ("unicode", ctypes.c_int32),
99
+ ("url", ctypes.c_char_p),
100
+ ("load_paths", ctypes.POINTER(ctypes.c_char_p)),
101
+ ("load_paths_len", ctypes.c_size_t),
102
+ ("importer", ctypes.POINTER(SassoImporter)),
103
+ ]
104
+
105
+
106
+ class SassoResult(ctypes.Structure):
107
+ _fields_ = [
108
+ ("ok", ctypes.c_int32),
109
+ ("css", ctypes.c_void_p),
110
+ ("css_len", ctypes.c_size_t),
111
+ ("error", ctypes.c_void_p),
112
+ ("error_len", ctypes.c_size_t),
113
+ ("error_line", ctypes.c_uint32),
114
+ ("error_column", ctypes.c_uint32),
115
+ ]
116
+
117
+
118
+ # --- load the lib and declare signatures ----------------------------------
119
+ _lib = ctypes.CDLL(_find_library())
120
+
121
+ _lib.sasso_version.restype = ctypes.c_char_p
122
+ _lib.sasso_version.argtypes = []
123
+
124
+ _lib.sasso_options_init.restype = None
125
+ _lib.sasso_options_init.argtypes = [ctypes.POINTER(SassoOptions), ctypes.c_size_t]
126
+
127
+ _lib.sasso_compile.restype = ctypes.POINTER(SassoResult)
128
+ _lib.sasso_compile.argtypes = [
129
+ ctypes.c_char_p,
130
+ ctypes.c_size_t,
131
+ ctypes.POINTER(SassoOptions),
132
+ ]
133
+
134
+ _lib.sasso_result_free.restype = None
135
+ _lib.sasso_result_free.argtypes = [ctypes.POINTER(SassoResult)]
136
+
137
+ _lib.sasso_importer_set_canonical.restype = None
138
+ _lib.sasso_importer_set_canonical.argtypes = [
139
+ ctypes.c_void_p,
140
+ ctypes.c_char_p,
141
+ ctypes.c_size_t,
142
+ ]
143
+
144
+ _lib.sasso_importer_set_result.restype = None
145
+ _lib.sasso_importer_set_result.argtypes = [
146
+ ctypes.c_void_p,
147
+ ctypes.c_char_p,
148
+ ctypes.c_size_t,
149
+ ctypes.c_int32,
150
+ ctypes.c_char_p,
151
+ ctypes.c_size_t,
152
+ ]
153
+
154
+ _lib.sasso_importer_set_error.restype = None
155
+ _lib.sasso_importer_set_error.argtypes = [
156
+ ctypes.c_void_p,
157
+ ctypes.c_char_p,
158
+ ctypes.c_size_t,
159
+ ]
160
+
161
+
162
+ def version() -> str:
163
+ """Version of the bundled native compiler, from ``sasso_version()``."""
164
+ return _lib.sasso_version().decode("utf-8")
sasso/py.typed ADDED
File without changes
sasso/sasso.dll ADDED
Binary file
@@ -0,0 +1,165 @@
1
+ Metadata-Version: 2.4
2
+ Name: sasso
3
+ Version: 0.1.0
4
+ Summary: Pure-Rust SCSS → CSS compiler for Python (ctypes bindings over the libsasso C ABI)
5
+ Project-URL: Homepage, https://github.com/momiji-rs/sasso
6
+ Project-URL: Repository, https://github.com/momiji-rs/sasso-python
7
+ Project-URL: Issues, https://github.com/momiji-rs/sasso-python/issues
8
+ Author: momiji-rs
9
+ License: MIT OR Apache-2.0
10
+ License-File: LICENSE-APACHE
11
+ License-File: LICENSE-MIT
12
+ Keywords: compiler,css,rust,sass,scss
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: Apache Software License
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: MacOS
18
+ Classifier: Operating System :: Microsoft :: Windows
19
+ Classifier: Operating System :: POSIX :: Linux
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Programming Language :: Python :: 3 :: Only
22
+ Classifier: Programming Language :: Rust
23
+ Classifier: Topic :: Software Development :: Compilers
24
+ Classifier: Topic :: Software Development :: Libraries
25
+ Classifier: Typing :: Typed
26
+ Requires-Python: >=3.8
27
+ Description-Content-Type: text/markdown
28
+
29
+ # sasso
30
+
31
+ [![PyPI](https://img.shields.io/pypi/v/sasso.svg)](https://pypi.org/project/sasso/)
32
+
33
+ Python bindings for [**sasso**](https://github.com/momiji-rs/sasso) — a fast,
34
+ pure-Rust SCSS/Sass → CSS compiler — over its `libsasso` C ABI.
35
+
36
+ `sasso` runs **in-process** (no Node, no subprocess, no system `sass` binary)
37
+ via a small `ctypes` layer over a prebuilt native library. Each wheel bundles
38
+ the compiled `libsasso` for its platform, so `pip install sasso` is all you
39
+ need.
40
+
41
+ ```bash
42
+ pip install sasso
43
+ ```
44
+
45
+ ## Usage
46
+
47
+ ```python
48
+ import sasso
49
+
50
+ css = sasso.compile(
51
+ """
52
+ $brand: #336699;
53
+ .card {
54
+ color: $brand;
55
+ .title { font-weight: bold; }
56
+ }
57
+ """
58
+ )
59
+ print(css)
60
+ ```
61
+
62
+ ```python
63
+ # Compressed output, .sass (indented) syntax, filesystem load paths:
64
+ sasso.compile(src, style="compressed")
65
+ sasso.compile(indented_src, syntax="sass")
66
+ sasso.compile(src, load_paths=["styles", "vendor"])
67
+ ```
68
+
69
+ ### Errors
70
+
71
+ A compile failure raises `sasso.SassoError`, carrying the diagnostic message
72
+ plus the 1-based source location:
73
+
74
+ ```python
75
+ try:
76
+ sasso.compile(".broken { color: ; }")
77
+ except sasso.SassoError as e:
78
+ print(e.message, e.line, e.column)
79
+ ```
80
+
81
+ ### Custom importers
82
+
83
+ Resolve `@use` / `@forward` / `@import` yourself (from a database, a bundler's
84
+ virtual filesystem, HTTP, …) by subclassing `sasso.Importer`. It mirrors
85
+ dart-sass's two-phase model:
86
+
87
+ ```python
88
+ class DictImporter(sasso.Importer):
89
+ def __init__(self, files):
90
+ self.files = files
91
+
92
+ def canonicalize(self, url, *, from_import, containing_url):
93
+ # Map a (possibly relative) URL to a stable canonical key, or None.
94
+ return url if url in self.files else None
95
+
96
+ def load(self, canonical):
97
+ # Fetch the source for a canonical key, or None.
98
+ return sasso.LoadResult(contents=self.files[canonical], syntax="scss")
99
+
100
+ css = sasso.compile('@use "theme";', importer=DictImporter({"theme": "$c: red;"}))
101
+ ```
102
+
103
+ An exception raised inside an importer aborts the compile and surfaces as a
104
+ `SassoError` with the original exception chained as `__cause__`.
105
+
106
+ ## API
107
+
108
+ | Symbol | Description |
109
+ | --- | --- |
110
+ | `compile(source, *, style="expanded", syntax="scss", load_paths=None, url=None, importer=None) -> str` | Compile a stylesheet string to CSS. |
111
+ | `SassoError` | Raised on failure; has `.message: str`, `.line: int \| None`, `.column: int \| None`. |
112
+ | `Importer` | ABC for custom resolution: `canonicalize(url, *, from_import, containing_url)` + `load(canonical) -> LoadResult \| None`. |
113
+ | `LoadResult(contents, syntax="scss", source_map_url=None)` | Return value of `Importer.load`. |
114
+ | `compiler_version() -> str` | Version of the bundled native `sasso` compiler. |
115
+ | `__version__` | Version of this Python package (independent of the compiler version). |
116
+
117
+ `style` is `"expanded"` or `"compressed"`; `syntax` is `"scss"`, `"sass"`, or
118
+ `"css"`.
119
+
120
+ ## Performance
121
+
122
+ `sasso` compiles in-process, so it avoids the per-call process-spawn overhead of
123
+ shelling out to the `sass` CLI. Compiling a non-trivial stylesheet 200× on an
124
+ Apple-silicon Mac (`benchmark.py`, vs. spawning the dart-sass binary per
125
+ compile):
126
+
127
+ ```
128
+ output parity (sasso vs dart-sass): IDENTICAL
129
+
130
+ sasso (in-process) : 0.0068 s total (0.034 ms/compile)
131
+ dart-sass (subprocess/ea) : 4.7381 s total (23.691 ms/compile)
132
+
133
+ speedup: sasso is 701.0x faster for 200 compiles in this workload
134
+ ```
135
+
136
+ Most of that gap is process-startup cost that an in-process binding removes
137
+ entirely; the comparison reflects the realistic "shell out to `sass`" path a
138
+ Python app would otherwise take.
139
+
140
+ ## Versioning — which compiler is bundled?
141
+
142
+ The **package** version (`sasso.__version__`) floats independently of the
143
+ **compiler** version it bundles (`sasso.compiler_version()`):
144
+
145
+ | sasso (PyPI) | bundles core `sasso` crate |
146
+ | --- | --- |
147
+ | 0.1.0 | 0.6.0 |
148
+
149
+ Each release notes its bundled core version in the [CHANGELOG](CHANGELOG.md).
150
+
151
+ ## How it works
152
+
153
+ The package is a `ctypes` binding — **not** a CPython C-extension — over the
154
+ [`libsasso` C ABI](https://github.com/momiji-rs/sasso/tree/master/ffi). Because
155
+ it has no Python-ABI linkage, a single native library per `(OS, arch)` serves
156
+ every CPython 3.x (and PyPy), so each release ships one platform wheel per
157
+ target rather than one per Python version.
158
+
159
+ The native crate is vendored from `momiji-rs/sasso` `ffi/` and builds against
160
+ the **published** `sasso` crate from crates.io.
161
+
162
+ ## License
163
+
164
+ MIT OR Apache-2.0, at your option. See [LICENSE-MIT](LICENSE-MIT) and
165
+ [LICENSE-APACHE](LICENSE-APACHE).
@@ -0,0 +1,9 @@
1
+ sasso/__init__.py,sha256=MkDZUmuT5ZZFaPCXfYphkcU_eW4B83o_i_VimGVCKC0,11160
2
+ sasso/_ffi.py,sha256=3v5vaqQwwqsB2ukeltpvANXjVpM8L1bxd9BPYqG4-h8,5023
3
+ sasso/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ sasso/sasso.dll,sha256=zn-uAP6etvu2zbQc0q9Ox-KbcLqYBEZ1j2MRdQJs46c,2773504
5
+ sasso-0.1.0.dist-info/METADATA,sha256=ywnhwKgI04gQNly38uKGvPZhdXVKjesmfm2k3CjO9FI,5699
6
+ sasso-0.1.0.dist-info/WHEEL,sha256=pp_iTzO0EBcCvlZZV2dJYp6L2tdDWBsn1ceo50wEt8Q,94
7
+ sasso-0.1.0.dist-info/licenses/LICENSE-APACHE,sha256=rKNs2GTbbOzsAzWHT3Vu1ERItITkY_fu0kgegnNC_VA,11484
8
+ sasso-0.1.0.dist-info/licenses/LICENSE-MIT,sha256=7D8JS0acHEw8LROOzzwh78UpGZ60koHZDSi69fmj5eU,1085
9
+ sasso-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_amd64
5
+
@@ -0,0 +1,200 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but not
32
+ limited to compiled object code, generated documentation, and
33
+ conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work.
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and Derivative Works thereof.
46
+
47
+ "Contribution" shall mean any work of authorship, including the
48
+ original version of the Work and any modifications or additions
49
+ to that Work or Derivative Works thereof, that is intentionally
50
+ submitted to Licensor for inclusion in the Work by the copyright owner
51
+ or by an individual or Legal Entity authorized to submit on behalf of
52
+ the copyright owner. For the purposes of this definition, "submitted"
53
+ means any form of electronic, verbal, or written communication sent
54
+ to the Licensor or its representatives, including but not limited to
55
+ communication on electronic mailing lists, source code control systems,
56
+ and issue tracking systems that are managed by, or on behalf of, the
57
+ Licensor for the purpose of discussing and improving the Work, but
58
+ excluding communication that is conspicuously marked or otherwise
59
+ designated in writing by the copyright owner as "Not a Contribution."
60
+
61
+ "Contributor" shall mean Licensor and any individual or Legal Entity
62
+ on behalf of whom a Contribution has been received by Licensor and
63
+ subsequently incorporated within the Work.
64
+
65
+ 2. Grant of Copyright License. Subject to the terms and conditions of
66
+ this License, each Contributor hereby grants to You a perpetual,
67
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
68
+ copyright license to reproduce, prepare Derivative Works of,
69
+ publicly display, publicly perform, sublicense, and distribute the
70
+ Work and such Derivative Works in Source or Object form.
71
+
72
+ 3. Grant of Patent License. Subject to the terms and conditions of
73
+ this License, each Contributor hereby grants to You a perpetual,
74
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75
+ (except as stated in this section) patent license to make, have made,
76
+ use, offer to sell, sell, import, and otherwise transfer the Work,
77
+ where such license applies only to those patent claims licensable
78
+ by such Contributor that are necessarily infringed by their
79
+ Contribution(s) alone or by combination of their Contribution(s)
80
+ with the Work to which such Contribution(s) was submitted. If You
81
+ institute patent litigation against any entity (including a
82
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
83
+ or a Contribution incorporated within the Work constitutes direct
84
+ or contributory patent infringement, then any patent licenses
85
+ granted to You under this License for that Work shall terminate
86
+ as of the date such litigation is filed.
87
+
88
+ 4. Redistribution. You may reproduce and distribute copies of the
89
+ Work or Derivative Works thereof in any medium, with or without
90
+ modifications, and in Source or Object form, provided that You
91
+ meet the following conditions:
92
+
93
+ (a) You must give any other recipients of the Work or Derivative
94
+ Works a copy of this License; and
95
+
96
+ (b) You must cause any modified files to carry prominent notices
97
+ stating that You changed the files; and
98
+
99
+ (c) You must retain, in the Source form of any Derivative Works
100
+ that You distribute, all copyright, patent, trademark, and
101
+ attribution notices from the Source form of the Work,
102
+ excluding those notices that do not pertain to any part of
103
+ the Derivative Works; and
104
+
105
+ (d) If the Work includes a "NOTICE" text file as part of its
106
+ distribution, then any Derivative Works that You distribute must
107
+ include a readable copy of the attribution notices contained
108
+ within such NOTICE file, excluding those notices that do not
109
+ pertain to any part of the Derivative Works, in at least one
110
+ of the following places: within a NOTICE text file distributed
111
+ as part of the Derivative Works; within the Source form or
112
+ documentation, if provided along with the Derivative Works; or,
113
+ within a display generated by the Derivative Works, if and
114
+ wherever such third-party notices normally appear. The contents
115
+ of the NOTICE file are for informational purposes only and do
116
+ not modify the License. You may add Your own attribution notices
117
+ within Derivative Works that You distribute, alongside or as an
118
+ addendum to the NOTICE text from the Work, provided that such
119
+ additional attribution notices cannot be construed as modifying
120
+ the License.
121
+
122
+ You may add Your own copyright statement to Your modifications and
123
+ may provide additional or different license terms and conditions
124
+ for use, reproduction, or distribution of Your modifications, or
125
+ for any such Derivative Works as a whole, provided Your use,
126
+ reproduction, and distribution of the Work otherwise complies with
127
+ the conditions stated in this License.
128
+
129
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
130
+ any Contribution intentionally submitted for inclusion in the Work
131
+ by You to the Licensor shall be under the terms and conditions of
132
+ this License, without any additional terms or conditions.
133
+ Notwithstanding the above, nothing herein shall supersede or modify
134
+ the terms of any separate license agreement you may have executed
135
+ with Licensor regarding such Contributions.
136
+
137
+ 6. Trademarks. This License does not grant permission to use the trade
138
+ names, trademarks, service marks, or product names of the Licensor,
139
+ except as required for reasonable and customary use in describing the
140
+ origin of the Work and reproducing the content of the NOTICE file.
141
+
142
+ 7. Disclaimer of Warranty. Unless required by applicable law or
143
+ agreed to in writing, Licensor provides the Work (and each
144
+ Contributor provides its Contributions) on an "AS IS" BASIS,
145
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
146
+ implied, including, without limitation, any warranties or conditions
147
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
148
+ PARTICULAR PURPOSE. You are solely responsible for determining the
149
+ appropriateness of using or redistributing the Work and assume any
150
+ risks associated with Your exercise of permissions under this License.
151
+
152
+ 8. Limitation of Liability. In no event and under no legal theory,
153
+ whether in tort (including negligence), contract, or otherwise,
154
+ unless required by applicable law (such as deliberate and grossly
155
+ negligent acts) or agreed to in writing, shall any Contributor be
156
+ liable to You for damages, including any direct, indirect, special,
157
+ incidental, or consequential damages of any character arising as a
158
+ result of this License or out of the use or inability to use the
159
+ Work (including but not limited to damages for loss of goodwill,
160
+ work stoppage, computer failure or malfunction, or any and all
161
+ other commercial damages or losses), even if such Contributor
162
+ has been advised of the possibility of such damages.
163
+
164
+ 9. Accepting Warranty or Additional Liability. While redistributing
165
+ the Work or Derivative Works thereof, You may choose to offer,
166
+ and charge a fee for, acceptance of support, warranty, indemnity,
167
+ or other liability obligations and/or rights consistent with this
168
+ License. However, in accepting such obligations, You may act only
169
+ on Your own behalf and on Your sole responsibility, not on behalf
170
+ of any other Contributor, and only if You agree to indemnify,
171
+ defend, and hold each Contributor harmless for any liability
172
+ incurred by, or claims asserted against, such Contributor by reason
173
+ of your accepting any such warranty or additional liability.
174
+
175
+ END OF TERMS AND CONDITIONS
176
+
177
+ APPENDIX: How to apply the Apache License to your work.
178
+
179
+ To apply the Apache License to your work, attach the following
180
+ boilerplate notice, with the fields enclosed by brackets "[]"
181
+ replaced with your own identifying information. (Don't include
182
+ the brackets!) The text should be enclosed in the appropriate
183
+ comment syntax for the file format. We also recommend that a
184
+ file or class name and description of purpose be included on the
185
+ same "printed page" as the copyright notice for easier
186
+ identification within third-party archives.
187
+
188
+ Copyright 2026 linyiru
189
+
190
+ Licensed under the Apache License, Version 2.0 (the "License");
191
+ you may not use this file except in compliance with the License.
192
+ You may obtain a copy of the License at
193
+
194
+ http://www.apache.org/licenses/LICENSE-2.0
195
+
196
+ Unless required by applicable law or agreed to in writing, software
197
+ distributed under the License is distributed on an "AS IS" BASIS,
198
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
199
+ See the License for the specific language governing permissions and
200
+ limitations under the License.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 linyiru
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.