Skip to main content

Fast HTML5 CSS selector.

Project description

https://img.shields.io/pypi/v/selectolax.svg https://img.shields.io/travis/rushter/selectolax.svg

A fast HTML5 parser and CSS selectors using Modest engine.

  • Alpha version.

Installation

From PyPI using pip:

pip install selectolax

Development version from github:

git clone --recursive  https://github.com/rushter/selectolax
cd selectolax
pip -r requirements_dev.txt
python setup.py install

Examples

from selectolax.parser import HTMLParser

html = "<div><p id=p1><p id=p2><p id=p3><a>link</a><p id=p4><p id=p5>text<p id=p6></div>"
selector = "div > :nth-child(2n+1):not(:has(a))"

for node in HTMLParser(html).css(selector):
    print(node.attributes, node.text(), node.tag)
    print(node.parent.tag)
    print(node.html)

Simple Benchmark

  • Average of 10 experiments to parse and retrieve URLs from 800 Google SERP pages.

Package

Time

Memory (peak)

selectolax

2.38 sec.

768.11 MB

lxml

18.67 sec.

769.21 MB

License

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

selectolax-0.1.9.tar.gz (1.3 MB view hashes)

Uploaded Source

Built Distribution

selectolax-0.1.9-cp36-cp36m-macosx_10_7_x86_64.whl (663.2 kB view hashes)

Uploaded CPython 3.6m macOS 10.7+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page