Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oblac/jodd-lagarto
Java HTML parsers suite.
https://github.com/oblac/jodd-lagarto
html html-parser java jquery parser
Last synced: 2 months ago
JSON representation
Java HTML parsers suite.
- Host: GitHub
- URL: https://github.com/oblac/jodd-lagarto
- Owner: oblac
- License: bsd-2-clause
- Created: 2020-07-20T08:13:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-08T09:45:45.000Z (over 2 years ago)
- Last Synced: 2024-03-26T17:36:32.347Z (10 months ago)
- Topics: html, html-parser, java, jquery, parser
- Language: HTML
- Homepage: https://lagarto.jodd.org
- Size: 1.63 MB
- Stars: 20
- Watchers: 4
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Jodd Lagarto
[![Jodd](https://img.shields.io/badge/>-Jodd-orange)](https://github.com/oblac/jodd)
![GitHub release](https://img.shields.io/github/release/oblac/jodd-lagarto.svg)
![Maven Central](https://img.shields.io/maven-central/v/org.jodd/jodd-lagarto)
[![javadoc](https://javadoc.io/badge2/org.jodd/jodd-lagarto/javadoc.svg)](https://javadoc.io/doc/org.jodd/jodd-lagarto)
[![Build](https://github.com/oblac/jodd-lagarto/actions/workflows/gradle-build.yml/badge.svg)](https://github.com/oblac/jodd-lagarto/actions/workflows/gradle-build.yml)
[![codecov](https://codecov.io/gh/oblac/jodd-lagarto/branch/master/graph/badge.svg)](https://codecov.io/gh/oblac/jodd-lagarto)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/cb8b9fbd66a84265b4cf526f5887edd5)](https://www.codacy.com/gh/oblac/jodd-lagarto?utm_source=github.com&utm_medium=referral&utm_content=oblac/jodd-lagarto&utm_campaign=Badge_Grade)
[![Stack Overflow](https://img.shields.io/badge/stack%20overflow-lagarto-4183C4.svg)](https://stackoverflow.com/questions/tagged/jodd-lagarto)
[![BSD License](https://img.shields.io/badge/license-BSD--2--Clause-blue.svg)](https://github.com/oblac/jodd-lagarto/blob/master/LICENSE)🌟 Java HTML parsers suite.
🏡 Website: [lagarto.jodd.org](https://lagarto.jodd.org)
❤️ For developers, by developer.
### 🦎 Overview
Lagarto Suite is the family of HTML/XML parsers written in Java. It consists of the following libraries:
+ `LagartoParser` is an all-purpose fast and versatile event-based HTML parser. You can use it to modify or analyze some
markup content, allowing you to assemble custom complex transformations and code analysis tools quickly. It is
performant and follows the rules of the official HTML specification.
+ `LagartoDom` builds a DOM tree in memory from the input. You can manipulate a tree more conveniently, with minor
performance sacrifice.
+ `Jerry` is a "jQuery in Java" - you can use the familiar syntax of JavaScript library inside of Java to parse and
manipulate HTML.
+ `CSSelly` - finally, the parser of CSS3 selectors.