
Rust Input Function Example
Pricing
Pay per usage

Rust Input Function Example
Dynamically compile and run input-provided page function. Like Cheerio Scraper but in Rust.
0.0 (0)
Pricing
Pay per usage
2
Monthly users
1
Last modified
5 months ago
You can access the Rust Input Function Example programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1echo '{
2 "url": "https://apify.com",
3 "page_function": "use serde_json::{Value,json};\\nuse scraper::{Html, Selector};\\n\\nfn selector_to_text(document: &Html, selector: &str) -> Option<String> {\\n document\\n .select(&Selector::parse(selector).unwrap())\\n .next()\\n .map(|el| el.text().next().unwrap().into() )\\n}\\n\\n#[no_mangle]\\npub fn page_function (document: &Html) -> Value { \\n println!(\\"page_function starting\\");\\n\\n let title = selector_to_text(&document, \\"title\\");\\n println!(\\"extracted title: {:?}\\", title);\\n\\n let header = selector_to_text(&document, \\"h1\\");\\n println!(\\"extracted header: {:?}\\", header);\\n\\n let companies_using_apify = document\\n .select(&Selector::parse(\\".Logos__container\\").unwrap())\\n .next().unwrap()\\n .select(&Selector::parse(\\"img\\").unwrap())\\n .map(|el| el.value().attr(\\"alt\\").unwrap().to_string())\\n .collect::<Vec<String>>();\\n\\n println!(\\"extracted companies_using_apify: {:?}\\", companies_using_apify);\\n\\n let output = json!({\\n \\"title\\": title,\\n \\"header\\": header,\\n \\"companies_using_apify\\": companies_using_apify,\\n });\\n println!(\\"inside pageFunction output: {:?}\\", output);\\n output\\n}"
4}' |
5apify call lukaskrivka/rust-input-function-example --silent --output-dataset
Rust Input Function Example API through CLI
The Apify CLI is the official tool that allows you to use Rust Input Function Example locally, providing convenience functions and automatic retries on errors.
Install the Apify CLI
1npm i -g apify-cli
2apify login
Other API clients include:
Pricing
Pricing model
Pay per usageThis Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage.