One line of mood for your terminal.
$ mood
🌊 ⛅️ 14°C "Done is better than perfect." — Sheryl SandbergA single command. A single line. Day-of-week emoji + your current weather + one rotating quote. Run it on shell startup, or any time you want a moment.
pip install mood-cliPython 3.9+. No third-party dependencies.
mood # default: Moscow weather + random quote
mood --lat 40.71 --lon -74.00 # NYC
mood --no-weather # skip the network call
mood --seed 42 # deterministic quote (for tests)# ~/.zshrc or ~/.bashrc
mood --lat 55.7558 --lon 37.6173Now every new terminal greets you with a weather sniff and a quote. Quiet, non-intrusive, and the weather API has no key and no rate limit (open-meteo.com).
from mood_cli.cli import render
print(render(lat=40.71, lon=-74.00))Because motd died on most systems, and a fresh terminal staring at you
in silence is a missed micro-moment.
git clone https://github.com/stix2112333-stack/mood-cli
cd mood-cli
pip install -e ".[dev]"
pytestMIT.