├── .github └── workflows │ ├── install_from_github_repo.yml │ └── pythonapp.yml ├── .gitignore ├── .pylintrc ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── tq ├── doc ├── compile_manpage.sh ├── tq.1 └── tq.1.md ├── setup.py ├── tests ├── no-selector.args ├── no-selector.expected-output ├── no-selector.html ├── not-first-of-type.args ├── not-first-of-type.expected-output ├── not-first-of-type.html ├── utf8.args ├── utf8.expected-output ├── utf8.html ├── version.args ├── version.expected-output └── version.html ├── tq └── __init__.py ├── tq_bin └── tqtest.sh /.github/workflows/install_from_github_repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/.github/workflows/install_from_github_repo.yml -------------------------------------------------------------------------------- /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/README.md -------------------------------------------------------------------------------- /bin/tq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/bin/tq -------------------------------------------------------------------------------- /doc/compile_manpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/doc/compile_manpage.sh -------------------------------------------------------------------------------- /doc/tq.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/doc/tq.1 -------------------------------------------------------------------------------- /doc/tq.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/doc/tq.1.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/setup.py -------------------------------------------------------------------------------- /tests/no-selector.args: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/no-selector.expected-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/tests/no-selector.expected-output -------------------------------------------------------------------------------- /tests/no-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/tests/no-selector.html -------------------------------------------------------------------------------- /tests/not-first-of-type.args: -------------------------------------------------------------------------------- 1 | --text .a-class:not(:first-of-type) -------------------------------------------------------------------------------- /tests/not-first-of-type.expected-output: -------------------------------------------------------------------------------- 1 | B 2 | C 3 | -------------------------------------------------------------------------------- /tests/not-first-of-type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/tests/not-first-of-type.html -------------------------------------------------------------------------------- /tests/utf8.args: -------------------------------------------------------------------------------- 1 | --text .Ça -------------------------------------------------------------------------------- /tests/utf8.expected-output: -------------------------------------------------------------------------------- 1 | LÀ 2 | -------------------------------------------------------------------------------- /tests/utf8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/tests/utf8.html -------------------------------------------------------------------------------- /tests/version.args: -------------------------------------------------------------------------------- 1 | --version -------------------------------------------------------------------------------- /tests/version.expected-output: -------------------------------------------------------------------------------- 1 | 0.2.1 2 | -------------------------------------------------------------------------------- /tests/version.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/tq/__init__.py -------------------------------------------------------------------------------- /tq_bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/tq_bin -------------------------------------------------------------------------------- /tqtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plainas/tq/HEAD/tqtest.sh --------------------------------------------------------------------------------