Skip to main content

day countdown program (python edition)

Project description

Army Days (Python version)

Overview

A command-line program to display the number of days until certain events. This program (hence its name) is also based on the West Point requirement that first year cadets have to be able to recite "the days". Part of that tradition is that if it is past noon at the time, you subtract a day but add "and a butt". As most people aren't concerned about being West Point style, this is an optional feature that can be enabled via a flag. Past events can optionally be displayed via configuration.

Installing as a CLI Tool

For regular usage, it's useful to install the program using either pipx or uv tool or just run directly with uvx.

Usage

Example output

❯ army-days
 Days
89 days until Army beats the hell out of Navy.
100 days until Christmas.

Help

Once installed, you can run the command with the --help option.

 army-days --help
Usage: army-days [-f FILENAME] [-g] [-p SHOW_PAST] [-a] [-h] [-v]

  day countdown program (python edition)

  Options
    [-f, --filename FILENAME]    configuration file; by default searches:
                                 ./days.yaml ./days.json ~/days.yaml
                                 ~/days.json ~/.days.yaml ~/.days.json.
    [-g, --generate-sample]      generate sample data in yaml format (sends to
                                 stdout).
    [-p, --show-past SHOW_PAST]  show past events within the past N days (use 0
                                 to show all past events).
    [-a, --show-all]             show all future events, bypassing
                                 max_days_future config limit.

  Help
    [-h, --help]                 Show this message and exit.
    [-v, --version]              Show the version and exit.

Configuration / Input file

By default (as the help indicates), army-days looks for a configuration file in this order:

  • days.yaml or days.json in the current working directory.
  • days.yaml or days.json in the user's home directory.
  • .days.yaml or .days.json in the user's home directory.

You can override the name of the configuration file via the -f / --filename option.

Sample Configuration File Generation

To generate a sample configuration file:

army-days -g > days.yaml

The sample file will look similar to this:

config:
  show_completed: false
  use_army_butt_days: false
entries:
- date: '2025-09-15T00:00:00'
  title: your one year anniversary of using army-days
- alwaysShow: true
  date: '2024-09-15T00:00:00'
  showPastLimit: 400
  title: example always-shown event (e.g., 'broke my leg')

[!NOTE] You do not need a time as part of the date field. So for simplicity, you can just leave off the time portion. In fact, if you use a timezone aware timestamp, you might end up with some unusual behavior as army-days first converts it to a local timestamp.

Showing Past Events

Army-days provides multiple ways to display past events:

Command-line option

Use the -p / --show-past option to show past events. It always takes an integer day-limit; pass 0 to show all past events:

# Show all past events
army-days --show-past 0

# Show only past events within the last 365 days
army-days --show-past 365

Per-event configuration

You can configure individual events to always show, even if they're in the past, by using the alwaysShow and showPastLimit options:

entries:
- date: '2024-06-01'
  title: broke my leg
  alwaysShow: true
  showPastLimit: 400  # Only show if within the past 400 days
  • alwaysShow: When set to true, this event will always be displayed, regardless of the global show_completed setting
  • showPastLimit: Optional limit (in days) for how far in the past to show this event. If omitted, the event will always show regardless of how long ago it occurred

Global configuration

You can also set show_completed: true in the config section to always show all past events:

config:
  show_completed: true

Development

This project uses uv for dependency management and virtual environment management.

uv python install
uv sync

Running tests

For basic tests with coverage:

uv run pytest --cov

And for tests with coverage and more verbose output also allowing stdout:

uv run pytest --cov -v -s

Running the program

uv run army-days

Project details


Download files

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

Source Distribution

army_days-0.6.0.tar.gz (55.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

army_days-0.6.0-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file army_days-0.6.0.tar.gz.

File metadata

  • Download URL: army_days-0.6.0.tar.gz
  • Upload date:
  • Size: 55.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.4

File hashes

Hashes for army_days-0.6.0.tar.gz
Algorithm Hash digest
SHA256 683679caf2640c6e32218e1463fa86fdd1701a7b130ad3e58f5503009333af91
MD5 49bbb516e159b17d345651d868a43ab9
BLAKE2b-256 3107035acb85062008dd89f51512f6c626be80f39ced556f1cd6bc6e0ae5cb18

See more details on using hashes here.

File details

Details for the file army_days-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: army_days-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.4

File hashes

Hashes for army_days-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6820aa3da79a4c885e5d03a3c0c2eb184f935bad2b1766999ae3f6a1a52f6daa
MD5 ddf79b93105f64336ec36d8c7ae40f54
BLAKE2b-256 1832feca68d8fe9cfc638b838c02fe82b1f49b8d95d275ed4e81a8558bdad709

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page