A collection of Python examples, exercises, and small projects maintained by ManikHossain27. This repository is intended for learning, demonstration, and experimentation with Python core concepts and common libraries.
- Python 3.8 or newer
- Optional: a virtual environment and a
requirements.txtfile in subfolders for project-specific dependencies
-
Create and activate a virtual environment:
python -m venv .venv .\.venv\Scripts\activate -
Install dependencies (if a requirements file exists):
pip install -r requirements.txt -
Run an example script:
python path\to\example.py
If the repository contains tests, run them with pytest:
pip install -r requirements-dev.txt # if provided
pytestContributions welcome. Create an issue or open a pull request with a clear description of changes. Follow existing code style and add tests where appropriate.
If a LICENSE file is present, this project follows the terms in that file. Otherwise, add a license to make reuse explicit.
Maintained by ManikHossain27.