๐Ÿš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more โ†’
Socket
DemoInstallSign in
Socket

weekly

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

weekly

A comprehensive Python project quality analyzer that provides actionable next steps for improving your project

0.1.33
PyPI
Maintainers
1

Weekly - Project Quality Analyzer

PyPI PyPI - Downloads Python Versions License Documentation Code style: black Imports: isort Checked with mypy codecov Build Status CodeQL pre-commit.ci status Ruff CodeFactor OpenSSF Scorecard Dependabot Contributor Covenant Discussions Twitter Follow

Weekly is a comprehensive Python project quality analyzer that helps developers maintain high code quality by automatically detecting issues and suggesting improvements. It analyzes various aspects of your Python projects and generates actionable reports with clear next steps.

โœจ Features

  • ๐Ÿงช Test Coverage Analysis: Check test coverage and test configuration
  • ๐Ÿ“š Documentation Check: Verify README, LICENSE, CHANGELOG, and API docs
  • ๐Ÿ”„ CI/CD Integration: Detect CI/CD configuration and best practices
  • ๐Ÿ“ฆ Dependency Analysis: Identify outdated or vulnerable dependencies
  • ๐Ÿ› ๏ธ Code Quality: Check for code style, formatting, and common issues
  • ๐Ÿ“Š Interactive Reports: Generate detailed reports in multiple formats (JSON, Markdown, Text, HTML)
  • ๐Ÿ” Extensible Architecture: Easy to add custom checkers and rules
  • ๐Ÿš€ Fast and Lightweight: Minimal dependencies, fast analysis
  • ๐Ÿ”„ Git Integration: Works seamlessly with Git repositories
  • ๐Ÿ” Multi-Repo Scanning: Scan multiple Git repositories in a directory structure
  • ๐Ÿ“… Date-based Filtering: Only analyze repositories with recent changes
  • ๐Ÿ“‘ HTML Reports: Beautiful, interactive HTML reports with drill-down capabilities
  • ๐Ÿ”’ Security Checks: Identify potential security issues in your code
  • ๐Ÿ“ˆ Trend Analysis: Track code quality metrics over time

๐Ÿ” Git Repository Scanning

Weekly can scan multiple Git repositories in a directory structure and generate comprehensive reports for each one, plus a summary report.

Basic Usage

# Scan all Git repositories in ~/github
weekly scan ~/github

# Only show repositories with changes in the last 7 days (default)
weekly scan ~/github --since "7 days ago"

# Specify a custom output directory
weekly scan ~/github -o ./weekly-reports

# Run with 8 parallel jobs for faster scanning
weekly scan ~/github -j 8

# Generate JSON reports instead of HTML
weekly scan ~/github --format json

Example Output

๐Ÿ” Scanning Git repositories in /Users/username/github...
โœ… Scan complete! Generated reports for 3 repositories.
๐Ÿ“Š Summary report: weekly-reports/summary.html

โœ… org1/repo1: 5 checks
   โœ“ style: Passed
   โœ“ code_quality: Passed
   โœ“ dependencies: 2 outdated packages found
   โœ“ docs: Documentation is 85% complete
   โœ“ tests: 92% test coverage

Command Options

Usage: weekly scan [OPTIONS] [ROOT_DIR]

  Scan multiple Git repositories and generate reports.

  ROOT_DIR: Directory containing Git repositories (default: current directory)

Options:
  -o, --output PATH      Output directory for reports (default: ./weekly-reports)
  -s, --since TEXT        Only include repositories with changes since this date (e.g., "7 days ago", "2023-01-01")
  --recursive / --no-recursive  Scan directories recursively (default: True)
  -j, --jobs INTEGER      Number of parallel jobs (default: 4)
  -f, --format [html|json|markdown]  Output format (default: html)
  --summary-only          Only generate a summary report, not individual reports
  -v, --verbose           Show detailed output
  --help                  Show this message and exit.

Programmatic Usage

from pathlib import Path
from datetime import datetime, timedelta
from weekly import GitScanner

# Create a scanner instance
scanner = GitScanner(
    root_dir=Path.home() / "github",
    output_dir="weekly-reports",
    since=datetime.now() - timedelta(days=7),
    recursive=True,
    jobs=4
)

# Run the scan
results = scanner.scan_all()

# Process results
for result in results:
    print(f"{result.repo.org}/{result.repo.name}:")
    for name, check in result.results.items():
        status = "โœ“" if check.is_ok else "โœ—"
        print(f"  {status} {name}: {check.message}")

๐Ÿš€ Installation

Using pip

pip install weekly
poetry add weekly

For Development

# Clone the repository
git clone https://github.com/wronai/weekly.git
cd weekly

# Install with Poetry
poetry install --with dev

# Install pre-commit hooks
pre-commit install

# Activate the virtual environment
poetry shell

Usage

Basic Usage

Analyze a Python project:

weekly analyze /path/to/your/project

Command Line Options

Usage: weekly analyze [OPTIONS] PROJECT_PATH

  Analyze a Python project and provide quality insights.

  PROJECT_PATH: Path to the project directory (default: current directory)

Options:
  -f, --format [text|json|markdown]  Output format (default: text)
  -o, --output FILE                  Output file (default: stdout)
  --show-suggestions / --no-suggestions
                                      Show improvement suggestions (default: true)
  -v, --verbose                      Show detailed output
  --help                             Show this message and exit.

Examples

  • Analyze current directory and show results in the terminal:

    weekly analyze .
    
  • Generate a Markdown report:

    weekly analyze -f markdown -o report.md /path/to/project
    
  • Generate a JSON report for programmatic use:

    weekly analyze -f json -o report.json /path/to/project
    

Output Example

Text Output

๐Ÿ“Š Weekly Project Analysis Report
================================================================================
Project: example-project
Generated: 2025-06-07 12:34:56

Summary:
--------------------------------------------------------------------------------
โœ… 5 passed
โš ๏ธ  3 warnings
โŒ 1 errors

Detailed Results:
--------------------------------------------------------------------------------
โœ… Project Structure
  Found Python project with proper structure

โœ… Dependencies
  All dependencies are properly specified
  
โš ๏ธ  Test Coverage
  Test coverage is below 80% (currently 65%)
  
  Suggestions:
    โ€ข Add more test cases to improve coverage
    โ€ข Consider using pytest-cov for coverage reporting

โŒ Documentation
  Missing API documentation
  
  Suggestions:
    โ€ข Add docstrings to all public functions and classes
    โ€ข Consider using Sphinx or MkDocs for API documentation

Recommended Actions:
--------------------------------------------------------------------------------
1. Improve Test Coverage
   โ€ข Add unit tests for untested modules
   โ€ข Add integration tests for critical paths
   โ€ข Set up code coverage reporting in CI

2. Enhance Documentation
   โ€ข Add docstrings to all public APIs
   โ€ข Create API documentation using Sphinx or MkDocs
   โ€ข Add examples to the README

Programmatic Usage

from pathlib import Path
from weekly import analyze_project
from weekly.core.report import Report

# Analyze a project
report = analyze_project(Path("/path/to/your/project"))

# Get report as dictionary
report_data = report.to_dict()

# Get markdown report
markdown = report.to_markdown()

# Print summary
print(f"โœ… {report.summary['success']} passed")
print(f"โš ๏ธ  {report.summary['warnings']} warnings")
print(f"โŒ {report.summary['errors']} errors")

# Get suggestions
for suggestion in report.get_suggestions():
    print(f"\n{suggestion['title']}:")
    for item in suggestion['suggestions']:
        print(f"  โ€ข {item}")

### Most Active Files

- `src/main.py`: 12 changes
- `tests/test_main.py`: 8 changes
- `README.md`: 5 changes

### Languages Used

- `.py`: 15 files
- `.md`: 3 files
- `.json`: 2 files

## ๐Ÿ“‹ Next Steps

- [ ] Add tests for recent changes
- [ ] Refactor large files: src/utils.py, src/processor.py...

## ๐Ÿ“œ Recent Commits

- `a1b2c3d` Fix bug in data processing (2023-05-15)
- `f4e5d6a` Add new feature X (2023-05-14)
- `b3c4d5e` Update documentation (2023-05-13)
- `c6d7e8f` Refactor module Y (2023-05-12)
- `d9e0f1a` Initial commit (2023-05-10)

*[View full history in the JSON file]*

Development

Setup

  • Clone the repository:

    git clone https://github.com/wronai/weekly.git
    cd weekly
    
  • Create and activate a virtual environment:

    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
    
  • Install development dependencies:

    pip install -e .[dev]
    

Running Tests

pytest

Code Style

This project uses:

  • Black for code formatting
  • isort for import sorting
  • flake8 for linting
  • mypy for type checking

Run all checks:

black .
isort .
flake8
mypy .

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • Built with โค๏ธ by the WronAI team
  • Inspired by various Git analysis tools

Keywords

code quality

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts