Metadata-Version: 2.3
Name: jiff
Version: 0.1.0
License-File: LICENSE
Summary: Python bindings to the Jiff datetime library
Author-email: Tyler Kennedy <tk@tkte.ch>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# pyjiff

Python bindings for [Jiff][], a date-time library for Rust that
encourages you to jump into the pit of success. 

WIP, not ready for use, although all the Jiff readme examples
work :) Come back in a week.

## Usage

```python
from jiff import Zoned, Timestamp, Span

ts = Timestamp.from_string("2024-07-11T01:14:00Z")
span = Span()
span.months = 1
span.hours = 2
zoned = ts.intz("America/New_York") + span
assert str(zoned) == "2024-08-10T23:14:00-04:00[America/New_York]" 
```


[Jiff]: https://github.com/BurntSushi/jiff
