servo-fetch 0.12.0

Fetch, render, and extract web content as Markdown, JSON, or screenshots with an embedded Servo browser engine. No Chromium required.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Blocking API mirror of the top-level async API.

mod client;

pub use client::{Client, ClientBuilder};

pub use crate::crawl::{crawl_blocking as crawl, crawl_each_blocking as crawl_each};
pub use crate::fetch::{
    extract_json_blocking as extract_json, fetch_blocking as fetch, markdown_blocking as markdown,
    text_blocking as text,
};
pub use crate::map::map_blocking as map;