Skip to main content

PyCodemark – a full-featured code review tool for Python.

Project description

PyCodemark

PyPI version Python Version License Build


Overview

PyCodemark is a full-featured Python code review tool that automatically detects style issues, missing docstrings, and other code quality problems.
It supports terminal, JSON, and SARIF output for CI/CD integration and is extensible via plugins.


Features

  • Detect missing docstrings, PEP8 violations, clarity issues, type hints, and potential bugs
  • AI-powered smart review using OpenAI GPT models
  • Configurable checks via pycodemark.toml or environment variables
  • Auto-fixable issues: line length, optional template docstrings
  • Color-coded terminal output (green for no issues, yellow/red for warnings/errors)
  • JSON and SARIF output for CI pipelines
  • Plugin system for custom checks
  • Pre-commit integration
  • Works with Python 3.13+

Installation

Clone the repository:

git clone https://github.com/roshanguptamca/pycodemark.git
cd pycodemark

Create a Python 3.13 virtual environment:

python3.13 -m venv venv 
source venv/bin/activate
poetry install

Quick Start

Quick Start with PyCodemark

PyCodemark is a full-featured Python code review tool that detects style issues, missing docstrings, and other code quality problems. It supports terminal, JSON, and SARIF output for CI integration.

Installation

Install PyCodemark via pip:

pip install pycodemark

Or with Poetry:

poetry add pycodemark 

poetry run pycodemark review src/
poetry run  pycodemark review src/ --format json
poetry run pycodemark review src/ --format sarif  

Run a basic code review:

pycodemark review src/
pycodemark review src/ --format json
pycodemark review src/ --format sarif    

Environment Variables

PyCodemark requires an OpenAI API key to perform AI-powered smart code reviews. You can also optionally specify which OpenAI model to use.

1. OpenAI API Key

Set your API key as an environment variable:

export OPENAI_API_KEY="sk-xxxxxxxxxxxxxxxxxxxxxxxx" 

This is required for the smart-review command.

The tool will use this key to authenticate with the OpenAI API. You can obtain your key from OpenAI API Keys

2.Optional: Specify AI Model

By default, PyCodemark uses the gpt-5 model for smart reviews. You can override it with the environment variable CODEMARK_MODEL:

export CODEMARK_MODEL="gpt-5" 

If not set, gpt-5 will be used automatically. You can specify any OpenAI chat-capable model available to your account. Example models: gpt-5, gpt-5.1, gpt-4, gpt-4-32k.

3. Quick Example:

export OPENAI_API_KEY="sk-xxxx"
export CODEMARK_MODEL="gpt-5"

# Run AI-powered review
pycodemark smart-review src/

Any issues detected by the AI will appear in the terminal table, JSON, or SARIF output depending on the chosen --format.

If your quota is exceeded or the API fails, the tool will log the error in the report.

4. Security Tips

Do not commit your API key to version control. Store keys securely in environment variables or secret managers. You can also use .env files with tools like direnv or python-dotenv.

Plugins Extend PyCodemark by adding custom checks under src/codemark/plugins/. Each plugin must implement: ```python` def run(file_path, config): """Return a list of issues detected in the file.""" return []

Pre-commit Integration

Add to your .pre-commit-config.yaml:
```yaml repos:
  - repo: local
    hooks:
      - id: codemark
        name: codemark-review
        entry: codemark review --format terminal
        language: system
        types: [python]     
```

Then run:
```bashpre-commit install
```pre-commit install

CI/CD Integration (GitHub Actions)

You can integrate PyCodemark in CI pipelines with SARIF reporting. Example workflow file: .github/workflows/codemark.yml

Runs PyCodemark on every push or pull request

Uploads SARIF results to GitHub for code scanning

Provides automated code quality checks

Configuration

Configure PyCodemark via pyproject.toml:

[tool.pycodemark]
max_line_length = 120
insert_docstrings = true
ignore_rules = ["LineLength"]
checks = { style = true, clarity = true, docstrings = true, type_hints = true, bugs = true, best_practices = true, ai_review = true }
exclude = ["tests/", "migrations/"]
  • max_line_length: Maximum allowed characters per line
  • insert_docstrings: Automatically insert template docstrings if missing
  • ignore_rules: Disable specific rules
  • checks: Enable or disable specific checks
  • exclude: Ignore specific files or directories

Makefile Commands:

  • make lint: Run code linting
  • make venv # Create virtual environment
  • make install # Install dependencies via Poetry
  • make build # Build package
  • make test # Run tests
  • make lint # Run linter
  • make lint-fix # Automatically fix lint issues
  • make review # Run terminal review
  • make review-json # Run review with JSON output
  • make review-sarif # Run review with SARIF output
  • make publish # Publish to PyPI
- **NEW:** Auto-generate missing unit tests  
  - `pycodemark gen-tests src/` → scans your source code for functions without tests  
  - Creates or appends to files like `tests/test_<module>.py`  
  - Supports `--ai` for GPT-5-powered intelligent test generation  
  - Ideal for boosting test coverage quickly

## AI-Powered Unit Test Generation
Automatically generate tests for functions without coverage:
Command	Description:
```bash
pycodemark gen-tests src/	# Generate basic pytest test stubs
pycodemark gen-tests src/ --ai	# Generate AI-assisted realistic tests
pycodemark gen-tests src/ --overwrite	# Replace existing test files
pycodemark gen-tests src/ --include-private	# Include private functions in test generation

Download Documentation:

PDF HTML

License

MIT License © Roshan Gupta

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycodemark-0.5.1.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pycodemark-0.5.1-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file pycodemark-0.5.1.tar.gz.

File metadata

  • Download URL: pycodemark-0.5.1.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.5 Darwin/25.0.0

File hashes

Hashes for pycodemark-0.5.1.tar.gz
Algorithm Hash digest
SHA256 75ffe185f5d4a0a0b5888796e5a0e8a7dd70df7161d2366a6f9252ca8e0393e8
MD5 c9c8f294b89871758277d7b0657c9410
BLAKE2b-256 bdabd505d54063628da5516416729ba5fe31d7d4feb82256bd7e51ed0fc5e5fe

See more details on using hashes here.

File details

Details for the file pycodemark-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: pycodemark-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 17.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.5 Darwin/25.0.0

File hashes

Hashes for pycodemark-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 144eb93c109125de2a3e1c4d840eb2bae3c4ec1a729dd775a78f2de1cc2df2fc
MD5 eb4afd4483a1ea5f44da1531b1f8b1f3
BLAKE2b-256 53467d98ca879649519b879623128cc1c305978dc196cb5f96b85007f49678cb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page