#open-graph #extract #markup #parses #protocols #html #fork

opengraph-rs

Parses html and extracts Open Graph protocol markup. Fork of https://github.com/kumabook/opengraph

1 unstable release

Uses old Rust 2015

0.2.6 Mar 15, 2024

#145 in Video

Download history 109/week @ 2024-03-13 15/week @ 2024-03-20

124 downloads per month

MIT license

18KB
461 lines

opengraph

opengraph is a library that parses html and extracts Open Graph protocol markup.

Usage

  • Add opengraph to dependencies in Cargo.toml
[dependencies]
opengraph = "^0"
  • Then, use opengraph::scrape as below:

extern crate opengraph;

fn main() {
  match opengraph::scrape("https://spincoaster.com/chromeo-juice", Default::default()) {
      Ok(object) => {
          println!("{:?}", object);
      },
      Err(_) => println!("error occured"),
  }
}

or use opengraph::extract as below:

extern crate opengraph;

fn main() {
    let x = r#"
<html prefix="og: http://ogp.me/ns#">
<head>
<title>The Rock (1996)</title>
<meta property="og:title" content="The Rock" />
<meta property="og:type" content="video.movie" />
<meta property="og:url" content="http://www.imdb.com/title/tt0117500/" />
<meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" />
</head>
</html>
             "#;
    match opengraph::extract(&mut x.to_string().as_bytes(), Default::default()) {
        Ok(object) => {
            println!("{:?}", object);
        },
        Err(_) => println!("error occured"),
    }
}

License

MIT

Dependencies

~20MB
~449K SLoC