Skip to main content

Converts the UTC time, the date and time of the region.

Project description

https://img.shields.io/badge/python-2%20%7C%203-ffc30f.svg https://img.shields.io/badge/license-MIT-ffc30f.svg https://img.shields.io/badge/platform-win32/64%20%7C%20linux32/64-ffc30f.svg https://img.shields.io/badge/pypi-v1.0.1-ffc30f.svg https://travis-ci.org/LuckyDenis/tzintime.svg?branch=master

Introduction

This package is based on the library pytz. Provides an interface, converting naive and localized time to another time zone. You can choose how the new time zone will be added - it will be added directly on the date itself or displayed separately (examples will be discussed below). You can also specify a date output template. Templates need to be configured according to the datetime library’s templates table.


Installation

python -m pip install intimezone

Example & Usage

This library supports only two methods of conversion. The first is flag='convert' (flag=None) adds a timezone to the base date. The second flag='localize' adds the time zone separately.

Test dataset:

>>> from intimezone import convert
>>> ntime = 1545695999 # naive time
>>> ltime = 1545695999.5219207 # localized time

Default settings:

>>> convert(ntime) # naive time
'Mon, 24 Dec 2018 23:59:59'
>>> convert(ltime) # localized time
'Mon, 24 Dec 2018 23:59:59'

The values flag=’convert’:

>>> convert(ntime, tz='Europe/Madrid', flag='convert') # naive time
'Tue, 25 Dec 2018 00:59:59'
>>> convert(ltime, tz='Europe/Madrid', flag='convert') # localized time
'Tue, 25 Dec 2018 00:59:59'

The values flag=’localize’:

>>> convert(ntime, tz='Europe/Madrid', flag='localize') # naive time
'Mon, 24 Dec 2018 23:59:59 +0100(CET)'
>>> convert(ltime, tz='Europe/Madrid', flag='localize') # localized time
'Mon, 24 Dec 2018 23:59:59 +0100(CET)'

Custom template for date:

>>> convert(ntime, tz='Europe/Madrid', f='%D - %H:%M:%S') # naive time
'12/25/18 - 00:59:59'
>>> convert(ltime, tz='Europe/Madrid', f='%D - %H:%M:%S') # localized time
'12/25/18 - 00:59:59'

Options

  • The library provides a single interface. In order to select in which mode to get the date, the flag (None/'convert' or 'localize') option is used.

  • The parameter moment_time can take unix time in the format int or float. Represents moment-time.

  • The time zone tz is specified in the format 'Region/City', 'Etc/GMT±12'.

  • f is responsible for generating a line at the output, through this parameter you can set a template in the style of templates of the standard library datetime.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

intimezone-1.0.2-py2.py3-none-any.whl (5.6 kB view hashes)

Uploaded Python 2 Python 3

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