Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 967 Bytes

File metadata and controls

29 lines (18 loc) · 967 Bytes

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

1.1.0 - 2026-07-15

Added

  • response['headers']['cb_status'] as the preferred Crawlbase status field.
  • The library resolves status by preferring cb_status from the API response (header or JSON body), then falling back to pc_status when cb_status is absent.

Deprecated

  • response['headers']['pc_status'] is deprecated but still supported temporarily for backward compatibility. It is populated with the same resolved value as cb_status.

Migration

# Deprecated (still works temporarily)
print(response['headers']['pc_status'])

# Preferred
print(response['headers']['cb_status'])