Intuitive Datetime Manipulation for Python
Project description
DTwheel: Intuitive Datetime Manipulation
Overview
Purpose:
DTwheel is a lean, intuitive, and highly readable Python library designed to simplify everyday datetime operations. It acts as a friendly facade over Python's built-in datetime objects, empowering you to navigate and manipulate dates and times with ease, clarity, and minimal boilerplate.
Why DTwheel?
Purpose:
Python's datetime module is powerful, but common tasks like finding "tomorrow's date", "next Tuesday", or formatting dates into specific strings often require verbose code. While other libraries offer robust solutions, they sometimes introduce their own datetime objects or bring along large dependency trees—not ideal for lightweight daily operations.
DTwheel fills this gap by providing:
- ✅ Readability: Express common operations in nearly plain English.
- 🪶 Minimal Dependencies: Built primarily on the standard library (
datetime,zoneinfo). - 🔁 Native
datetimeObjects: Returns standarddatetime.datetimeordatetime.dateobjects—fully compatible with existing codebases. - 🔄 Intuitive Design: Inspired by the cyclical nature of time—operations like
tomorrow(),next_week(), andlast_month()feel natural. - ⚙️ Sensible Defaults: Assumes current time/date if not specified, simplifying common use cases.
- 🧾 Easy Formatting & Conversion: Shortcuts for popular output formats and parsing.
- 🌐 Cross-Platform: Works seamlessly across all major operating systems.
DTwheel doesn't aim to replace
datetime. It's a helper—a tool to make your journey through time data smoother and more intuitive.
Installation
Purpose:
DTwheel is available on PyPI. You can install it using pip:
pip install dtwheel
For development (recommended), use Poetry:
poetry install --with dev
Quick Start
Purpose: Get a taste of DTwheel's simplicity with these immediate examples:
import dtwheel as dt
from datetime import datetime, date
# Current time and date
current_dt = dt.now()
print(f"Current datetime: {current_dt}")
today_date = dt.today()
print(f"Today's date: {today_date}")
# Relative time
tomorrow_date = dt.tomorrow()
print(f"Tomorrow's date: {tomorrow_date}")
# Next specific weekday
next_monday_date = dt.next_monday()
print(f"Next Monday's date: {next_monday_date}")
# Date arithmetic using timedelta helpers
five_days_later = today_date + dt.days(5)
print(f"5 days from now: {five_days_later}")
# Precise month/year arithmetic (handles rollovers)
next_month_date = dt.next_month(date(2025, 1, 31)) # Jan 31 + 1 month -> Feb 28
print(f"Next month from Jan 31: {next_month_date}")
# Formatting
iso_format = dt.to_iso(current_dt)
print(f"ISO 8601: {iso_format}")
# Parsing
parsed_dt = dt.parse("2025-12-25 10:30:00")
print(f"Parsed datetime: {parsed_dt}")
# Timezone awareness (Python 3.9+ `zoneinfo`)
dt.set_default_timezone("America/New_York")
ny_now = dt.now()
print(f"Current datetime in New York: {ny_now}")
Documentation
Purpose: For comprehensive details, usage examples, and API reference:
📚 Full documentation is available in the docs/ directory or on the DTwheel GitHub Pages site.
Contributing
Purpose: We welcome contributions from the community!
🛠 Please refer to the CONTRIBUTING.md file for guidelines on how to get involved, report bugs, or suggest features.
License
Purpose: This project is open-source and distributed under a permissive license.
📄 Licensed under the MIT License – see the file for details.
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 dtwheel-0.1.0.tar.gz.
File metadata
- Download URL: dtwheel-0.1.0.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77161fca1effef6801ab6880605b2c75e4fad7cd5f5dc6d969902467ca2d7422
|
|
| MD5 |
bf06432be51e0e07530cce4ab7d113bc
|
|
| BLAKE2b-256 |
a0ec845ede6e5c87724a80c8e3046a5f23c31341585047a6c6ceaa62539588f1
|
File details
Details for the file dtwheel-0.1.0-py3-none-any.whl.
File metadata
- Download URL: dtwheel-0.1.0-py3-none-any.whl
- Upload date:
- Size: 17.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e68b5c6e2a52945acebd7424fc345384dea3a98f48973f139e9486095ab3d4f5
|
|
| MD5 |
4ba8512d023c3735f1beee4e66c5dc74
|
|
| BLAKE2b-256 |
f8e8ba40471ee95498f24701aff09c07e1892dc86228ed59bbed7b19c78b03c5
|