Command-line tool for querying, slicing & dicing HTML using the XPath/XQuery derivative HQuery.
Project description
# hq Powerful HTML slicing and dicing at the command line.
[![Build Status](https://travis-ci.org/rbwinslow/hq.svg?branch=master)](https://travis-ci.org/rbwinslow/hq) [![Coverage Status](https://coveralls.io/repos/github/rbwinslow/hq/badge.svg?branch=master)](https://coveralls.io/github/rbwinslow/hq?branch=master)
hq is a Python-based command-line tool for querying HTML, manipulating data and producing results as HTML, JSON or any other format. It’s based on a compact, flexible expression language that started out as an XPath implementation but ended up going a few different places, so I’m going ahead and calling it HQuery.
HQuery is 99% compliant with the [XPath 1.0](https://www.w3.org/TR/xpath/) standard, minus some features not applicable to HTML. That’s nice for querying, but you need more power to take control of the shape and format of the data you produce. To that end, HQuery also includes…
Nuggets of XQuery — only a few of the good parts! Just enough for iteration, branching and the like.
XPath expansions for HTML — including a class:: axis and class() function, plus abbreviated axes to keep things terse.
Super-charged string interpolation — with powerful filters that you can chain together to transform data as you produce it.
Computed constructors for HTML and JSON — so you can programmatically assemble and output new HTML or JSON objects and arrays.
Out-of-left-field union decomposition — enabling amazingly terse and powerful mappings from clauses in a union to different expressions.
## Installing hq
pip install hq
## Running hq
cat /path/to/file.html | hq ‘Hello, ${/html/head/title}!’
…or…
hq -f /path/to/file.html ‘Hello, ${/html/head/title}!’
To print usage information:
hq –help
## Learning hq
The [wiki](https://github.com/rbwinslow/hq/wiki) discusses the [motivations](https://github.com/rbwinslow/hq/wiki/Why-HQuery%3F) guiding the HQuery language’s design and provides a [language reference](https://github.com/rbwinslow/hq/wiki/Language-Reference).
## Contributing to hq
hq is tested against Python 2.7 and recent generations of Python 3 (3.4 and 3.5, as of this writing). The file structure and setup.py script for the project are based on [this blog post](https://gehrcke.de/2014/02/distributing-a-python-command-line-application/).
hq’s dependencies are split into a “base” file, the subset needed to run the application, and a “dev” file providing the tools necessary to run tests and the like. To do development:
pip install -r requirements/dev.txt
The parsing logic in hquery_processor.py is based on the [top-down operator precendence](https://www.crockford.com/javascript/tdop/tdop.html) approach.
### Running Tests
py.test
The “dev.txt” dependencies also include [pytest-cov](https://pypi.python.org/pypi/pytest-cov), so you can generate a nice coverage report (which you’ll find in the htmlcov directory):
py.test –cov=hq –cov-report html
If you want to turn verbosity on to figure out what’s going on in a test, you need the –gabby flag (since py.test owns its own -v flag). You’ll probably also want to run just one test at a time, because –gabby is way gabby:
py.test –gabby -vv -k some_particular_test_function
### Uploading to PyPI
This and other aspects of project setup, including running the CLI locally and using setup.py, are covered in the blog post linked above. For the sake of convenience, here’s the part about uploading to PyPI:
$ python setup.py sdist $ /bin/ls dist cmdline-bootstrap-0.2.0.tar.gz
Project details
Release history Release notifications | RSS feed
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 hq-0.0.4.tar.gz
.
File metadata
- Download URL: hq-0.0.4.tar.gz
- Upload date:
- Size: 43.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4500928fff26587c4570c01096a4c20a9b39ef93a75224652233b9fd332da1f |
|
MD5 | 5573177f673a5530d2a4f2fcccb3c751 |
|
BLAKE2b-256 | 4754ce3991a0537753375ab7f2d72436095f0dc8e6445380c92cdb3470d94822 |