All Collections
Developing Actors
Converting a task to an actor and publishing it on Apify Store
Converting a task to an actor and publishing it on Apify Store

Learn how to convert an actor task to an actor using the metamorph feature, and then publish it in Apify Store to let other people use it.

Marek Trunkát avatar
Written by Marek Trunkát
Updated over a week ago

You might be wondering whether it is possible to publish actor tasks. The answer is: sort of. Instead of publishing tasks directly, you can create a new unique actor from your task using the actor metamorph feature and publish the actor instead.

This allows you to leverage actor features such as input schema to define user-friendly input fields for your actor or add a README.md file containing documentation for the new actor.

In this example, we will publish an actor task of the apify/web-scraper actor that scrapes all articles from a selected category at Economist.com website.

First, create a new task of the  apify/web-scraper actor and set the following input configuration:

  • Start URL is the first page of the category we want to scrape https://www.economist.com/united-states/?page=1 

  • Pseudo-URL is a pattern that matches all the subsequent pages https://www.economist.com/united-states/?page=[\d+] 

  • Link selector is a 

  • A page function that is executed on each page the crawler visits:

async function pageFunction(context) {
    // request is an instance of Apify.Request (https://sdk.apify.com/docs/api/request)
    // $ is an instance of jQuery (http://jquery.com/)
    const request = context.request;
    const $ = context.jQuery;
    const pageNum = parseInt(request.url.split('?page=').pop());

    context.log.info(Scraping ${context.request.url});

    // Extract all articles.
    const articles = [];
    $('article').each((index, articleEl) => {
        const $articleEl = $(articleEl);

        // H3 contains 2 child elements where first one is topic and second is article title.
        const $h3El = $articleEl.find('h3');

        // Extract additonal info and push it to data object.
        articles.push({
            pageNum,
            topic: $h3El.children().first().text(),
            title: $h3El.children().last().text(),
            url: $articleEl.find('a')[0].href,
            teaser: $articleEl.find('.teaser__text').text(),
        });
    });

    // Return results.
    return articles;
}

Now that you have created the task, click the "Create actor from task" button in the top-right menu:

After confirmation, the system creates a new actor and opens its page. If you go to the Source tab and open the main.js  file, you will see that it contains the whole actor task configuration and at the last line it contains Apify.metamorph()  call to metamorh your actor run to apify/web-scraper.


const Apify = require('apify');

Apify.main(async () => {
    // Get input of the actor. Input fields can be modified in INPUT_SCHEMA.json file.
    // For more information, see https://apify.com/docs/actor/input-schema

    const input = await Apify.getInput();
    console.log('Input:');
    console.dir(input);

    // Here you can prepare your input for actor apify/web-scraper this input is based on a actor
    // task you used as the starting point.
    const metamorphInput = {
        "startUrls": [
            {
                "url": "https://www.economist.com/united-states/?page=1",
                "method": "GET"
            }
        ],
        "pseudoUrls": [
            {
                "purl": "https://www.economist.com/united-states/?page=[\\d+]",
                "method": "GET"
            }
        ],        
        "useRequestQueue": true,
        "linkSelector": "a",
       
        // ... here are other fields such as pageFunction that we omit for simplicity
    };

    // Now let's metamorph into actor apify/web-scraper using the created input.
    await Apify.metamorph('apify/web-scraper', metamorphInput);
});

To learn more about the metamorph feature, please see the documentation.

Now, let's say we want to enable users of the new actor to select a category on the Economist.com for actor input. To do that, we just need to update the following lines of code:

"startUrls": [
    {
        "url": "https://www.economist.com/united-states/?page=1",
        "method": "GET"
    }
],
"pseudoUrls": [
    {
        "purl": "https://www.economist.com/united-states/?page=[\\d+]",
        "method": "GET"
    }
],

to use the category from the input:

"startUrls": [
    {
        "url": `https://www.economist.com/${input.category}/?page=1`,
        "method": "GET"
    }
],
"pseudoUrls": [
    {
        "purl": `https://www.economist.com/${input.category}/?page=[\\d+]`,
        "method": "GET"
    }
],

Then we just need to update the INPUT_SCHEMA.json  file to include a text field for the category selection:

{
    "title": "My input schema",
    "type": "object",
    "schemaVersion": 1,
    "properties": {
        "category": {
            "title": "Category",
            "type": "string",
            "description": "Economist.com category to be scraped",
            "editor": "textarea",
            "prefill": "briefing"
        }
    }
}

After you build the actor, you will see the automatically-generated user interface for the input:

Now, what remains is to write a short description and document all the features of the new actor in the README.md file and then we can finally publish using the Publication tab:

And that's it, you have just published a task as a new actor. You can check this example in Apify Store as the mtrunkat/economist-category-scraper actor.

Happy metamorphing ;)

Did this answer your question?