Free eBook Scraper avatar
Free eBook Scraper
Try for free

No credit card required

View all Actors
Free eBook Scraper

Free eBook Scraper

epctex/gutenberg-scraper
Try for free

No credit card required

Explore and Download Free eBooks - Find and download a wide selection of free eBooks from Project Gutenberg. Search by keywords and language preferences. Discover literary gems in multiple formats.

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 mode

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    "search": "book",
11    "startUrls": [
12        {
13            "url": "https://www.gutenberg.org/browse/recent/last7"
14        },
15        {
16            "url": "https://www.gutenberg.org/browse/titles/h"
17        }
18    ],
19    "maxItems": 5,
20    "extendOutputFunction": ($) => { return {} },
21    "proxyConfig": {
22        "useApifyProxy": true
23    }
24};
25
26(async () => {
27    // Run the Actor and wait for it to finish
28    const run = await client.actor("epctex/gutenberg-scraper").call(input);
29
30    // Fetch and print Actor results from the run's dataset (if any)
31    console.log('Results from dataset');
32    const { items } = await client.dataset(run.defaultDatasetId).listItems();
33    items.forEach((item) => {
34        console.dir(item);
35    });
36})();
Developer
Maintained by Community
Actor metrics
  • 10 monthly users
  • 100.0% runs succeeded
  • Created in Feb 2020
  • Modified about 15 hours ago