Metadata-Version: 1.1
Name: pytz-convert
Version: 0.2.3
Summary: Extension of Python package pytz providing functions for converting timezone names, abbreviations, and offsets.
Home-page: https://github.com/tuneinc/pycountry-convert
Author: TUNE Inc.
Author-email: jefft@tune.com
License: MIT License
Download-URL: https://github.com/tuneinc/pytz-convert/archive/v0.2.3.tar.gz
Description-Content-Type: UNKNOWN
Description: .. -*- mode: rst -*-
        
        pytz-convert
        ------------
        
        Python extension for package `pytz <https://pypi.python.org/pypi/pytz>`_.
        
        
        Badges
        ------
        
        .. start-badges
        
        .. list-table::
            :stub-columns: 1
        
            * - docs
              - |docs| |license|
            * - info
              - |hits| |contributors|
            * - tests
              - |travis| |coveralls|
            * - package
              - |version| |supported-versions|
            * - other
              - |requires|
        
        .. |docs| image:: https://readthedocs.org/projects/pytz-convert/badge/?style=flat
            :target: http://pytz-convert.readthedocs.io
            :alt: Documentation Status
        
        .. |hits| image:: http://hits.dwyl.io/tuneinc/pytz-convert.svg
            :target: http://hits.dwyl.io/tuneinc/pytz-convert
            :alt: Hit Count
        
        .. |contributors| image:: https://img.shields.io/github/contributors/tuneinc/pytz-convert.svg
            :target: https://github.com/tuneinc/pytz-convert/graphs/contributors
            :alt: Contributors
        
        .. |license| image:: https://img.shields.io/badge/License-MIT-yellow.svg
            :alt: License Status
            :target: https://opensource.org/licenses/MIT
        
        .. |travis| image:: https://travis-ci.org/tuneinc/pytz-convert.svg?branch=master
            :target: https://travis-ci.org/tuneinc/pytz-convert
            :alt: Travis-CI Build Status
        
        .. |coveralls| image:: https://coveralls.io/repos/tuneinc/pytz-convert/badge.svg?branch=master&service=github
            :target: https://coveralls.io/r/tuneinc/pytz-convert?branch=master
            :alt: Code Coverage Status
        
        .. |requires| image:: https://requires.io/github/tuneinc/pytz-convert/requirements.svg?branch=master
            :target: https://requires.io/github/tuneinc/pytz-convert/requirements/?branch=master
            :alt: Requirements Status
        
        .. |version| image:: https://img.shields.io/pypi/v/pytz-convert.svg?style=flat
            :target: https://pypi.python.org/pypi/pytz-convert
            :alt: PyPI Package latest release
        
        .. |supported-versions| image:: https://img.shields.io/pypi/pyversions/pytz-convert.svg?style=flat
            :target: https://pypi.python.org/pypi/pytz-convert
            :alt: Supported versions
        
        .. end-badges
        
        
        Install
        -------
        
        .. code-block:: bash
        
            pip install pytz-convert
        
        
        Architecture
        ------------
        
        ``pytz-convert`` is an extension of the `pytz <https://pypi.python.org/pypi/pytz>`_ providing functions for converting timezone names, abbreviations, and offsets.
        
        
        Functions
        ---------
        
        - ``convert_bing_ads_tz``: Convert **Bing timezone name** to **Standard timezone name**.
        - ``convert_tz_abbrev_to_tz_hours()``: Convert **timezone abbreviation** to **timezone hours**.
        - ``convert_tz_abbrev_to_tz_offset()``: Convert **timezone abbreviation** to **timezone offset**.
        - ``convert_tz_abbrev_to_tz_seconds()``: Convert **timezone abbreviation** to **timezone seconds**.
        - ``convert_tz_hours_to_tz_offset()``: Convert **timezone hours** into **timezone offset**.
        - ``convert_tz_name_to_date_tz_abbrev()``: Convert **timezone name + date** to **timezone abbreviation**.
        - ``convert_tz_name_to_date_tz_offset()``: Convert **timezone name + date** to **timezone offset**.
        - ``convert_tz_name_to_now_tz_abbrev()``: Convert **timezone name + current date** to current **timezone abbreviation**.
        - ``convert_tz_name_to_now_tz_offset()``: Convert **timezone name + current date** to current **timezone offset**.
        - ``convert_tz_offset_and_date_to_tz_name()``: Convert **timezone offset + date** to **timezone name**.
        - ``convert_tz_offset_to_now_tz_abbrev()``: Convert **timezone offset + current date** to current **timezone abbreviation**.
        - ``convert_tz_offset_to_tz_hours()``: Convert **timezone offset** to **hours**.
        - ``convert_tz_offset_to_tz_minutes()``: Convert **timezone offset** to **minutes**.
        - ``convert_tz_offset_to_tz_seconds()``: Convert **timezone offset** to **seconds**.
        - ``parse_gmt_offset_timezone()``: Parse GMT string into **timezone name** and **timezone offset**.
        - ``validate_tz_abbrev()``: Validate **timezone abbreviation**.
        - ``validate_tz_name()``: Validate **timezone name**.
        
        Requirements
        ------------
        
        ``pytz-convert`` module is built upon Python 3 and has dependencies upon
        several Python modules available within `Python Package Index PyPI <https://pypi.python.org/pypi>`_.
        
        .. code-block:: bash
        
            make install-requirements
        
        or
        
        
        .. code-block:: bash
        
            python3 -m pip uninstall --yes --no-input -r requirements.txt
            python3 -m pip install --upgrade -r requirements.txt
        
        
        Dependencies
        ------------
        
        - `pytz <https://pypi.python.org/pypi/pytz>`_
        - `python-dateutil <https://pypi.python.org/pypi/python-dateutil>`_
        
        
        .. :changelog:
        
        Release History
        ===============
        
        0.2.3 (2018-01-25)
        ------------------
        - migrate to github/tuneinc.
        - LICENSE: MIT
        
        0.2.0 (2017-12-10)
        ------------------
        - readthedocs.org
        
        0.1.0 (2017-11-25)
        ------------------
        - README
        - Tests
        
        0.0.5 (2017-06-15)
        ------------------
        * Add BING_TIMEZONES_TO_PREFERRED dict that maps bing tz names to pytz tz names
        * Add convert_bing_ads_tz function
        
        0.0.1 (2016-11-17)
        ------------------
        * Initial release
        
        
Keywords: pytz convert tune
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: PyPy
