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.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "url": "https://apify.com",
11    "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}"
12};
13
14(async () => {
15    // Run the Actor and wait for it to finish
16    const run = await client.actor("lukaskrivka/rust-input-function-example").call(input);
17
18    // Fetch and print Actor results from the run's dataset (if any)
19    console.log('Results from dataset');
20    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
21    const { items } = await client.dataset(run.defaultDatasetId).listItems();
22    items.forEach((item) => {
23        console.dir(item);
24    });
25})();
26
27// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 1 monthly users
  • 96.7% runs succeeded
  • days response time
  • Created in Dec 2023
  • Modified 5 months ago