* Added optional modifier argument to the timestamp functions.
python
import utcnow
utcnow.rfc3339_timestamp("2000-01-01", "+30s")
2000-01-01T00:00:30.000000Z
utcnow.rfc3339_timestamp("2000-01-01", "-1d")
1999-12-31T00:00:00.000000Z
utcnow.rfc3339_timestamp("2022-10-17 15:30:00", "+5.5h")
2022-10-17T21:00:00.000000Z
utcnow.rfc3339_timestamp("now", "+365d")
2023-10-17T15:26:55.706575Z