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.3.tar.gz (12.5 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.3-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: scrapely_python_client-0.1.3.tar.gz
  • Upload date:
  • Size: 12.5 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.3.tar.gz
Algorithm Hash digest
SHA256 b7740b1caecf44ed6485b2393ac214a56ea95a75228ac3f8be98cb4a9fab28a7
MD5 1e499e46959b48eedae0ca266574e7af
BLAKE2b-256 e1bc138abfeb204632702153db9a67d847a62fc2e4d9ca12797aca96e77a72b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scrapely_python_client-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 df2540ce91ea798db051f33e6dbaab2a86e147bb1c2debb8f55710bb7df86251
MD5 5ca0e5756d4693a0106e5cd030f6a873
BLAKE2b-256 98b548420f3d8e2651516a7c00f7fc1f6be85cd2b060b69d49c7fe2d9c1bd03e

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