Skip to main content

A tiny library for working with UTC time.

Project description

It Should Be Easier

The current Python landscape doesn’t make it simple enough to use timezone aware timestamps.

It’d be nice if datetime.datetime.now() gave you a timezone-aware datetime in your current timezone, but it doesn’t.

You’d expect datetime.datetime.utcnow() to at least be timezone-aware, right? No. There’s no tzinfo on the datetime you get back from that function.

The pytz package has comprehensive support for time zones, and if you need to do something complicated, you should use that. But you don’t always need to do something complicated. Sometimes you just want UTC.

This package provides syntactic sugar around simple UTC handling that I’ve rewritten in too many times in past projects.

Usage

There is a now() function that does the right thing:

>>> import utc
>>> utc.now()
datetime.datetime(2013, 8, 30, 16, 51, 50, 316963, tzinfo=<UTC>)

And a datetime constructor that is UTC by default:

>>> utc.datetime(1900, 1, 1, 13, 25)
datetime.datetime(1900, 1, 1, 13, 25, tzinfo=<UTC>)

And a time constructor too:

>>> utc.time(13, 26, 36)
datetime.time(13, 26, 36, tzinfo=<UTC>)

That is all.

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

utc-0.0.3.tar.gz (1.9 kB view details)

Uploaded Source

File details

Details for the file utc-0.0.3.tar.gz.

File metadata

  • Download URL: utc-0.0.3.tar.gz
  • Upload date:
  • Size: 1.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for utc-0.0.3.tar.gz
Algorithm Hash digest
SHA256 7b842c4bb063b3882443010019734bbd8810291b8d738f7aadfc9ae89b5a1b7e
MD5 d123da91e49e1f4cabd68830abb26e36
BLAKE2b-256 dace694c9ec0f060611abaf13cfca477efbd5619d3cb5e6c6e4b58eafe1497d3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page