A small sandbox for experimenting with Python snippets, testing ideas, and exploring libraries without the overhead of a full project setup. Nothing here is meant to be polished—just a place to try things out.
- Minimal structure
- Quick experiments without boilerplate
- Optional virtual environment support
- Space for notebooks, scratch scripts, and prototypes
- Clone the repo
git clone https://github.com/QuantumJunction/PythonPlayground.git
cd PythonPlayground- Set up a virtual environment (recommended)
python -m venv .venv
source .venv/bin/activate # Linux/macOS
.venv\Scripts\activate # Windows- Install dependencies (if any)
pip install -r requirements.txtIf no requirements file exists yet, create one when needed:
pip freeze > requirements.txt/
├── experiments/ # Scratch scripts, prototypes
├── notebooks/ # Jupyter notebooks for exploration
├── utils/ # Helper modules
├── requirements.txt # dependencies
├── LICENSE
└── README.mdRun any script:
python experiments/<script>.pyStart Jupyter:
jupyter notebook- Commit only what might be useful later.
- Remove clutter when it stops being useful.
- Keep experiments isolated so they don’t interfere with each other.