Skip to content

QuantumJunction/PythonPlayground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Playground

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.

Features

  • Minimal structure
  • Quick experiments without boilerplate
  • Optional virtual environment support
  • Space for notebooks, scratch scripts, and prototypes

Getting Started

  1. Clone the repo
git clone https://github.com/QuantumJunction/PythonPlayground.git
cd PythonPlayground
  1. Set up a virtual environment (recommended)
python -m venv .venv
source .venv/bin/activate   # Linux/macOS
.venv\Scripts\activate      # Windows
  1. Install dependencies (if any)
pip install -r requirements.txt

If no requirements file exists yet, create one when needed:

pip freeze > requirements.txt

Structure

/
├── experiments/     # Scratch scripts, prototypes
├── notebooks/       # Jupyter notebooks for exploration
├── utils/           # Helper modules
├── requirements.txt # dependencies
├── LICENSE
└── README.md

Usage

Run any script:

python experiments/<script>.py

Start Jupyter:

jupyter notebook

Guidelines

  • 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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published