Skip to content

Python library for converting a naive datetime object to a time zone aware datetime object using city names.

License

Notifications You must be signed in to change notification settings

srvasn/tzconvert

Repository files navigation

PyPI version

tzconvert

tzconvert is a simple library for converting a naive, timezone unaware datetime object to it's smarter, timezone aware version.

Installation

Installation is straightforward.

pip install tzconvert

Installing from sources

  • Clone this git repository.

  • cd into the project folder.

  • run python setup.py install

Usage

>>> import tzconvert
>>> import datetime

>>> naive_datetime = datetime.datetime.utcnow()

>>> naive_datetime
datetime.datetime(2020, 4, 21, 22, 36, 27, 945535)

>>> adjusted_datetime = tzconvert.adjust_datetime(naive_datetime, "Venice")

>>> adjusted_datetime
datetime.datetime(2020, 4, 22, 0, 36, 27, 945535, tzinfo=tzoffset('GMT', 7200))

NOTES :

  • adjust_datetime() returns None on failure.
  • adjust_datetime() takes an optional argument debug, set it to True to display debug messages on stdout.

PR's are more than welcome.

About

Python library for converting a naive datetime object to a time zone aware datetime object using city names.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages