Scraping Pros API Client
Project description
ScrapingPros' client for Python
The ScrapingPros' API Client for Python is the official library to access the ScrapingPros' API from your Python applications. It provides useful features like jobs running retries and convenience functions to improve your experience with the ScrapingPros' API.
Installation
Requires Python 3.6+
You can install the package from its PyPI listing. Just by running pip install scrapingpros in your terminal. You may need to install requests package too. pip install requests
Usage
For usage instructions, check the documentation on ScrapingPros' Docs.
Quick Start
from scraping_pros import Batch, Project, Job
# Considering we want to work on the project with the ID 64.
PROJECT_ID = 64 #
# Project must be previously created.
API_KEY = "your-api-key"
# We create the batch that will hold all the jobs we want to run.
project = Project(api_key=API_KEY, project_id=PROJECT_ID, verbose=True)
first_batch = project.create_batch("first_batch")
# We create a job and append it to the batch, selecting the scrap mode.
url_to_scrape = ["url"]
first_batch.append_jobs(url_to_scrape, ScrapMode.PUPPETEER)
# Puts this job to run.
first_batch.run()
# Retrieves html for all jobs in that batch whenever it finishes running.
data = first_batch.get_data()
The package provides tools to manage every aspect of running jobs and retrieving data. It includes functions to easily execute and access data for Batches and Jobs.
Automatic Retries
The package automatically retries any operation—such as run() or get_data()—to handle intermittent issues and improve reliability.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file scrapingpros-0.1.9.tar.gz.
File metadata
- Download URL: scrapingpros-0.1.9.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b1dc9d440cc1a5090f4f35084c175ba8c2d8b5b5ce1f7793b0343b03ca8801a
|
|
| MD5 |
e9e1ff5568922b6a1b4497ae85f8970e
|
|
| BLAKE2b-256 |
72e9ff43a8c263a8855070f48e09042cbb64449de2ff10df0d62bdf5cb048e85
|
File details
Details for the file scrapingpros-0.1.9-py3-none-any.whl.
File metadata
- Download URL: scrapingpros-0.1.9-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11cfcf8e320518fd68ee8877a03394c4d7915926d0a04f1f573fe5f281aeffa4
|
|
| MD5 |
207bf4db60cce5065c869239e9a247d3
|
|
| BLAKE2b-256 |
f5e8c8bee70a922b113c22132750ec2af5067a1f8067cc162d3b397276c7e4ac
|