A curated collection of standalone Python projects that live together in this repository. Each project is self-contained, with its own dependencies, tests, and usage instructions where applicable. This README gives you everything needed to get started.
- Repository: A set of independent Python projects (one project per subdirectory).
- Python version: Python 3.8+ (works with 3.8, 3.9, 3.10, 3.11+).
- License: MIT (short summary below).
-
Clone the repo:
git clone https://github.com/Fauzan0249/Combined-projects.git cd Combined-projects -
Create and activate a virtual environment (recommended):
python -m venv .venv # macOS / Linux source .venv/bin/activate # Windows (PowerShell) .venv\Scripts\Activate.ps1
-
Install dependencies for a specific project:
- If a project has
requirements.txt:pip install -r <project-folder>/requirements.txt
- If there are no per-project requirements but there is a top-level
requirements.txt:pip install -r requirements.txt
- If a project has
-
Run a project
- Typical patterns you can try (no README edits needed):
# Run a script directly (if project uses a script entrypoint) python <project-folder>/main.py # Or run a package as a module (if project is structured as a package) python -m <project-folder>
- Typical patterns you can try (no README edits needed):