Skip to main content

Python SDK for the ChronoShield API — DST-aware datetime validation, resolution, and conversion

Project description

ChronoShield SDK for Python

Official Python SDK for the ChronoShield API — DST-aware datetime validation, resolution, and conversion.

Installation

pip install chronoshield

Quick Start

from chronoshield import ChronoShieldClient

client = ChronoShieldClient(api_key="cg_live_your_api_key")

# Validate a datetime in a specific timezone
result = client.validate("2026-03-08T02:30:00", "America/New_York")

print(result.status)          # "invalid" (falls in DST gap)
print(result.reason_code)     # "DST_GAP"
print(result.suggested_fixes) # suggested corrections

API Methods

validate(local_datetime, time_zone)

Check whether a local datetime is valid, invalid (DST gap), or ambiguous (DST overlap) in a given timezone.

result = client.validate("2026-11-01T01:30:00", "America/New_York")
# result.status == "ambiguous"
# result.possible_instants includes both EDT and EST interpretations

Returns a ValidateResponse dataclass with fields: status, reason_code, message, suggested_fixes, possible_instants.

resolve(local_datetime, time_zone, ambiguous, invalid)

Resolve a local datetime to a single UTC instant, with configurable policies for ambiguous and invalid times.

result = client.resolve(
    "2026-11-01T01:30:00",
    "America/New_York",
    ambiguous="earlier",           # or "later", "reject"
    invalid="next_valid_time",     # or "previous_valid_time", "reject"
)
# result.instant_utc == "2026-11-01T05:30:00.000Z"
# result.offset == "-04:00"

Returns a ResolveResponse dataclass with fields: instant_utc, offset.

convert(instant_utc, target_time_zone)

Convert a UTC instant to a local datetime in a target timezone.

result = client.convert("2026-07-15T18:00:00Z", "Asia/Tokyo")
# result.local_datetime == "2026-07-16T03:00:00"
# result.offset == "+09:00"

Returns a ConvertResponse dataclass with fields: local_datetime, offset, time_zone.

batch(items)

Process up to 100 validate/resolve/convert operations in a single request.

result = client.batch([
    {"operation": "validate", "local_datetime": "2026-03-08T02:30:00", "time_zone": "America/New_York"},
    {"operation": "convert", "instant_utc": "2026-07-15T18:00:00Z", "target_time_zone": "Europe/London"},
])
# result["total"] == 2
# result["results"][0]["success"], result["results"][0]["data"], etc.

Returns a dict with keys: results, total, succeeded, failed.

get_version() (new in v1.1.0)

Returns which IANA tzdata release is currently powering the API. Useful for verifying that your results are computed against the tzdb release you expect — particularly when reproducing historical results or debugging timezone-rule edge cases.

v = client.get_version()
# VersionResponse(
#   tzdb_version='2026b',
#   tzdb_source='moment-timezone',
#   tzdb_source_version='0.6.2',
#   api_version='1.3.0'
# )

This endpoint is public — no API key required (though the SDK will send yours if configured).

Rate Limit Awareness

After every authenticated call, the client updates last_rate_limit from the X-RateLimit-* response headers. Useful for proactive backoff before you actually hit a 429:

client.validate("2026-07-15T14:30:00", "America/New_York")

if client.last_rate_limit:
    rl = client.last_rate_limit
    print(f"{rl.remaining} of {rl.limit} requests remaining")
    print(f"Resets at {rl.reset_at.isoformat()}")

    if rl.remaining < 100:
        # back off, queue, or pause your worker
        ...

Configuration

client = ChronoShieldClient(
    api_key="cg_live_your_api_key",
    base_url="https://chronoshieldapi.com",  # optional, this is the default
)

Error Handling

The SDK raises a typed ChronoShieldError for any non-2xx response. The exception carries the structured fields the API returns (code, message, optional details) plus the HTTP status — so you can branch on machine-readable values without parsing strings:

from chronoshield import ChronoShieldClient, ChronoShieldError

try:
    client.validate("bad", "Invalid/Zone")
except ChronoShieldError as e:
    print(f"status: {e.status}")     # 400
    print(f"code:   {e.code}")       # "VALIDATION_FAILED"
    print(f"detail: {e.message}")    # "Invalid IANA timezone: ..."

    if e.code == "RATE_LIMIT_EXCEEDED":
        # back off and retry
        ...

Common error codes:

  • VALIDATION_FAILED — request body didn't match schema
  • INVALID_TIMEZONEtime_zone isn't a valid IANA identifier
  • UNAUTHORIZED — API key missing or invalid
  • RATE_LIMIT_EXCEEDED — out of quota for this period

Notable behavior: BC permanent DST

As of tzdata 2026b (which the API is currently serving), British Columbia's permanent-DST law is reflected in the data: America/Vancouver and Canada/Pacific queries dated after 2026-11-01 return offset -07:00 permanently rather than alternating with -08:00 in winter.

This matches IANA's current data and is the intended behavior. To verify which tzdata release your queries are computed against at any time, call get_version().

Zero Dependencies

This SDK uses only the Python standard library (urllib, json, dataclasses, datetime) — no external packages required.

Get an API Key

  1. Visit chronoshieldapi.com and click "Get Free API Key"
  2. Enter your email — a key is generated instantly
  3. Free tier includes 1,000 requests/month

Links

License

ISC

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

chronoshield-1.1.0.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

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

chronoshield-1.1.0-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file chronoshield-1.1.0.tar.gz.

File metadata

  • Download URL: chronoshield-1.1.0.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for chronoshield-1.1.0.tar.gz
Algorithm Hash digest
SHA256 b008461b5fb7ee6de070d8c548f53e7d298531fdf89dce509979dfc3465b127d
MD5 bc425631013d946008547b27c358d194
BLAKE2b-256 d49306c4a672d2570a2afab60443362b5387a456ec00b704fe1f64f6ac74d080

See more details on using hashes here.

File details

Details for the file chronoshield-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: chronoshield-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 6.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for chronoshield-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d341b17a8fefd9e08af6d24917e7c764d86de656ccb2351e38d4009e2efe516c
MD5 b3f318975700d5dca855d1d7e6eb14e9
BLAKE2b-256 a82561718dfe0495aaa9f674b155f86ba1b9c9456e5ee61fdb466d517e3956ac

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