#url #parse-url #uri #urllib

urlparse

This is a URL parsing library like urllib.parse in Python3.x

5 releases

Uses old Rust 2015

0.7.3 Feb 13, 2016
0.7.2 Jan 13, 2016
0.7.1 Jan 7, 2016
0.7.0 Dec 25, 2015
0.6.0 Dec 24, 2015

#43 in #parse-url

Download history 4543/week @ 2023-12-07 3902/week @ 2023-12-14 2200/week @ 2023-12-21 3084/week @ 2023-12-28 5902/week @ 2024-01-04 4692/week @ 2024-01-11 5491/week @ 2024-01-18 4503/week @ 2024-01-25 4558/week @ 2024-02-01 5440/week @ 2024-02-08 5746/week @ 2024-02-15 5319/week @ 2024-02-22 6371/week @ 2024-02-29 5230/week @ 2024-03-07 4912/week @ 2024-03-14 3903/week @ 2024-03-21

21,398 downloads per month
Used in 32 crates (10 directly)

MIT license

18KB
302 lines

rust-urlparse

Build Status

This is a URL parsing library written in Rust.

The goal of this project is to provide a simple parsing URL library like urllib.parse in Python3.x.

Examples

Source code

extern crate urlparse;
use urlparse::urlparse;
use urlparse::GetQuery;  // Trait

fn main() {
    let url = urlparse("http://www.example.com/foo?bar=123&col=println%21%28%22TEST%21%22%29&col=sub");
    let query = url.get_parsed_query().unwrap();
    println!("{:?}", url);
    println!("{:?}", query.get_first_from_str("col"));
}

Output

Url { scheme: "http", netloc: "www.example.com", path: "/foo", query: Some("bar=123&col=println%21%28%22TEST%21%22%29&col=sub"), fragment: None, username: None, password: None, hostname: Some("www.example.com"), port: None }
Some("println!(\"TEST!\")")

License

MIT

Installation

If you're using Cargo, just add urlparse to your Cargo.toml:

[dependencies.urlparse]
version = "0.7.2"

Documentation

The documentation is hosted online.

No runtime deps