惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
Last Week in AI
Last Week in AI
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
WordPress大学
WordPress大学
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
罗磊的独立博客
The Cloudflare Blog
V
V2EX
月光博客
月光博客
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
GbyAI
GbyAI
博客园 - 【当耐特】
T
Tailwind CSS Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Published My First Python Package to PyPI — A CLI Tool ...
HiroItozzz · 2026-05-03 · via DEV Community

I Published My First Python Package to PyPI — A CLI Tool for Docker Compose

I did it. I published my first package to PyPI.

It's called fast-dcp, and honestly, it started as a personal annoyance. I kept typing docker compose up --build and docker compose exec app bash dozens of times a day. My fingers got tired. So I built something about it.


What is fast-dcp?

fast-dcp is a CLI tool that provides shorthand aliases for common docker compose commands. Nothing revolutionary — just fewer keystrokes for the things you type constantly.

# Instead of this:
docker compose up --build

# Just type:
dcpu -b

# Instead of this:
docker compose exec app bash

# Just type:
dcpe app

Enter fullscreen mode Exit fullscreen mode

Three commands cover the main workflows:

  • dcp — general-purpose wrapper with subcommands (up, build, exec, restart, ps, logs, stop, down)
  • dcpu — dedicated shorthand for docker compose up
  • dcpe — dedicated shorthand for docker compose exec

Some real examples

# docker compose up -d
dcp u -d

# docker compose -f docker-compose.prod.yml up --build
dcpu -f docker-compose.prod.yml -b

# docker compose exec app bash
dcpe app

# docker compose exec app uv run pytest
dcpe app uv run pytest

# docker compose restart app
dcp r app

# docker compose logs app -f
dcp l app -F

Enter fullscreen mode Exit fullscreen mode


How it's built

The implementation is pure Python — no external runtime dependencies.

The core is a DockerCmdProcessor class that builds up the docker command from parsed arguments and passes it to subprocess.run. It implements __call__, so it works naturally as a callable passed to argparse's set_defaults(func=...) — a pattern recommended in the argparse docs.

args = parser.parse_args()
code = args.func(args)
exit(code)

Enter fullscreen mode Exit fullscreen mode

For the CLI definition, I wrote a small ArgDefiner wrapper around ArgumentParser to enable method chaining. It made the main() function much more declarative and readable — inspired by how Django's class-based views compose behavior through mixins.

(
    ArgDefiner(subparsers.add_parser("up", aliases=["u"], ...))
    .add_project_args()
    .add_file_args()
    .add_build_args()
    .add_detach_args()
    .add_container_name_subcmd(multiple=True)
    .set_defaults(func=Processor())
)

Enter fullscreen mode Exit fullscreen mode

Testing was surprisingly clean. Unit tests cover ArgDefiner and DockerCmdProcessor independently, and integration tests use patch("sys.argv", ...) to simulate real CLI invocations end-to-end.


Install it

No external runtime dependencies — pure Python. Just install and use.

# Using pipx (recommended)
pipx install fast-dcp

# Or using uv
uv tool install fast-dcp

Enter fullscreen mode Exit fullscreen mode

Not familiar with pipx or uv?

Both install CLI tools in isolated environments — no virtual environment activation needed, no conflicts with other packages. uv tool is the faster option if you already use uv.

macOS

brew install pipx
pipx ensurepath
pipx install fast-dcp

Enter fullscreen mode Exit fullscreen mode

Windows

python -m pip install --user pipx
python -m pipx ensurepath
# Restart terminal, then:
pipx install fast-dcp

Enter fullscreen mode Exit fullscreen mode

Linux (Ubuntu/Debian)

pip install pipx
pipx ensurepath
pipx install fast-dcp

Enter fullscreen mode Exit fullscreen mode


Requirements

  • Python 3.11+
  • Docker with Compose V2 (docker compose, not docker-compose)

Honest thoughts on publishing for the first time

This is a small tool. It wraps a handful of docker commands and saves a few keystrokes. But getting it to a point where someone else could pipx install fast-dcp and have it just work — that took more thought than I expected.

Packaging, pyproject.toml, flit, classifiers, editable installs, importlib.metadata... there's a lot of moving parts for something that feels like it should be simple. I learned a lot just by going through the process.

If you work with docker compose regularly, give it a try. And if something is broken or missing, feel free to open an issue.

🔗 PyPI | GitHub