clox


Nameclox JSON
Version 1.2 PyPI version JSON
download
home_pagehttps://github.com/sepandhaghighi/clox
SummaryA Geeky Clock for Terminal Enthusiasts
upload_time2025-09-02 13:49:45
maintainerNone
docs_urlNone
authorSepand Haghighi
requires_python>=3.7
licenseMIT
keywords clock time timer timezone terminal cli geek clox
VCS
bugtrack_url
requirements art jdatetime pytz
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<div align="center">
<img src="https://github.com/sepandhaghighi/clox/raw/main/otherfiles/logo.png" width="450">
<h1>Clox: A Geeky Clock for Terminal Enthusiasts</h1>
<br/>
<a href="https://badge.fury.io/py/clox"><img src="https://badge.fury.io/py/clox.svg" alt="PyPI version"></a>
<a href="https://www.python.org/"><img src="https://img.shields.io/badge/built%20with-Python3-green.svg" alt="built with Python3"></a>
<a href="https://github.com/sepandhaghighi/clox"><img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/sepandhaghighi/clox"></a>
</div>			
				
## Overview	

<p align="justify">					
Clox is a terminal-based clock application designed for terminal enthusiasts who appreciate simplicity, elegance, and productivity within their command-line environment. Whether you're coding, monitoring tasks, or simply enjoying the terminal aesthetic, Clox brings a stylish and customizable time display to your workspace.
</p>

<table>
	<tr>
		<td align="center">PyPI Counter</td>
		<td align="center"><a href="http://pepy.tech/project/clox"><img src="http://pepy.tech/badge/clox"></a></td>
	</tr>
	<tr>
		<td align="center">Github Stars</td>
		<td align="center"><a href="https://github.com/sepandhaghighi/clox"><img src="https://img.shields.io/github/stars/sepandhaghighi/clox.svg?style=social&label=Stars"></a></td>
	</tr>
</table>



<table>
	<tr> 
		<td align="center">Branch</td>
		<td align="center">main</td>	
		<td align="center">dev</td>	
	</tr>
	<tr>
		<td align="center">CI</td>
		<td align="center"><img src="https://github.com/sepandhaghighi/clox/actions/workflows/test.yml/badge.svg?branch=main"></td>
		<td align="center"><img src="https://github.com/sepandhaghighi/clox/actions/workflows/test.yml/badge.svg?branch=dev"></td>
	</tr>
</table>


<table>
	<tr> 
		<td align="center">Code Quality</td>
		<td align="center"><a href="https://www.codefactor.io/repository/github/sepandhaghighi/clox"><img src="https://www.codefactor.io/repository/github/sepandhaghighi/clox/badge" alt="CodeFactor"></a></td>
		<td align="center"><a href="https://app.codacy.com/gh/sepandhaghighi/clox/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade"><img src="https://app.codacy.com/project/badge/Grade/4cd4cd3b20b1474fb674823b1b417b76"></a></td>
	</tr>
</table>


## Installation		

### Source Code
- Download [Version 1.2](https://github.com/sepandhaghighi/clox/archive/v1.2.zip) or [Latest Source](https://github.com/sepandhaghighi/clox/archive/dev.zip)
- `pip install .`				

### PyPI

- Check [Python Packaging User Guide](https://packaging.python.org/installing/)     
- `pip install clox==1.2`						


## Usage

ℹ️ You can use `clox` or `python -m clox` to run this program

### Version

```console
clox --version
```

### Info

```console
clox --info
```

### Basic

ℹ️ Press `Ctrl + C` to exit

```console
clox
```

### Face

```console
clox --face=3
```
* Use `--face=-1` for random mode
* [Faces List](https://github.com/sepandhaghighi/clox/blob/main/FACES.md): `clox --faces-list`


### Timezone

```console
clox --timezone="Etc/GMT+7"
```
* [Timezones List](https://github.com/sepandhaghighi/clox/blob/main/TIMEZONES.md): `clox --timezones-list`


### Manual Offset

ℹ️ The local and timezone offset both have default values of `0`

These arguments allow you to manually adjust the time by ±X hours. This is especially useful when daylight saving time (DST) is not correctly applied by the system or timezone database.

```console
clox --offset-local=1 --offset-timezone=-1
```

### Country

The `--country` argument allows you to specify a country using its **ISO 3166** code format

ℹ️ When the `--country` argument is provided, the `--timezone` argument will be ignored

ℹ️ If the specified country has multiple timezones, the first timezone will be selected automatically

```console
clox --country="DE"
```
* [Countries List](https://github.com/sepandhaghighi/clox/blob/main/COUNTRIES.md): `clox --countries-list`


### Vertical/Horizontal Shift

ℹ️ The vertical and horizontal shift both have default values of `0`

```console
clox --v-shift=20 --h-shift=30
```

### No Blink

Disable blinking mode

```console
clox --no-blink
```

### Hide Date

In this mode, the date will not be shown

```console
clox --hide-date
```

### Hide Timezone

In this mode, the timezone will not be shown

```console
clox --hide-timezone
```

### AM/PM Mode

In this mode, the clock will be displayed in 12-hour format

```console
clox --am-pm
```

### Vertical Mode

```console
clox --vertical
```

### Calendar Mode

In this mode, the calendar will be displayed

ℹ️ Valid choices: [`MONTH`, `YEAR`]

```console
clox --calendar=month --first-weekday="SUNDAY"
```

### Date System

ℹ️ Valid choices: [`GREGORIAN`, `JALALI`]

ℹ️ The default date system is `GREGORIAN`

```console
clox --date-system=jalali
```

### Date Format

ℹ️ Valid choices: [`ISO`, `US`, `US-SHORT`, `EU`, `EU-SHORT`, `DOT`, `DASH`, `YMD`, `DMY`, `MDY`, `FULL`]

ℹ️ The default date format is `FULL`

```console
clox --date-system=jalali --date-format=EU
```
* Date Formats List: `clox --date-formats-list`

## Screen Record

<div align="center">

<img src="https://github.com/sepandhaghighi/clox/raw/main/otherfiles/help.gif">

</div>

## Issues & Bug Reports			

Just fill an issue and describe it. We'll check it ASAP!

- Please complete the issue template
 			

## Show Your Support
								
<h3>Star This Repo</h3>					

Give a ⭐️ if this project helped you!

<h3>Donate to Our Project</h3>	

<h4>Bitcoin</h4>
1KtNLEEeUbTEK9PdN6Ya3ZAKXaqoKUuxCy
<h4>Ethereum</h4>
0xcD4Db18B6664A9662123D4307B074aE968535388
<h4>Litecoin</h4>
Ldnz5gMcEeV8BAdsyf8FstWDC6uyYR6pgZ
<h4>Doge</h4>
DDUnKpFQbBqLpFVZ9DfuVysBdr249HxVDh
<h4>Tron</h4>
TCZxzPZLcJHr2qR3uPUB1tXB6L3FDSSAx7
<h4>Ripple</h4>
rN7ZuRG7HDGHR5nof8nu5LrsbmSB61V1qq
<h4>Binance Coin</h4>
bnb1zglwcf0ac3d0s2f6ck5kgwvcru4tlctt4p5qef
<h4>Tether</h4>
0xcD4Db18B6664A9662123D4307B074aE968535388
<h4>Dash</h4>
Xd3Yn2qZJ7VE8nbKw2fS98aLxR5M6WUU3s
<h4>Stellar</h4>		
GALPOLPISRHIYHLQER2TLJRGUSZH52RYDK6C3HIU4PSMNAV65Q36EGNL
<h4>Zilliqa</h4>
zil1knmz8zj88cf0exr2ry7nav9elehxfcgqu3c5e5
<h4>Coffeete</h4>
<a href="http://www.coffeete.ir/opensource">
<img src="http://www.coffeete.ir/images/buttons/lemonchiffon.png" style="width:260px;" />
</a>


# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.2] - 2025-09-02
### Added
- `--offset-local` argument
- `--offset-timezone` argument
### Changed
- `README.md` updated
- Test system modified
- `_get_weekday_id` function renamed to `get_weekday_id`
- `clox_info` function renamed to `print_clox_info`
## [1.1] - 2025-05-23
### Added
- `--first-weekday` argument
- `--date-format` argument
- `--date-formats-list` argument
### Changed
- `README.md` updated
- Test system modified
## [1.0] - 2025-05-06
### Added
- Local time
### Changed
- `clox_info` function modified
- `run_clock` function modified
## [0.9] - 2025-04-14
### Added
- Timezone difference
### Changed
- Python typing features added to all modules
- Test system modified
- `Python 3.6` support dropped
## [0.8] - 2025-03-16
### Added
- `--country` argument
- `--countries-list` argument
- `COUNTRIES.md`
### Changed
- Input case sensitivity bug fixed
- Test system modified
- `README.md` updated
## [0.7] - 2025-03-06
### Added
- Jalali calendar
- `--date-system` argument
### Changed
- `README.md` updated
## [0.6] - 2025-02-25
### Added
- `--calendar` argument
### Changed
- `README.md` updated
## [0.5] - 2025-02-14
### Added
- `--hide-date` argument
- `--hide-timezone` argument
- `--am-pm` argument
### Changed
- `README.md` updated
## [0.4] - 2025-01-18
### Added
- Date
- `--info` argument
## [0.3] - 2025-01-10
### Added
- Logo
- `--vertical` argument
### Changed
- `show_faces_list` function updated
- `AUTHORS.md` updated
## [0.2] - 2025-01-01
### Added
- Blink mode
- `--no-blink` argument
### Changed
- `README.md` updated
## [0.1] - 2024-12-24
### Added
- `--v-shift` and `--h-shift` arguments
- `--timezone` argument
- `--face` argument
- `run_clock` and `main` functions
- `TIMEZONES.md`
- `FACES.md`

[Unreleased]: https://github.com/sepandhaghighi/clox/compare/v1.2...dev
[1.2]: https://github.com/sepandhaghighi/clox/compare/v1.1...v1.2
[1.1]: https://github.com/sepandhaghighi/clox/compare/v1.0...v1.1
[1.0]: https://github.com/sepandhaghighi/clox/compare/v0.9...v1.0
[0.9]: https://github.com/sepandhaghighi/clox/compare/v0.8...v0.9
[0.8]: https://github.com/sepandhaghighi/clox/compare/v0.7...v0.8
[0.7]: https://github.com/sepandhaghighi/clox/compare/v0.6...v0.7
[0.6]: https://github.com/sepandhaghighi/clox/compare/v0.5...v0.6
[0.5]: https://github.com/sepandhaghighi/clox/compare/v0.4...v0.5
[0.4]: https://github.com/sepandhaghighi/clox/compare/v0.3...v0.4
[0.3]: https://github.com/sepandhaghighi/clox/compare/v0.2...v0.3
[0.2]: https://github.com/sepandhaghighi/clox/compare/v0.1...v0.2
[0.1]: https://github.com/sepandhaghighi/clox/compare/e9b49e2...v0.1




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/sepandhaghighi/clox",
    "name": "clox",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "clock time timer timezone terminal cli geek clox",
    "author": "Sepand Haghighi",
    "author_email": "me@sepand.tech",
    "download_url": "https://files.pythonhosted.org/packages/d3/6b/ff6efce743d8ef0c9830bbaf5e16a2fab3fabf329065a93aba36a73514f7/clox-1.2.tar.gz",
    "platform": null,
    "description": "\n<div align=\"center\">\n<img src=\"https://github.com/sepandhaghighi/clox/raw/main/otherfiles/logo.png\" width=\"450\">\n<h1>Clox: A Geeky Clock for Terminal Enthusiasts</h1>\n<br/>\n<a href=\"https://badge.fury.io/py/clox\"><img src=\"https://badge.fury.io/py/clox.svg\" alt=\"PyPI version\"></a>\n<a href=\"https://www.python.org/\"><img src=\"https://img.shields.io/badge/built%20with-Python3-green.svg\" alt=\"built with Python3\"></a>\n<a href=\"https://github.com/sepandhaghighi/clox\"><img alt=\"GitHub repo size\" src=\"https://img.shields.io/github/repo-size/sepandhaghighi/clox\"></a>\n</div>\t\t\t\n\t\t\t\t\n## Overview\t\n\n<p align=\"justify\">\t\t\t\t\t\nClox is a terminal-based clock application designed for terminal enthusiasts who appreciate simplicity, elegance, and productivity within their command-line environment. Whether you're coding, monitoring tasks, or simply enjoying the terminal aesthetic, Clox brings a stylish and customizable time display to your workspace.\n</p>\n\n<table>\n\t<tr>\n\t\t<td align=\"center\">PyPI Counter</td>\n\t\t<td align=\"center\"><a href=\"http://pepy.tech/project/clox\"><img src=\"http://pepy.tech/badge/clox\"></a></td>\n\t</tr>\n\t<tr>\n\t\t<td align=\"center\">Github Stars</td>\n\t\t<td align=\"center\"><a href=\"https://github.com/sepandhaghighi/clox\"><img src=\"https://img.shields.io/github/stars/sepandhaghighi/clox.svg?style=social&label=Stars\"></a></td>\n\t</tr>\n</table>\n\n\n\n<table>\n\t<tr> \n\t\t<td align=\"center\">Branch</td>\n\t\t<td align=\"center\">main</td>\t\n\t\t<td align=\"center\">dev</td>\t\n\t</tr>\n\t<tr>\n\t\t<td align=\"center\">CI</td>\n\t\t<td align=\"center\"><img src=\"https://github.com/sepandhaghighi/clox/actions/workflows/test.yml/badge.svg?branch=main\"></td>\n\t\t<td align=\"center\"><img src=\"https://github.com/sepandhaghighi/clox/actions/workflows/test.yml/badge.svg?branch=dev\"></td>\n\t</tr>\n</table>\n\n\n<table>\n\t<tr> \n\t\t<td align=\"center\">Code Quality</td>\n\t\t<td align=\"center\"><a href=\"https://www.codefactor.io/repository/github/sepandhaghighi/clox\"><img src=\"https://www.codefactor.io/repository/github/sepandhaghighi/clox/badge\" alt=\"CodeFactor\"></a></td>\n\t\t<td align=\"center\"><a href=\"https://app.codacy.com/gh/sepandhaghighi/clox/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade\"><img src=\"https://app.codacy.com/project/badge/Grade/4cd4cd3b20b1474fb674823b1b417b76\"></a></td>\n\t</tr>\n</table>\n\n\n## Installation\t\t\n\n### Source Code\n- Download [Version 1.2](https://github.com/sepandhaghighi/clox/archive/v1.2.zip) or [Latest Source](https://github.com/sepandhaghighi/clox/archive/dev.zip)\n- `pip install .`\t\t\t\t\n\n### PyPI\n\n- Check [Python Packaging User Guide](https://packaging.python.org/installing/)     \n- `pip install clox==1.2`\t\t\t\t\t\t\n\n\n## Usage\n\n\u2139\ufe0f You can use `clox` or `python -m clox` to run this program\n\n### Version\n\n```console\nclox --version\n```\n\n### Info\n\n```console\nclox --info\n```\n\n### Basic\n\n\u2139\ufe0f Press `Ctrl + C` to exit\n\n```console\nclox\n```\n\n### Face\n\n```console\nclox --face=3\n```\n* Use `--face=-1` for random mode\n* [Faces List](https://github.com/sepandhaghighi/clox/blob/main/FACES.md): `clox --faces-list`\n\n\n### Timezone\n\n```console\nclox --timezone=\"Etc/GMT+7\"\n```\n* [Timezones List](https://github.com/sepandhaghighi/clox/blob/main/TIMEZONES.md): `clox --timezones-list`\n\n\n### Manual Offset\n\n\u2139\ufe0f The local and timezone offset both have default values of `0`\n\nThese arguments allow you to manually adjust the time by \u00b1X hours. This is especially useful when daylight saving time (DST) is not correctly applied by the system or timezone database.\n\n```console\nclox --offset-local=1 --offset-timezone=-1\n```\n\n### Country\n\nThe `--country` argument allows you to specify a country using its **ISO 3166** code format\n\n\u2139\ufe0f When the `--country` argument is provided, the `--timezone` argument will be ignored\n\n\u2139\ufe0f If the specified country has multiple timezones, the first timezone will be selected automatically\n\n```console\nclox --country=\"DE\"\n```\n* [Countries List](https://github.com/sepandhaghighi/clox/blob/main/COUNTRIES.md): `clox --countries-list`\n\n\n### Vertical/Horizontal Shift\n\n\u2139\ufe0f The vertical and horizontal shift both have default values of `0`\n\n```console\nclox --v-shift=20 --h-shift=30\n```\n\n### No Blink\n\nDisable blinking mode\n\n```console\nclox --no-blink\n```\n\n### Hide Date\n\nIn this mode, the date will not be shown\n\n```console\nclox --hide-date\n```\n\n### Hide Timezone\n\nIn this mode, the timezone will not be shown\n\n```console\nclox --hide-timezone\n```\n\n### AM/PM Mode\n\nIn this mode, the clock will be displayed in 12-hour format\n\n```console\nclox --am-pm\n```\n\n### Vertical Mode\n\n```console\nclox --vertical\n```\n\n### Calendar Mode\n\nIn this mode, the calendar will be displayed\n\n\u2139\ufe0f Valid choices: [`MONTH`, `YEAR`]\n\n```console\nclox --calendar=month --first-weekday=\"SUNDAY\"\n```\n\n### Date System\n\n\u2139\ufe0f Valid choices: [`GREGORIAN`, `JALALI`]\n\n\u2139\ufe0f The default date system is `GREGORIAN`\n\n```console\nclox --date-system=jalali\n```\n\n### Date Format\n\n\u2139\ufe0f Valid choices: [`ISO`, `US`, `US-SHORT`, `EU`, `EU-SHORT`, `DOT`, `DASH`, `YMD`, `DMY`, `MDY`, `FULL`]\n\n\u2139\ufe0f The default date format is `FULL`\n\n```console\nclox --date-system=jalali --date-format=EU\n```\n* Date Formats List: `clox --date-formats-list`\n\n## Screen Record\n\n<div align=\"center\">\n\n<img src=\"https://github.com/sepandhaghighi/clox/raw/main/otherfiles/help.gif\">\n\n</div>\n\n## Issues & Bug Reports\t\t\t\n\nJust fill an issue and describe it. We'll check it ASAP!\n\n- Please complete the issue template\n \t\t\t\n\n## Show Your Support\n\t\t\t\t\t\t\t\t\n<h3>Star This Repo</h3>\t\t\t\t\t\n\nGive a \u2b50\ufe0f if this project helped you!\n\n<h3>Donate to Our Project</h3>\t\n\n<h4>Bitcoin</h4>\n1KtNLEEeUbTEK9PdN6Ya3ZAKXaqoKUuxCy\n<h4>Ethereum</h4>\n0xcD4Db18B6664A9662123D4307B074aE968535388\n<h4>Litecoin</h4>\nLdnz5gMcEeV8BAdsyf8FstWDC6uyYR6pgZ\n<h4>Doge</h4>\nDDUnKpFQbBqLpFVZ9DfuVysBdr249HxVDh\n<h4>Tron</h4>\nTCZxzPZLcJHr2qR3uPUB1tXB6L3FDSSAx7\n<h4>Ripple</h4>\nrN7ZuRG7HDGHR5nof8nu5LrsbmSB61V1qq\n<h4>Binance Coin</h4>\nbnb1zglwcf0ac3d0s2f6ck5kgwvcru4tlctt4p5qef\n<h4>Tether</h4>\n0xcD4Db18B6664A9662123D4307B074aE968535388\n<h4>Dash</h4>\nXd3Yn2qZJ7VE8nbKw2fS98aLxR5M6WUU3s\n<h4>Stellar</h4>\t\t\nGALPOLPISRHIYHLQER2TLJRGUSZH52RYDK6C3HIU4PSMNAV65Q36EGNL\n<h4>Zilliqa</h4>\nzil1knmz8zj88cf0exr2ry7nav9elehxfcgqu3c5e5\n<h4>Coffeete</h4>\n<a href=\"http://www.coffeete.ir/opensource\">\n<img src=\"http://www.coffeete.ir/images/buttons/lemonchiffon.png\" style=\"width:260px;\" />\n</a>\n\n\n# Changelog\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)\nand this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).\n\n## [Unreleased]\n## [1.2] - 2025-09-02\n### Added\n- `--offset-local` argument\n- `--offset-timezone` argument\n### Changed\n- `README.md` updated\n- Test system modified\n- `_get_weekday_id` function renamed to `get_weekday_id`\n- `clox_info` function renamed to `print_clox_info`\n## [1.1] - 2025-05-23\n### Added\n- `--first-weekday` argument\n- `--date-format` argument\n- `--date-formats-list` argument\n### Changed\n- `README.md` updated\n- Test system modified\n## [1.0] - 2025-05-06\n### Added\n- Local time\n### Changed\n- `clox_info` function modified\n- `run_clock` function modified\n## [0.9] - 2025-04-14\n### Added\n- Timezone difference\n### Changed\n- Python typing features added to all modules\n- Test system modified\n- `Python 3.6` support dropped\n## [0.8] - 2025-03-16\n### Added\n- `--country` argument\n- `--countries-list` argument\n- `COUNTRIES.md`\n### Changed\n- Input case sensitivity bug fixed\n- Test system modified\n- `README.md` updated\n## [0.7] - 2025-03-06\n### Added\n- Jalali calendar\n- `--date-system` argument\n### Changed\n- `README.md` updated\n## [0.6] - 2025-02-25\n### Added\n- `--calendar` argument\n### Changed\n- `README.md` updated\n## [0.5] - 2025-02-14\n### Added\n- `--hide-date` argument\n- `--hide-timezone` argument\n- `--am-pm` argument\n### Changed\n- `README.md` updated\n## [0.4] - 2025-01-18\n### Added\n- Date\n- `--info` argument\n## [0.3] - 2025-01-10\n### Added\n- Logo\n- `--vertical` argument\n### Changed\n- `show_faces_list` function updated\n- `AUTHORS.md` updated\n## [0.2] - 2025-01-01\n### Added\n- Blink mode\n- `--no-blink` argument\n### Changed\n- `README.md` updated\n## [0.1] - 2024-12-24\n### Added\n- `--v-shift` and `--h-shift` arguments\n- `--timezone` argument\n- `--face` argument\n- `run_clock` and `main` functions\n- `TIMEZONES.md`\n- `FACES.md`\n\n[Unreleased]: https://github.com/sepandhaghighi/clox/compare/v1.2...dev\n[1.2]: https://github.com/sepandhaghighi/clox/compare/v1.1...v1.2\n[1.1]: https://github.com/sepandhaghighi/clox/compare/v1.0...v1.1\n[1.0]: https://github.com/sepandhaghighi/clox/compare/v0.9...v1.0\n[0.9]: https://github.com/sepandhaghighi/clox/compare/v0.8...v0.9\n[0.8]: https://github.com/sepandhaghighi/clox/compare/v0.7...v0.8\n[0.7]: https://github.com/sepandhaghighi/clox/compare/v0.6...v0.7\n[0.6]: https://github.com/sepandhaghighi/clox/compare/v0.5...v0.6\n[0.5]: https://github.com/sepandhaghighi/clox/compare/v0.4...v0.5\n[0.4]: https://github.com/sepandhaghighi/clox/compare/v0.3...v0.4\n[0.3]: https://github.com/sepandhaghighi/clox/compare/v0.2...v0.3\n[0.2]: https://github.com/sepandhaghighi/clox/compare/v0.1...v0.2\n[0.1]: https://github.com/sepandhaghighi/clox/compare/e9b49e2...v0.1\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Geeky Clock for Terminal Enthusiasts",
    "version": "1.2",
    "project_urls": {
        "Download": "https://github.com/sepandhaghighi/clox/tarball/v1.2",
        "Homepage": "https://github.com/sepandhaghighi/clox",
        "Source": "https://github.com/sepandhaghighi/clox"
    },
    "split_keywords": [
        "clock",
        "time",
        "timer",
        "timezone",
        "terminal",
        "cli",
        "geek",
        "clox"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b45b4499edd5a14972bd369d923b8f80740186daf90531ee6ab5333306054d53",
                "md5": "efd0029613cd91654ba75cad4f136c06",
                "sha256": "4e96577242f0e292ac1d1037cab5f0448a0c3e91464f641436931ad03c257a81"
            },
            "downloads": -1,
            "filename": "clox-1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "efd0029613cd91654ba75cad4f136c06",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 14894,
            "upload_time": "2025-09-02T13:49:46",
            "upload_time_iso_8601": "2025-09-02T13:49:46.599115Z",
            "url": "https://files.pythonhosted.org/packages/b4/5b/4499edd5a14972bd369d923b8f80740186daf90531ee6ab5333306054d53/clox-1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d36bff6efce743d8ef0c9830bbaf5e16a2fab3fabf329065a93aba36a73514f7",
                "md5": "644463d877a5fc86f03be5df3aeba2fd",
                "sha256": "19a14dc906c5fa8e808cc9782b7b2eccfe7606d7832c8a9ecd0ba97e36317d29"
            },
            "downloads": -1,
            "filename": "clox-1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "644463d877a5fc86f03be5df3aeba2fd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 28632,
            "upload_time": "2025-09-02T13:49:45",
            "upload_time_iso_8601": "2025-09-02T13:49:45.548850Z",
            "url": "https://files.pythonhosted.org/packages/d3/6b/ff6efce743d8ef0c9830bbaf5e16a2fab3fabf329065a93aba36a73514f7/clox-1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-02 13:49:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sepandhaghighi",
    "github_project": "clox",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "art",
            "specs": [
                [
                    ">=",
                    "5.3"
                ]
            ]
        },
        {
            "name": "jdatetime",
            "specs": [
                [
                    ">=",
                    "3.8.2"
                ]
            ]
        },
        {
            "name": "pytz",
            "specs": [
                [
                    ">=",
                    "2019.2"
                ]
            ]
        }
    ],
    "lcname": "clox"
}
        
Elapsed time: 2.69892s