File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Install with `pip`:
52
52
pip install css_inline
53
53
```
54
54
55
- Pre-compiled wheels are available for most popular platforms.
55
+ Pre-compiled wheels are available for most popular platforms.
56
56
If not available for your platform, a Rust compiler will be needed to build this package from source. Rust version 1.60 or higher is required.
57
57
58
58
## Usage
@@ -82,7 +82,7 @@ inlined = css_inline.inline(HTML)
82
82
# </html>
83
83
```
84
84
85
- When there is a need to inline multiple HTML documents simultaneously, ` css_inline ` offers the ` inline_many ` function.
85
+ When there is a need to inline multiple HTML documents simultaneously, ` css_inline ` offers the ` inline_many ` function.
86
86
This feature allows for concurrent processing of several inputs, significantly improving performance when dealing with a large number of documents.
87
87
88
88
``` python
@@ -91,7 +91,7 @@ import css_inline
91
91
css_inline.inline_many([" <...>" , " <...>" ])
92
92
```
93
93
94
- Under the hood, ` inline_many ` , spawns threads at the Rust layer to handle the parallel processing of inputs.
94
+ Under the hood, ` inline_many ` , spawns threads at the Rust layer to handle the parallel processing of inputs.
95
95
This results in faster execution times compared to employing parallel processing techniques at the Python level.
96
96
97
97
** Note** : To fully benefit from ` inline_many ` , you should run your application on a multicore machine.
You can’t perform that action at this time.
0 commit comments