Skip to content

Instantly share code, notes, and snippets.

@pathikrit
Created July 17, 2025 16:25
Show Gist options
  • Save pathikrit/61de19421a19a30eeb9b7dc44b3d24cc to your computer and use it in GitHub Desktop.
Save pathikrit/61de19421a19a30eeb9b7dc44b3d24cc to your computer and use it in GitHub Desktop.
New Python Project
#!/usr/bin/env bash
PROJECT=$1
uv init $PROJECT
cd $PROJECT
git init
touch .env
curl -o .gitignore https://raw.githubusercontent.com/github/gitignore/refs/heads/main/Python.gitignore
uv add marimo pydantic polars
uv tool install ruff
uv run marimo edit hello.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment