selectolax 0.3.33__cp312-cp312-macosx_10_13_x86_64.whl → 0.3.34__cp312-cp312-macosx_10_13_x86_64.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.

Potentially problematic release.


This version of selectolax might be problematic. Click here for more details.

selectolax/__init__.py CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  __author__ = """Artem Golubin"""
5
5
  __email__ = "me@rushter.com"
6
- __version__ = "0.3.33"
6
+ __version__ = "0.3.34"
7
7
 
8
8
  from . import lexbor, modest, parser
@@ -180,6 +180,12 @@ cdef class LexborNode:
180
180
  Matches pattern `query` against HTML tree.
181
181
  `CSS selectors reference <https://www.w3schools.com/cssref/css_selectors.asp>`_.
182
182
 
183
+ Special selectors:
184
+
185
+ - parser.css('p:lexbor-contains("awesome" i)') -- case-insensitive contains
186
+ - parser.css('p:lexbor-contains("awesome")') -- case-sensitive contains
187
+
188
+
183
189
  Parameters
184
190
  ----------
185
191
  query : str