sa- / mo-time

It's time for a time pkg in 🔥 Mojo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Please don't put negative numbers in plus_* functions yet 😬

Usage

Grab a .mojopkg from the releases, or clone this repo and run make build

from mo_time import Instant, DateTimeLocal

# Instantiate with the .now static methods
DateTimeLocal.now_utc()
DateTimeLocal.now()

# or from an Instant
let instant = Instant.now()
DateTimeLocal.from_instant(instant)
DateTimeLocal.from_instant_utc(instant)

# or with the constructor
DateTimeLocal(2023, 9, 14, 0, 0, 0)

# convert back and forth between python and mojo
let py_dt = DateTimeLocal.now().to_py()
let mojo_dt = DateTimeLocal.from_py(py_dt)

# Print
let dt = DateTimeLocal.now_utc()
print(dt.__str__())

# Supports basic arithmetic
dt.plus_years(1)
dt.plus_months(12)
dt.plus_days(366)
dt.plus_hours(8784)
dt.plus_minutes(527040)
dt.plus_seconds(31622400)

Coming up

  • Types
    • DateTimeOffset
    • DateTimeZoned
    • Date
    • Time
    • Duration
    • TimeZone

Testing

make test

About

It's time for a time pkg in 🔥 Mojo

License:Apache License 2.0


Languages

Language:Makefile 100.0%