Metadata-Version: 2.4
Name: dailykey
Version: 1.0.0
Summary: Generate deterministic daily passwords that stay in sync across machines
Project-URL: Documentation, https://dailykey-5e1996.gitlab.io
Project-URL: Source, https://gitlab.com/waterjuice/dailykey
Author: WaterJuice
License-Expression: Unlicense
License-File: LICENSE
Keywords: daily,hash,key,token
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# dailykey

Generate deterministic passwords that stay in sync across machines — even
offline ones — without ever exchanging them.

Two machines initialised with the same passphrase will always produce the same
key on the same day, with no network connection required.

## Install

```bash
pip install dailykey
```

## Usage

Initialise with a passphrase (one-time, on each machine):

```bash
dailykey --init
```

Generate today's key:

```bash
dailykey              # Print today's key
dailykey backupdisk   # Print today's key for "backupdisk"
```

## Licence

Unlicense — public domain; see [LICENSE](LICENSE).
