Metadata-Version: 2.1
Name: timezone-converter
Version: 0.3.2
Summary: Compare your local timezone with a foreign one.
Home-page: https://github.com/ibLeDy/timezone-converter
Author: Iago Alonso
Author-email: deejaynof@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.6.1
Description-Content-Type: text/markdown
Requires-Dist: pytz (>=2021.1)
Requires-Dist: rich (>=9.9.0)
Requires-Dist: importlib-metadata ; python_version < "3.8"

<div align="center">
  <h1>Timezone Converter</h1>
  <h4>Compare a full day of your local timezone with a foreign one</h4>
  <br>
  <p>
    <a href="https://github.com/ibLeDy/timezone-converter/actions?query=workflow%3Aci">
        <img alt="ci status" src="https://github.com/ibLeDy/timezone-converter/workflows/ci/badge.svg" />
    </a>
    <a href="https://github.com/ibLeDy/timezone-converter/blob/master/LICENSE">
        <img alt="license" src="https://img.shields.io/pypi/l/timezone-converter" />
    </a>
    <a href="https://pypi.org/project/timezone-converter/">
        <img alt="python version" src="https://img.shields.io/pypi/pyversions/timezone-converter" />
    </a>
    <a href="https://pypi.org/project/timezone-converter/">
        <img alt="latest release" src="https://img.shields.io/pypi/v/timezone-converter?color=blue" />
    </a>
    <a href="https://pepy.tech/project/timezone-converter">
        <img alt="overall downloads per month" src="https://pepy.tech/badge/timezone-converter/month" />
    </a>
  </p>
</div>

<div align="center">
  <table>
    <tr>
      <th style="text-align: center;"><code>$ timezone-converter tijuana</code></th>
      <th style="text-align: center;"><code>$ timezone-converter tijuana --zone</code></th>
    </tr>
    <tr>
      <td><img alt="comparison between two timezones" src="https://git.io/JtaZx" /></td>
      <td><img alt="comparison between two timezones" src="https://git.io/JtaZj" /></td>
    </tr>
  </table>
</div>

---

## Table of Contents

- [Motivation](#motivation)
- [Installation](#installation)
- [Usage](#usage)
- [Available timezones](#available-timezones)
- [License](#license)

## Motivation

When working with people that are not in your local timezone, the available
resources are the usual webpages that only show _one_ hour at a time, which
is pretty inconvenient.

With this script you can quickly compare a full day of your timezone against
a foreign one.

## Installation

```bash
pip install timezone-converter
```

## Usage

```bash
timezone-converter <timezone>
```

## Available timezones

`$ timezone-converter --list`

![list of available timezones](https://git.io/JJKGo)

## License

This project is licensed under the terms of the
[MIT](https://choosealicense.com/licenses/mit/) license.

<div align="right">
  <b><a href="#timezone-converter">↥ back to top</a></b>
</div>


