Skip to main content

A modern Python datetime library with fluent API and immutable design

Project description

Carbonic

A modern Python datetime library with fluent API, built with stdlib zoneinfo, dataclasses for immutability, and comprehensive localization support.

Carbonic provides an intuitive and fluent API for working with dates and times in Python, leveraging modern Python features for better type safety and performance.

Features

  • 🚀 Fluent and immutable API - Built with dataclasses for type safety
  • 🌍 Stdlib zoneinfo - Uses Python's built-in timezone support (no external dependencies)
  • 🔒 Immutable by design - All operations return new instances
  • 🌐 Full i18n support - English, Polish, and extensible locale system
  • High performance - Minimal overhead with stdlib components
  • 🔧 Comprehensive formatting - Extensive date/time formatting options
  • 📝 Human-readable differences - Localized relative time descriptions
  • 🎯 Type-safe - Full type hints throughout

Installation

# Basic installation
pip install carbonic

# With performance optimizations (recommended)
pip install carbonic[performance]

Performance

Carbonic is designed for high performance with several optimizations:

  • Fast ISO parsing: Optional ciso8601 integration for ~10x faster ISO 8601 datetime parsing
  • Memory efficiency: All classes use __slots__ for minimal memory overhead
  • Lazy evaluation: Expensive formatting operations (locale lookups, timezone formatting) are cached
  • Stdlib only: Core functionality requires no external dependencies

Performance benchmark results:

  • ISO parsing: 0.001ms per operation (with ciso8601)
  • Formatting: 0.004ms per operation (with caching)
  • Memory: 100% slot usage, no __dict__ overhead

Quick Start

from carbonic import DateTime, Duration

# Create and manipulate dates
now = DateTime.now()
tomorrow = now.add(days=1)
next_week = now.add(days=7)

# Parse ISO strings (fast with ciso8601)
dt = DateTime.parse("2024-12-25T15:30:00Z")

# Format with Carbon-style tokens
formatted = dt.format("F j, Y g:i A")  # "December 25, 2024 3:30 PM"

# Localized formatting
polish = dt.format("F j, Y", locale="pl")  # "grudzień 25, 2024"

# Duration calculations
duration = DateTime.now() - DateTime(2024, 1, 1)
print(duration.humanize())  # "11 months 3 weeks 2 days"

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

carbonic-0.2.1.tar.gz (64.7 kB view details)

Uploaded Source

Built Distribution

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

carbonic-0.2.1-py3-none-any.whl (39.0 kB view details)

Uploaded Python 3

File details

Details for the file carbonic-0.2.1.tar.gz.

File metadata

  • Download URL: carbonic-0.2.1.tar.gz
  • Upload date:
  • Size: 64.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.19

File hashes

Hashes for carbonic-0.2.1.tar.gz
Algorithm Hash digest
SHA256 f8ed5945805d9981fe34eb967affef289db70375b8a135b4db87cb1c81e80879
MD5 c62cf0994ad0115cb94ec588062b1d51
BLAKE2b-256 c8ea384891567b3558bb16ecfb6ac7c4057e2433d069d51b3c4d0c7578e4cc2d

See more details on using hashes here.

File details

Details for the file carbonic-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: carbonic-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 39.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.19

File hashes

Hashes for carbonic-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6cfb0ea744855493f752cfd8d0a3fb414fbe8dac6a00ee7746ea0c9b566b94c3
MD5 2464fc4be2e6f561279dc4166452b61d
BLAKE2b-256 5da019300f3ded8c0802f257cc34335f9749d7e41cb5d89f65169024b4b24ab0

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