Scrapy Books Example avatar

Scrapy Books Example

Pricing

Pay per usage

Go to Apify Store
Scrapy Books Example

Scrapy Books Example

Example of Python Scrapy project. It scrapes book data from https://books.toscrape.com/.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Vlada Dusek

Vlada Dusek

Maintained by Apify

Actor stats

2

Bookmarked

21

Total users

0

Monthly active users

7 days ago

Last modified

Share

An example Scrapy project wrapped as an Apify Actor. It scrapes book data (title, price, rating, availability) from books.toscrape.com and stores each book in the run's default dataset.

It shows how to run an existing Scrapy spider on the Apify platform — see Integrating Scrapy projects.

Run locally

This is a uv-managed project. You'll also need the Apify CLI.

uv sync # install dependencies into .venv/
apify run --purge # run as an Apify Actor (reads local INPUT.json)

It also still runs as a plain Scrapy project:

$uv run scrapy crawl book_spider -o books.json

Deploy to Apify

apify login # once, with your API token
apify push # build and deploy the Actor

Find your deployed Actor under Actors → My Actors.

Learn more