Crux parses Web pages to identify the crux of an article — the very essential points — minus all the fluff. The library consists of multiple independent APIs. You can pick and choose which ones you want to use. If you use Crux in an Android app, they are designed to be independent so that Proguard or other minification tools can strip out the parts you don’t use.
- Rich formatted content available, not just plain text.
- Support for more sites & better parsing overall.
- Support for more metadata formats: OpenGraph, Twitter Cards, Schema.org.
- Small footprint and code size: JSoup is the only required dependency.
- Fewer setters/getters, to keep the method count low (this is important for Android).
- The ability to use HTTP libraries besides the default HttpUrlConnection, such as OkHttp, under the hood.
- Cleaner, leaner code (compared to other libraries not optimized for Android)
- First-class support for importing into Android Studio projects via Gradle.
- Continuous integration with unit tests and golden file tests.
In a background thread, make a network request and obtain the rawHTML
of the page you would like to analyze.
String url = "https://example.com/article.html";
String rawHTML = "<html><body><h1>This is an article</h1></body></html>";
Article article = ArticleExtractor.with(url, rawHTML)
.extractMetadata()
.extractContent() // If you only need metadata, you can skip `.extractorContent()`
.article();
On the UI thread:
// Use article.document, article.title, etc.
From a single DOM Element root, the Image URL API inspects the sub-tree and returns the best
possible image URL candidate available within it. It does this by scanning within the DOM tree
for interesting src
& style
tags.
All URLs are resolved as absolute URLs, even if the HTML contained relative URLs.
ImageUrlExtractor.with(url, domElement).findImage().imageUrl();
From a single DOM Element root, the Image URL API inspects the sub-tree and returns the best
possible link URL candidate available within it. It does this by scanning within the DOM tree
for interesting href
tags.
All URLs are resolved as absolute URLs, even if the HTML contained relative URLs.
LinkUrlExtractor.with(url, domElement).findLink().linkUrl();
This API examines a given URL (without connecting to the server), and returns heuristically-determined answers to questions such as:
- Is this URL likely a video URL?
- Is this URL likely an image URL?
- Is this URL likely an audio URL?
- Is this URL likely an executable URL?
- Is this URL likely an archive URL?
This API also supports resolving redirects for certain well-known redirectors, with the precondition that the target URL be available as part of this candidate URL. In other words, this API will not be able to resolve redirectors that perform a HTTP 301 redirect.
CruxURL cruxUrl = CruxURL.parse("https://example.com/article.html");
cruxUrl.resolveRedirects();
cruxUrl.isLikelyArticle(); // Returns true.
cruxUrl.isLikelyImage(); // Returns false.
Include Crux in your project, then see sample code for each API provided above.
Note that the Crux API is not yet final (we do not have a 1.0 release candidate yet), and it is likely to change. Feel free to use in your own projects, and let us know if the current API can be improved upon. And be prepared to update your apps if you update to a newer version of Crux that changes the API. Once we hit 1.0, we will be keeping the API fairly constant, so you would not need to keep updating your apps.
Project/build.gradle
:
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
Module/build.gradle
:
dependencies {
compile 'com.github.chimbori:crux:-SNAPSHOT'
}
Crux began as a fork of Snacktory with the goal of making it more performant on Android devices, but it has quickly gained several new features that are not available in Snacktory.
Snacktory (and thus Crux) borrow ideas and test cases from Goose and JReadability.
Copyright 2016, Chimbori, makers of Hermit, the Lite Apps Browser.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.