Rust Input Function Example avatar

Rust Input Function Example

Try for free

No credit card required

View all Actors
Rust Input Function Example

Rust Input Function Example

lukaskrivka/rust-input-function-example
Try for free

No credit card required

Dynamically compile and run input-provided page function. Like Cheerio Scraper but in Rust.

You can access the Rust Input Function Example programmatically from your own applications by using the Apify API. You can 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:

Developer
Maintained by Community
Actor metrics
  • 1 monthly user
  • 2 stars
  • 100.0% runs succeeded
  • Created in Dec 2023
  • Modified 10 months ago