Crates.io | urlnorm |
lib.rs | urlnorm |
version | 0.1.6 |
source | src |
created_at | 2023-02-28 21:16:33.735868 |
updated_at | 2024-05-28 15:42:58.906098 |
description | A URL normalization library for Rust |
homepage | |
repository | https://github.com/progscrape/urlnorm |
max_upload_size | |
id | 797525 |
size | 2,847,555 |
URL normalization library for Rust, mainly designed to normalize URLs for https://progscrape.com.
The normalization algorithm uses the following heuristics:
http://example.com
and https://example.com
are considered equivalent.www.
and m.
.http://example.com//foo/
and http://example.com/foo
are considered equivalent.utm_XYZ
and the like)./#/
and #!
)For long-term storage and clustering of URLs, it is recommended that [UrlNormalizer::compute_normalization_string
] is used to
compute a representation of the URL that can be compared with standard string comparison operators.
The normalization strings are not a perfect clustering algorithm for content, but they will tend to cluster URLs pointing to the same data together. For a more accurate clustering algorithm, this library can be paired with a more advanced DUST-aware processing algorithm (for example, see DustBuster from "Do Not Crawl in the DUST: Different URLs with Similar Text").
# use url::Url;
# use urlnorm::UrlNormalizer;
let norm = UrlNormalizer::default();
let url = Url::parse("http://www.google.com").unwrap();
assert_eq!(norm.compute_normalization_string(&url), "google.com:");
For more advanced use cases, the [Options
] class allows end-users to provide custom regular expressions for normalization.
The normalization string gives an idea of what parts of the URL are considered significant:
http://efekarakus.github.io/twitch-analytics/#/revenue
efekarakus.github.io:twitch-analytics:revenue:
http://fusion.net/story/121315/maybe-crickets-arent-the-food-of-the-future-after-all/?utm_source=facebook&utm_medium=social&utm_campaign=quartz
fusion.net:story:121315:maybe-crickets-arent-the-food-of-the-future-after-all:
http://www.capradio.org/news/npr/story?storyid=382276026
capradio.org:news:npr:story:storyid:382276026:
http://www.charlotteobserver.com/2015/02/23/5534630/charlotte-city-council-approves.html#.VOxrajTF91E
charlotteobserver.com:2015:02:23:5534630:charlotte-city-council-approves:
http://www.m.webmd.com/melanoma-skin-cancer/news/20150409/fewer-us-children-getting-melanoma-study?src=RSS_PUBLIC
webmd.com:melanoma-skin-cancer:news:20150409:fewer-us-children-getting-melanoma-study:src:RSS_PUBLIC: