sasso 0.1.0__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.
- sasso-0.1.0/.gitignore +28 -0
- sasso-0.1.0/CHANGELOG.md +31 -0
- sasso-0.1.0/LICENSE-APACHE +200 -0
- sasso-0.1.0/LICENSE-MIT +21 -0
- sasso-0.1.0/PKG-INFO +165 -0
- sasso-0.1.0/README.md +137 -0
- sasso-0.1.0/native/Cargo.lock +16 -0
- sasso-0.1.0/native/Cargo.toml +53 -0
- sasso-0.1.0/native/cbindgen.toml +17 -0
- sasso-0.1.0/native/include/sasso.h +173 -0
- sasso-0.1.0/native/src/lib.rs +710 -0
- sasso-0.1.0/pyproject.toml +78 -0
- sasso-0.1.0/scripts/build_native.py +99 -0
- sasso-0.1.0/scripts/retag_wheel.py +105 -0
- sasso-0.1.0/src/sasso/__init__.py +312 -0
- sasso-0.1.0/src/sasso/_ffi.py +164 -0
- sasso-0.1.0/src/sasso/py.typed +0 -0
- sasso-0.1.0/tests/test_sasso.py +167 -0
sasso-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Rust build output for the vendored native cdylib.
|
|
2
|
+
native/target/
|
|
3
|
+
target/
|
|
4
|
+
|
|
5
|
+
# The bundled native library is built per-target in CI (and locally by
|
|
6
|
+
# scripts/build_native.py) and copied in next to the package — never committed.
|
|
7
|
+
src/sasso/libsasso.so
|
|
8
|
+
src/sasso/libsasso.dylib
|
|
9
|
+
src/sasso/sasso.dll
|
|
10
|
+
|
|
11
|
+
# Python build / packaging artifacts.
|
|
12
|
+
__pycache__/
|
|
13
|
+
*.py[cod]
|
|
14
|
+
dist/
|
|
15
|
+
build/
|
|
16
|
+
*.egg-info/
|
|
17
|
+
.eggs/
|
|
18
|
+
wheelhouse/
|
|
19
|
+
*.whl
|
|
20
|
+
|
|
21
|
+
# Virtual environments.
|
|
22
|
+
.venv/
|
|
23
|
+
venv/
|
|
24
|
+
|
|
25
|
+
# Test / tooling caches.
|
|
26
|
+
.pytest_cache/
|
|
27
|
+
.mypy_cache/
|
|
28
|
+
.ruff_cache/
|
sasso-0.1.0/CHANGELOG.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the **sasso** Python package are documented here.
|
|
4
|
+
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
5
|
+
|
|
6
|
+
The package version floats independently of the `sasso` compiler crate; each
|
|
7
|
+
release notes the exact core crate version it bundles.
|
|
8
|
+
|
|
9
|
+
## [Unreleased]
|
|
10
|
+
|
|
11
|
+
## [0.1.0] - 2026-06-15
|
|
12
|
+
|
|
13
|
+
Initial release. In-process SCSS/Sass → CSS via a `ctypes` binding over the
|
|
14
|
+
`libsasso` C ABI, bundling the `sasso` compiler crate **v0.6.0**.
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `sasso.compile(source, *, style="expanded", syntax="scss", load_paths=None,
|
|
19
|
+
url=None, importer=None) -> str` — compile a stylesheet string to CSS.
|
|
20
|
+
- `sasso.SassoError` carrying `.message`, `.line`, and `.column`.
|
|
21
|
+
- `sasso.Importer` (ABC) for custom `@use`/`@forward`/`@import` resolution, with
|
|
22
|
+
dart-sass-style two-phase `canonicalize(...)` + `load(...) -> LoadResult`.
|
|
23
|
+
Exceptions raised inside an importer surface as `SassoError` with the original
|
|
24
|
+
chained as `__cause__`.
|
|
25
|
+
- `sasso.LoadResult(contents, syntax="scss", source_map_url=None)`.
|
|
26
|
+
- `sasso.compiler_version()` (the bundled compiler version) and a PEP 561
|
|
27
|
+
`py.typed` marker (the package is fully type-hinted).
|
|
28
|
+
- Prebuilt platform wheels for Linux (manylinux + musllinux, x86_64 + aarch64),
|
|
29
|
+
macOS (arm64 + x86_64), and Windows (x86_64). A single native library per
|
|
30
|
+
`(OS, arch)` serves every CPython 3.x — this is a ctypes binding, not a
|
|
31
|
+
CPython C-extension — plus a buildable-from-source sdist.
|
|
@@ -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.
|
sasso-0.1.0/LICENSE-MIT
ADDED
|
@@ -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.
|
sasso-0.1.0/PKG-INFO
ADDED
|
@@ -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
|
+
[](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).
|
sasso-0.1.0/README.md
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# sasso
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/sasso/)
|
|
4
|
+
|
|
5
|
+
Python bindings for [**sasso**](https://github.com/momiji-rs/sasso) — a fast,
|
|
6
|
+
pure-Rust SCSS/Sass → CSS compiler — over its `libsasso` C ABI.
|
|
7
|
+
|
|
8
|
+
`sasso` runs **in-process** (no Node, no subprocess, no system `sass` binary)
|
|
9
|
+
via a small `ctypes` layer over a prebuilt native library. Each wheel bundles
|
|
10
|
+
the compiled `libsasso` for its platform, so `pip install sasso` is all you
|
|
11
|
+
need.
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install sasso
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
import sasso
|
|
21
|
+
|
|
22
|
+
css = sasso.compile(
|
|
23
|
+
"""
|
|
24
|
+
$brand: #336699;
|
|
25
|
+
.card {
|
|
26
|
+
color: $brand;
|
|
27
|
+
.title { font-weight: bold; }
|
|
28
|
+
}
|
|
29
|
+
"""
|
|
30
|
+
)
|
|
31
|
+
print(css)
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
```python
|
|
35
|
+
# Compressed output, .sass (indented) syntax, filesystem load paths:
|
|
36
|
+
sasso.compile(src, style="compressed")
|
|
37
|
+
sasso.compile(indented_src, syntax="sass")
|
|
38
|
+
sasso.compile(src, load_paths=["styles", "vendor"])
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Errors
|
|
42
|
+
|
|
43
|
+
A compile failure raises `sasso.SassoError`, carrying the diagnostic message
|
|
44
|
+
plus the 1-based source location:
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
try:
|
|
48
|
+
sasso.compile(".broken { color: ; }")
|
|
49
|
+
except sasso.SassoError as e:
|
|
50
|
+
print(e.message, e.line, e.column)
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Custom importers
|
|
54
|
+
|
|
55
|
+
Resolve `@use` / `@forward` / `@import` yourself (from a database, a bundler's
|
|
56
|
+
virtual filesystem, HTTP, …) by subclassing `sasso.Importer`. It mirrors
|
|
57
|
+
dart-sass's two-phase model:
|
|
58
|
+
|
|
59
|
+
```python
|
|
60
|
+
class DictImporter(sasso.Importer):
|
|
61
|
+
def __init__(self, files):
|
|
62
|
+
self.files = files
|
|
63
|
+
|
|
64
|
+
def canonicalize(self, url, *, from_import, containing_url):
|
|
65
|
+
# Map a (possibly relative) URL to a stable canonical key, or None.
|
|
66
|
+
return url if url in self.files else None
|
|
67
|
+
|
|
68
|
+
def load(self, canonical):
|
|
69
|
+
# Fetch the source for a canonical key, or None.
|
|
70
|
+
return sasso.LoadResult(contents=self.files[canonical], syntax="scss")
|
|
71
|
+
|
|
72
|
+
css = sasso.compile('@use "theme";', importer=DictImporter({"theme": "$c: red;"}))
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
An exception raised inside an importer aborts the compile and surfaces as a
|
|
76
|
+
`SassoError` with the original exception chained as `__cause__`.
|
|
77
|
+
|
|
78
|
+
## API
|
|
79
|
+
|
|
80
|
+
| Symbol | Description |
|
|
81
|
+
| --- | --- |
|
|
82
|
+
| `compile(source, *, style="expanded", syntax="scss", load_paths=None, url=None, importer=None) -> str` | Compile a stylesheet string to CSS. |
|
|
83
|
+
| `SassoError` | Raised on failure; has `.message: str`, `.line: int \| None`, `.column: int \| None`. |
|
|
84
|
+
| `Importer` | ABC for custom resolution: `canonicalize(url, *, from_import, containing_url)` + `load(canonical) -> LoadResult \| None`. |
|
|
85
|
+
| `LoadResult(contents, syntax="scss", source_map_url=None)` | Return value of `Importer.load`. |
|
|
86
|
+
| `compiler_version() -> str` | Version of the bundled native `sasso` compiler. |
|
|
87
|
+
| `__version__` | Version of this Python package (independent of the compiler version). |
|
|
88
|
+
|
|
89
|
+
`style` is `"expanded"` or `"compressed"`; `syntax` is `"scss"`, `"sass"`, or
|
|
90
|
+
`"css"`.
|
|
91
|
+
|
|
92
|
+
## Performance
|
|
93
|
+
|
|
94
|
+
`sasso` compiles in-process, so it avoids the per-call process-spawn overhead of
|
|
95
|
+
shelling out to the `sass` CLI. Compiling a non-trivial stylesheet 200× on an
|
|
96
|
+
Apple-silicon Mac (`benchmark.py`, vs. spawning the dart-sass binary per
|
|
97
|
+
compile):
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
output parity (sasso vs dart-sass): IDENTICAL
|
|
101
|
+
|
|
102
|
+
sasso (in-process) : 0.0068 s total (0.034 ms/compile)
|
|
103
|
+
dart-sass (subprocess/ea) : 4.7381 s total (23.691 ms/compile)
|
|
104
|
+
|
|
105
|
+
speedup: sasso is 701.0x faster for 200 compiles in this workload
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Most of that gap is process-startup cost that an in-process binding removes
|
|
109
|
+
entirely; the comparison reflects the realistic "shell out to `sass`" path a
|
|
110
|
+
Python app would otherwise take.
|
|
111
|
+
|
|
112
|
+
## Versioning — which compiler is bundled?
|
|
113
|
+
|
|
114
|
+
The **package** version (`sasso.__version__`) floats independently of the
|
|
115
|
+
**compiler** version it bundles (`sasso.compiler_version()`):
|
|
116
|
+
|
|
117
|
+
| sasso (PyPI) | bundles core `sasso` crate |
|
|
118
|
+
| --- | --- |
|
|
119
|
+
| 0.1.0 | 0.6.0 |
|
|
120
|
+
|
|
121
|
+
Each release notes its bundled core version in the [CHANGELOG](CHANGELOG.md).
|
|
122
|
+
|
|
123
|
+
## How it works
|
|
124
|
+
|
|
125
|
+
The package is a `ctypes` binding — **not** a CPython C-extension — over the
|
|
126
|
+
[`libsasso` C ABI](https://github.com/momiji-rs/sasso/tree/master/ffi). Because
|
|
127
|
+
it has no Python-ABI linkage, a single native library per `(OS, arch)` serves
|
|
128
|
+
every CPython 3.x (and PyPy), so each release ships one platform wheel per
|
|
129
|
+
target rather than one per Python version.
|
|
130
|
+
|
|
131
|
+
The native crate is vendored from `momiji-rs/sasso` `ffi/` and builds against
|
|
132
|
+
the **published** `sasso` crate from crates.io.
|
|
133
|
+
|
|
134
|
+
## License
|
|
135
|
+
|
|
136
|
+
MIT OR Apache-2.0, at your option. See [LICENSE-MIT](LICENSE-MIT) and
|
|
137
|
+
[LICENSE-APACHE](LICENSE-APACHE).
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "sasso"
|
|
7
|
+
version = "0.6.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "83097b3d397d2788442c22b10a20a173a771808342e595cef26241bac803eb07"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "sasso-native"
|
|
13
|
+
version = "0.6.0"
|
|
14
|
+
dependencies = [
|
|
15
|
+
"sasso",
|
|
16
|
+
]
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# The native cdylib for the `sasso` Python package: a C-ABI (FFI) wrapper around
|
|
2
|
+
# the PUBLISHED `sasso` core compiler crate. This crate is VENDORED from the
|
|
3
|
+
# `momiji-rs/sasso` repository's `ffi/` directory (src/lib.rs, include/sasso.h,
|
|
4
|
+
# cbindgen.toml are verbatim copies — keep them in sync with upstream).
|
|
5
|
+
#
|
|
6
|
+
# It is NOT published to crates.io (`publish = false`); it exists only to produce
|
|
7
|
+
# `libsasso.{so,dylib,dll}`, which the Python package bundles as package data and
|
|
8
|
+
# loads via `ctypes`. Crucially, it depends on the core crate via an EXACT version
|
|
9
|
+
# pin from crates.io (NOT a path dependency) — this proves the
|
|
10
|
+
# separate-repo-builds-against-the-published-crate model and is what every
|
|
11
|
+
# downstream consumer of the published `sasso` crate experiences.
|
|
12
|
+
#
|
|
13
|
+
# Self-contained workspace root: the empty `[workspace]` stops cargo's upward
|
|
14
|
+
# manifest walk here, so the crate resolves identically wherever it is checked out.
|
|
15
|
+
[workspace]
|
|
16
|
+
|
|
17
|
+
[package]
|
|
18
|
+
name = "sasso-native"
|
|
19
|
+
# Tracks the bundled core `sasso` compiler version (reported by `sasso_version`).
|
|
20
|
+
# The Python PACKAGE version floats independently — see pyproject.toml / CHANGELOG.
|
|
21
|
+
version = "0.6.0"
|
|
22
|
+
edition = "2021"
|
|
23
|
+
# 1.77 for `std::mem::offset_of!` (per-field versioned-struct gating in
|
|
24
|
+
# read_options), matching the upstream ffi crate.
|
|
25
|
+
rust-version = "1.77"
|
|
26
|
+
license = "MIT OR Apache-2.0"
|
|
27
|
+
publish = false
|
|
28
|
+
description = "C ABI (FFI) cdylib bundled by the sasso Python package."
|
|
29
|
+
|
|
30
|
+
[lib]
|
|
31
|
+
# Output artifact is `libsasso.{so,dylib}` / `sasso.dll` — the conventional name a
|
|
32
|
+
# C consumer (here, Python ctypes) loads. The core crate is pulled in under the
|
|
33
|
+
# alias `sasso_core` (below) so this crate's own lib name `sasso` doesn't clash.
|
|
34
|
+
name = "sasso"
|
|
35
|
+
crate-type = ["cdylib"]
|
|
36
|
+
|
|
37
|
+
[dependencies]
|
|
38
|
+
# The PUBLISHED core compiler, pinned exactly to the ABI surface this vendored
|
|
39
|
+
# wrapper targets. NO path dependency: it resolves from crates.io. Renamed to
|
|
40
|
+
# `sasso_core` so this package's lib can be named `sasso` (a crate may not depend
|
|
41
|
+
# on a crate of its own name without a rename). Bump this pin deliberately to
|
|
42
|
+
# adopt a new core release (and re-vendor src/lib.rs + include/sasso.h to match).
|
|
43
|
+
sasso_core = { package = "sasso", version = "=0.6.0" }
|
|
44
|
+
|
|
45
|
+
[profile.release]
|
|
46
|
+
# Copied from the upstream ffi crate. `panic = "unwind"` is set EXPLICITLY (not
|
|
47
|
+
# left to the default): the ABI's safety relies on `catch_unwind` to stop a Rust
|
|
48
|
+
# panic from crossing the C boundary (which would be UB), and that only works
|
|
49
|
+
# under the unwind strategy — `abort` would make `catch_unwind` a no-op.
|
|
50
|
+
panic = "unwind"
|
|
51
|
+
lto = "thin"
|
|
52
|
+
codegen-units = 1
|
|
53
|
+
strip = true
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Regenerate the C header with: cbindgen --config cbindgen.toml --output include/sasso.h
|
|
2
|
+
#
|
|
3
|
+
# The committed include/sasso.h is curated (hand-tuned comments + the
|
|
4
|
+
# SASSO_STYLE_*/SASSO_SYNTAX_* macros), so review the diff after regenerating.
|
|
5
|
+
language = "C"
|
|
6
|
+
include_guard = "SASSO_H"
|
|
7
|
+
pragma_once = false
|
|
8
|
+
cpp_compat = true
|
|
9
|
+
tab_width = 2
|
|
10
|
+
style = "type"
|
|
11
|
+
|
|
12
|
+
[export]
|
|
13
|
+
prefix = ""
|
|
14
|
+
item_types = ["enums", "structs", "functions", "constants"]
|
|
15
|
+
|
|
16
|
+
[parse]
|
|
17
|
+
parse_deps = false
|