No project description provided
Project description
Domselect
Domselect provides high-level API to work with structure of HTML document using one of HTML processing backend. To work with HTML document you have to create so-called selector object from raw content of HTML document. That selector will be bound to the root node of HTML structure. Then you can call different methods of these selector to build other selectors bound to nested parts of HTML structure. Selector object use DOM constructed by HTML processing backend to extract low-level raw nodes and wrap then into selector interface. In case of non-standard scenario you can get raw node from selector node to do some low-level operations.
Selector Backends
Domselect library provides these selectors:
-
LexborSelector powered by selectolax and lexbor libraries. The type of raw node is
selectolax.lexbor.LexborNode. Query language is CSS. -
LxmlSelector powered by lxml library. The type of raw node is
lxml.html.HtmlElement. Query language is CSS.
Selector Creating
Let's have some HTML document HTML = "<div>test</div>"
To create lexbor selector from content of HTML document:
from domselect import LexborSelector
sel = LexborSelector.from_content(HTML)
Also you can create selector from raw node:
from domselect import LexborSelector
from selectolax.lexbor import LexborHTMLParser
node = LexborHTMLParser(HTML).css_first("div")
sel = LexborSelector(node)
Same goes for lxml backend. Here is an example of creating lxml selector from raw node:
from lxml.html import fromstring
node = fromstring(HTML)
sel = LxmlSelector(node)
Node Traversal Methods
Each of these methods return other selectors of same type i.e. LexborSelector return other LexborSelectors and LxmlSelector returns other LxmlSelectors. Query language is CSS.
Method find(query: str) returns list of selectors bound to raw nodes found by CSS query.
Method first(query: str) returns None of selector bound to first raw node found by CSS query.
There is similar find_raw and first_raw methods which works in same way but returns low-level raw nodes
i.e. they do not wrap found nodes into selector interface.
Method parent() returns selector bound to raw node which is parent to raw node of current selector.
Method exists(query: str) returns boolean flag indicates if any node has been found by CSS query.
Method first_contains(query: str, pattern: str[, default: None]) returns selector bound to first raw node
found by CSS query and which contains text as pattern parameter. If node is not found then
NodeNotFoundError is raised. You can pass default=None optional parameter to return None in case
of node is not found.
Node Properties Methods
Method attr(name: str[, default: None|str]) returns content of node's attribute of given name.
If node does not have such attribute the AttributeNotFoundError is raised. If you pass optional
default: None|str parameter the method will return None or str if attribute does not exists.
Method text([strip: bool]) returns text content of current node and all its sub-nodes. By default
returned text is stripped at beginning and ending from whitespaces, tabulations and line-breaks. You
can turn off striping by passing strip=False parameter.
Method tag() returns tag name of raw node to which current selector is bound.
Traversal and Properties Methods
These methods combine two operations: search node by query and do something on found node. They are helful
if you want to get text or attribute from found node by this node might not exists. Such methods allows you
to return reasonable default value in case node is not found. On contrary, if you use call chain like first(..).text()
Then you'll not be able to return from text() default value because first() will raise Exception if node is not found.
Method first_attr(query: str, name: str[, default: None|str]) returns content of attribute of given name of node
found by given query. If node does not have such attribute the AttributeNotFoundError is raised.
If node is not found by given query the NodeNotFoundError is raised. If you pass optional
default: None|str parameter the method will return None or str instead of rasing exceptions.
Method first_text(query: str[, default: None|str, strip: bool]) returns text content of raw node (and all its
sub-nodes) found by given query. If node is not found the NodeNotFoundError is raised. Use optional default: None|str
parametere to return None or str instead of raising exceptions. You can control text stripping with strip
parameter (see description of text() method).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file domselect-0.0.2.tar.gz.
File metadata
- Download URL: domselect-0.0.2.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
556f39c618b1749881f36a0580acc130a1746d35a196899957dcbd00aac54afd
|
|
| MD5 |
f1c718a44c1826982fc443a34c5a42a9
|
|
| BLAKE2b-256 |
0e66d5ba14fd8a566bbe6f4db117095328ea50090d32ffea65c39e3eee9862e2
|