https://github.com/k-saikrishnan/practical-python-projects
Implementations of projects in https://github.com/karan/Projects
https://github.com/k-saikrishnan/practical-python-projects
project projects python
Last synced: about 1 year ago
JSON representation
Implementations of projects in https://github.com/karan/Projects
- Host: GitHub
- URL: https://github.com/k-saikrishnan/practical-python-projects
- Owner: K-Saikrishnan
- License: mit
- Created: 2024-02-11T12:47:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-07T18:21:49.000Z (about 1 year ago)
- Last Synced: 2025-04-07T19:31:18.238Z (about 1 year ago)
- Topics: project, projects, python
- Language: Python
- Homepage: https://k-saikrishnan.github.io/practical-python-projects/
- Size: 341 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# practical-python-projects
[](https://results.pre-commit.ci/latest/github/K-Saikrishnan/practical-python-projects/main)
[](https://github.com/K-Saikrishnan/practical-python-projects/actions/workflows/ci.yaml)
[](https://github.com/K-Saikrishnan/practical-python-projects/actions/workflows/github-code-scanning/codeql)
[](https://github.com/K-Saikrishnan/practical-python-projects/actions/workflows/pages/pages-build-deployment)
Implementations of projects in
## Local Development
- Create a virtual environment: `python -m venv .venv`
- Activate the virtual environment:
- Linux/MacOS: `source .venv/bin/activate`
- Windows: `.venv\Scripts\activate`
- Git Bash: `source .venv/Scripts/activate`
- Install packages: `pip install -r requirements.txt`
- Install pre-commit hooks: `pre-commit install`
- Run pre-commit: `pre-commit run --all-files`
- Run tests: `python -m pytest`