Skip to main content

Official Python client for Scrapely.io API

Project description

Scrapely Python Client

The official Python client for Scrapely.io, a powerful API for web scraping and CAPTCHA solving.

Features

  • Web Crawling: Scrape websites with advanced options like screenshotting, resource blocking, and custom instructions (click, scroll, type, wait).
  • CAPTCHA Solving: Solve Google reCAPTCHA (V2/V3) and Cloudflare Turnstile/Challenge.
  • Async Support: Fully asynchronous client (AsyncScrapely) for high-concurrency applications.
  • Typed Responses: All API responses are returned as typed Python objects for better IDE support and type safety.

Installation

pip install scrapely-python-client

Usage

Synchronous Client

from scrapely import Scrapely

client = Scrapely(api_key="YOUR_API_KEY")

# 1. Crawl a website
response = client.crawler.crawl(
    website_url="https://example.com",
    return_page_text=True
)
print(response.result.text)

# 2. Solve reCAPTCHA V3
captcha = client.google.RecaptchaV3(
    website_url="https://example.com",
    website_key="6LdKlZEpAAAAAAOQjzC2v_d36tWxCl6dWsozdSy9"
)
print(captcha.result.solution)

Asynchronous Client

import asyncio
from scrapely import AsyncScrapely

async def main():
    client = AsyncScrapely(api_key="YOUR_API_KEY")

    # 1. Crawl a website asynchronously
    response = await client.crawler.crawl(
        website_url="https://example.com",
        screenshot=True
    )
    print(f"Screenshot URL: {response.result.screenshot}")

    # 2. Solve Cloudflare Turnstile asynchronously
    captcha = await client.cloudflare.Turnstile(
        website_url="https://example.com",
        website_key="0x4AAAAAA..."
    )
    print(f"Token: {captcha.result.solution}")

if __name__ == "__main__":
    asyncio.run(main())

Advanced Usage

Automation Instructions

You can pass a list of instructions to interact with the page before scraping.

from scrapely import Scrapely
from scrapely.models.types import SendKeys, Click, Wait

client = Scrapely(api_key="YOUR_API_KEY")

instructions = [
    SendKeys(selector="#search", text="scraping"),
    Click(selector="#submit-button"),
    Wait(timeout=2) # Wait 2 seconds
]

response = client.crawler.crawl(
    website_url="https://example.com",
    instructions=instructions,
    return_page_text=True
)

Response Objects

Responses are typed dataclasses:

  • CrawlerResponse: Contains result (CrawlerResult) with fields like html, text, cookies, screenshot.
  • CaptchaResponse: Contains result (CaptchaResult) with the solution string.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scrapely_python_client-0.1.0.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scrapely_python_client-0.1.0-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file scrapely_python_client-0.1.0.tar.gz.

File metadata

  • Download URL: scrapely_python_client-0.1.0.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.0

File hashes

Hashes for scrapely_python_client-0.1.0.tar.gz
Algorithm Hash digest
SHA256 bdb0e906dc72a9495a886d77aead1626d5896484d142fc78feb02e0899dbc716
MD5 14014e6bf0fe08a110e6b3b88833a01b
BLAKE2b-256 5a7184407a72faa02075fe54ae773ab38df1beb6953042db9531ca5b50e2a2a9

See more details on using hashes here.

File details

Details for the file scrapely_python_client-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for scrapely_python_client-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ce0dfe95d26b74b458463c263bc06f9e1ed29f8ff4784774f5b18be6aa168bd7
MD5 f43a6c74965d171b45be4c529268ab82
BLAKE2b-256 8dde7b5bcff54a58df2214f6d1d9957fe6bd380bd807fea879a9ff9b7b4bf86b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page