Dataset Change Checker
Pricing
$250.00 / 1,000 completed comparisons
Dataset Change Checker
Compare flat datasets with exact field changes, duplicate-key rejection, CSV output, and snapshot-size warnings for reliable automation workflows.
Dataset Change Checker
Pricing
$250.00 / 1,000 completed comparisons
Compare flat datasets with exact field changes, duplicate-key rejection, CSV output, and snapshot-size warnings for reliable automation workflows.
You can access the Dataset Change Checker programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in API & Integrations in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "before": [10 {11 "sku": "DEMO-101",12 "price": 12.5,13 "stock": 8,14 },15 {16 "sku": "DEMO-102",17 "price": 7,18 "stock": 0,19 },20 {21 "sku": "DEMO-103",22 "price": 4,23 "stock": 5,24 },25 ],26 "after": [27 {28 "sku": "DEMO-103",29 "price": 4,30 "stock": 5,31 },32 {33 "sku": "DEMO-101",34 "price": 11,35 "stock": 6,36 },37 {38 "sku": "DEMO-104",39 "price": 9,40 "stock": 2,41 },42 ],43 "keyField": "sku",44}45
46# Run the Actor and wait for it to finish47run = client.actor("deomnus/dataset-change-checker").call(run_input=run_input)48
49# Fetch and print Actor results from the run's dataset (if there are any)50print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")51for item in client.dataset(run.default_dataset_id).iterate_items():52 print(item)53
54# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use Dataset Change Checker API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: