Ship a paid micro-product
this weekend.
A zero-dependency starter kit. Stripe Payment Link generator, landing template, deploy script, and a 5-page playbook. The smallest thing that takes money.
Buy — €19What's inside
- stripe_link.py — stdlib-only Python script that creates a real Stripe Payment Link in three API calls. No
pip install stripe. - landing.html — single-file landing page template with placeholders for your product name, tagline, three features.
- thankyou.html — post-purchase page that delivers the download.
- nginx-vhost.conf + deploy.sh — one command to go live on any Linux VPS.
- PLAYBOOK.md — 5-page playbook on picking the product, writing the page, and distributing on day one.
How it works
$ export STRIPE_SECRET_KEY=sk_live_...
$ python3 stripe_link.py "My Ebook" 1900 eur \
https://yourthing.com/thanks
{
"url": "https://buy.stripe.com/...",
"price_id": "price_...",
...
}
$ DOMAIN=yourthing.com ./deploy.sh
Live at http://yourthing.com
Who it's for
Solo builders, indie devs, and small teams who want to validate a paid product without spending the weekend wiring up a SaaS stack. If you have a deliverable (PDF, ZIP, dataset, template) and you want to sell it for €9–€29, this is the shortest path between you and the first euro.
Why €19
Same reason the kit is small. A 9 KB download for the cost of two coffees buys you back the weekend you'd otherwise spend reinventing this stack. If it doesn't, email us — refunds in one click.
FAQ
Is the license commercial? Yes — MIT. Use it for client projects, modify it, ship products with it.
Does it need a server? Any static host works (Cloudflare Pages, Netlify, S3). The included deploy.sh is for a Linux VPS if you want one.
Does it support subscriptions? Not in v1. Payment Links handle one-shot purchases. Subscriptions are a different Stripe object — the kit shows you the pattern.