Skip to main content

A static analysis tool for diffing public Python APIs.

Project description

Difflog

Automated Changelog Generation via API Diffing for Python Projects

Difflog simplifies the task of generating changelogs by using static analysis to detect API-level changes in Python scripts. It outputs a concise Markdown changelog, ideal for release notes or CI/CD workflows.

Example integration: See .github/workflows/changes.yml


Installation

Install Difflog via pip:

pip install difflog

Detecting API Changes Between Files

Given two versions of a Python script:

main1.py

def main():
    print("Hello, world!")

if __name__ == "__main__":
    main()

main2.py

def main(name: str):
    print("Hello, world! My name is", name)

if __name__ == "__main__":
    main("John")
    print("Goodbye, world!")

Run the following command to detect API differences:

python -m difflog main1.py main2.py

Example output:

[main] Added positional or keyword argument `name`

For more examples, see tests/test_api_diffing.py


Generating a Markdown Changelog from Git

If you're working in a Git repository, you can generate a changelog based on file-level API changes between commits:

difflog.git_report > CHANGES.md

This will:

  • Analyze code changes since the last Git push
  • Output a changelog in GitHub's Markdown format to CHANGES.md

You can also specify a revision range:

difflog.git_report --from-rev v1.0.0 --to-rev HEAD > CHANGES.md

Programmatic API Usage

Use Difflog as a Python module for custom workflows, e.g., filtering changes, customizing output formats, etc.

import difflog

with open("old_file.py") as f:
    old_code = f.read()

with open("new_file.py") as f:
    new_code = f.read()

for change in difflog.diff(old_code, new_code):
    print(change)

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository
  2. Create a new branch
  3. Submit a pull request

See existing issues or open a new one to discuss your ideas.


License

Licensed under the Apache License 2.0. See LICENSE for details.


Acknowledgments

Difflog leverages the excellent DeepDiff library for structural diffing.

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

difflog-0.0.2.dev5.tar.gz (14.0 kB view details)

Uploaded Source

Built Distribution

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

difflog-0.0.2.dev5-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file difflog-0.0.2.dev5.tar.gz.

File metadata

  • Download URL: difflog-0.0.2.dev5.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for difflog-0.0.2.dev5.tar.gz
Algorithm Hash digest
SHA256 6dea6ca8e0f99f1bc54d4530b41464d7eafa6a45ac57b4a5f8c06bd32982655f
MD5 298cce3fbee6940a50aca3efaa7df933
BLAKE2b-256 58584249334c8eaf6c8405e72104986c2de4de1d57946fe20a43e96385b2fa45

See more details on using hashes here.

File details

Details for the file difflog-0.0.2.dev5-py3-none-any.whl.

File metadata

  • Download URL: difflog-0.0.2.dev5-py3-none-any.whl
  • Upload date:
  • Size: 13.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for difflog-0.0.2.dev5-py3-none-any.whl
Algorithm Hash digest
SHA256 7510393edc5b7758933c6e5fe47684fbe727383704212e089f9f5b3569905b6d
MD5 b5418603896b676efd62a667409c24fc
BLAKE2b-256 1968ccbb8fcd1e877ab28002f37bb3da380ab27a181fc796dd8fc178d0600ef0

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