An open API service indexing awesome lists of open source software.

https://github.com/satoryu/kamikiri

Kamikiri is a command-line XML/HTML processor to extract parts of a given XML/HTML document.
https://github.com/satoryu/kamikiri

cli xml-processing xpath

Last synced: about 1 year ago
JSON representation

Kamikiri is a command-line XML/HTML processor to extract parts of a given XML/HTML document.

Awesome Lists containing this project

README

          

# Kamikiri

Kamikiri is a command-line XML/HTML processor to extract parts of a given XML/HTML document.

## Installation

gem install kamikiri

## Usage

This cli requires two options, `--file` and `--xpath`:

kamikiri --file /path/to/xml/file.xml --xpath '//foo/bar'

Here is an example to extract CD informatoin whose price is higher than $10 and released in 1990s from [the catalog](https://www.w3schools.com/xml/cd_catalog.xml):

$ kamikiri --file https://www.w3schools.com/xml/cd_catalog.xml --xpath '//CD[PRICE > 10.0][YEAR >= 1990]'

Still got the blues
Gary Moore
UK
Virgin records
10.20
1990


One night only
Bee Gees
UK
Polydor
10.90
1998


Romanza
Andrea Bocelli
EU
Polydor
10.80
1996


Black angel
Savage Rose
EU
Mega
10.90
1995


1999 Grammy Nominees
Many
USA
Grammy
10.20
1999

## Development

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/satoryu/kamikiri. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

## Code of Conduct

Everyone interacting in the Kamikiri project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/satoryu/kamikiri/blob/master/CODE_OF_CONDUCT.md).