Skip to main content

A fast, HTML aware, Django template formatter, written in Rust.

Project description

Djangofmt

Pypi Version License Supported Python Versions Actions status pre-commit.ci status CodSpeed Badge

Docs | Playground

A fast, HTML aware, Django template formatter, written in Rust.

Shows a bar chart with benchmark results.

Formatting 100k+ lines of HTML across 1.7k+ files from scratch.

Heavily rely on the awesome markup_fmt with some additions to support Django fully.

Table of contents

Installation

djangofmt is available on PyPI.

# With pip
pip install djangofmt

# With uv
uv tool install djangofmt@latest  # Install djangofmt globally.
uv add --dev djangofmt            # Or add djangofmt to your project.

# With pipx
pipx install djangofmt

Usage

djangofmt .                    # Format all files in the current directory (and any subdirectories).
djangofmt src/templates        # Format all template files in `src/templates`
djangofmt templates/base.html  # Format individual files

When given a directory, djangofmt recurses into it and formats all *.html, *.jinja, *.jinja2, and *.j2 files it finds. It also respects .gitignore files.

Looking for a check mode ?

djangofmt intentionally does not provide a built-in check functionality because CI is too late for a code formatter. We strongly recommend using pre-commit or any IDE "format on save" integration. That being said, you can emulate check capability by chaining with a git diff command like so:

djangofmt .
git diff --exit-code -- '*.html' || (echo "HTML templates are not formatted. Run 'djangofmt' to fix." && exit 1)

Pre-commit hook

See pre-commit for instructions.

Sample .pre-commit-config.yaml:

- repo: https://github.com/UnknownPlatypus/djangofmt-pre-commit
  rev: v0.2.10
  hooks:
    - id: djangofmt

The separate repository enables installation without compiling the Rust code.

By default, the configuration uses pre-commit's files option to detect all text files in directories named templates. If your templates are stored elsewhere, you can override this behavior by specifying the desired files in the hook configuration within your .pre-commit-config.yaml file.

.svg files support

djangofmt can format svg files too. It will behave exactly the same way as if they were html files. There is a dedicated pre-commit hook for these:

- repo: https://github.com/UnknownPlatypus/djangofmt-pre-commit
  rev: v0.2.10
  hooks:
    - id: djangofmt-svg

Configuration

Djangofmt can also be configured via a [tool.djangofmt] section in your pyproject.toml:

[tool.djangofmt]
line-length = 120
indent-width = 4
profile = "django"
custom-blocks = ["stage", "flatblock"]
html-void-self-closing = "never"
preserve-unquoted-attrs = false

Djangofmt looks for a pyproject.toml file by traversing directories upward from the current working directory. The first pyproject.toml found is used. If no file is found or the file doesn't contain a [tool.djangofmt] section, defaults are used.

Command-line arguments always take precedence over pyproject.toml settings.

See Controlling the formatting for the behaviour of each option and how to opt into per-node overrides.

Editor integration

See the editor integration guide.

Shell completions

You can generate shell completions for your preferred shell using the djangofmt completions command.

Usage: djangofmt completions <SHELL>

Arguments:
  <SHELL>
      The shell to generate the completions for
      [possible values: bash, elvish, fish, nushell, powershell, zsh]

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for details on how to get started.

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

djangofmt-0.2.10.tar.gz (104.7 kB view details)

Uploaded Source

Built Distributions

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

djangofmt-0.2.10-py3-none-win_arm64.whl (2.4 MB view details)

Uploaded Python 3Windows ARM64

djangofmt-0.2.10-py3-none-win_amd64.whl (2.6 MB view details)

Uploaded Python 3Windows x86-64

djangofmt-0.2.10-py3-none-win32.whl (2.3 MB view details)

Uploaded Python 3Windows x86

djangofmt-0.2.10-py3-none-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

djangofmt-0.2.10-py3-none-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded Python 3musllinux: musl 1.2+ i686

djangofmt-0.2.10-py3-none-musllinux_1_2_armv7l.whl (2.4 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARMv7l

djangofmt-0.2.10-py3-none-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

djangofmt-0.2.10-py3-none-manylinux_2_31_riscv64.whl (2.8 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ riscv64

djangofmt-0.2.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

djangofmt-0.2.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

djangofmt-0.2.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

djangofmt-0.2.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

djangofmt-0.2.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

djangofmt-0.2.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

djangofmt-0.2.10-py3-none-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

djangofmt-0.2.10-py3-none-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

djangofmt-0.2.10-py3-none-linux_armv6l.whl (2.5 MB view details)

Uploaded Python 3

File details

Details for the file djangofmt-0.2.10.tar.gz.

File metadata

  • Download URL: djangofmt-0.2.10.tar.gz
  • Upload date:
  • Size: 104.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10.tar.gz
Algorithm Hash digest
SHA256 8c05df6c58c0da79276eb8eddcd3b8e5830da53d459f0eac287d1262458633ee
MD5 93e0670b35e0f523485752bf48b3dccd
BLAKE2b-256 51de413a1dca9b18945abfe4dea096259028c353cc0fa7e8182507e837f53fe8

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-win_arm64.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-win_arm64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 f13c7d4d5a7b2a0068ea2c2f0cd240451619a6f4e2b452aa096028ec8e7511ea
MD5 504cf9d8db0b027aa71bb26c665cbb43
BLAKE2b-256 cf45cdffae4ddb33d4e2775274e722734e307dbf1182a9f30ad094d046d6bc55

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-win_amd64.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 03fd89dbe03c159b893b7b0dd32b25a3d95f75185a4f1b025aa0599d16bb4dcc
MD5 e4ad2b614473bdd1954495aa9a547b7a
BLAKE2b-256 12c6c05a3474c83c79b1f887a5d0743952dd04d80218bf83a084432735e288aa

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-win32.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-win32.whl
Algorithm Hash digest
SHA256 acbe47b85154090e103a30b0218eae519b0d55f5d844f0019657476eeae21f6a
MD5 d7f856033988491005bd959c03e3d7f2
BLAKE2b-256 e1bdb563edf268b259bc0dce8a9246fbbf93f07b86718247260b6538add1ac0a

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: Python 3, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13a4706963a7ee8df79f9e72a4047f1548ce665f5c0867b25f879fbe821c5952
MD5 4074e08f009469f6ca85d8eb13241aa6
BLAKE2b-256 b31d37cef8699c7beea3feb480d021797fd24df985e5d2740d652af4c08c2e2c

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-musllinux_1_2_i686.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: Python 3, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92e5469d5cb724be309b967b93caeb043589b2c8d1b97beaf20e51fd7b53decb
MD5 26f4fdedee7ad2cfd2084c0c87964c61
BLAKE2b-256 f5d9131ac0a927280a56444002ba505ee7a65b25e14fb4e5b06fb13d13fc4386

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3bf4cb1cdd35ff51a60e23fa77d330d9965c9ee2679c997fa4d37913d3d026a1
MD5 64b2de96cbe7ca1c50b53ce062508a23
BLAKE2b-256 91d735493d1b1390b859089d781f93f54a280776044855b124677a3fc3648719

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: Python 3, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59cc19bc2110b3d18607427605c55455b482159bba59022feb6c521142834968
MD5 2fda2cd917c5a11a3fe2fe85823b99cf
BLAKE2b-256 062479dd1ce99e83aba19f0c727dae90dac558196a22d4ebfdd27621598da156

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: Python 3, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 537c7e0fdb36ab3843152a349c7b47a33963f8474a9cee484e8cb65d01549511
MD5 f3980cec716df38e82fc7ceea718f5df
BLAKE2b-256 c83dc248bf907c60caa92b771db6969beac2130bdd1e238e53d4eef0dbac8d8f

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91b0e5154785f8ccb9f0d1168e13425e731ca0c45c46603df6943334790c362b
MD5 bdfe6a3e07ba16591d16e778fe78bf17
BLAKE2b-256 8e1a41e729ce2c816abd6b380e0d279c40db76e69bf2acd9d79c9a518bf32e97

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 245038ee395405f071385bf27b4cfe6ed08829eb5579406107f626c851a18c45
MD5 fcbe0c16aaa59d6e10297ca8c5418a57
BLAKE2b-256 1014863b7dc92adac1a7be65d892998800519b5deb50315d27f1560c2c54d637

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a65c5a8f17927c95b2b39dd7de2f2f8bd0210046ba75c772389e8983b074c765
MD5 1403789207fdd5f002c7f2af176f63a1
BLAKE2b-256 396e7443a85b21d4a79b9661e93e94c9b354ddf7237671aec79d15cf1cba9578

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: Python 3, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04f2358e9b09c5c6fc3b595a735afae4fbaa9195b04f07e8afc04081e6a66faa
MD5 88338324031269b9fb7f912efe91f912
BLAKE2b-256 1e184bc3a8c78b82fb808529a97977d2445717f6e33f3231a3053a2d53165fc2

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 902f5f0115604b4a0c862efcf4bbbf6444047ec07e8d6ac48e7a09b2a0e839b8
MD5 8b34763774df7efae96bcee6eac83718
BLAKE2b-256 9b7c3b34cca81f444ae150aa5c1b241a6df0022e0279d04ae897a09d24c95f96

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: Python 3, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b1bd843798c66b63795925bfeb6a53abc670cb954c865af9c6cd9a9311a002f
MD5 a1f483c9bc21dae669f8b459879c97ec
BLAKE2b-256 9e586dfe3d4acd2367d6a23966e68f29d73574ea9c7e76c8a7cac24f9eb2996f

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a06ff4eedc62cfad860a81d0575d045a45268135a8241085a622fb943d8e7852
MD5 d57bf82f33a7434a8bc56b51b7b37a9a
BLAKE2b-256 81b9673ac3b5aa17994087042a9ed130769b94f7f3f3d83d7aeda75cbe4c5db7

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: Python 3, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72c0552ae704c0ddbcf0f22765bd0464733d97840380ebde22133f9ba00b7267
MD5 2e0304a45336ffdad1481dc05b85f8f3
BLAKE2b-256 42e6c85708f2820a6d56276ff6c5c5450f7ed2a2d1fc9725ec8c381f5445f49b

See more details on using hashes here.

File details

Details for the file djangofmt-0.2.10-py3-none-linux_armv6l.whl.

File metadata

  • Download URL: djangofmt-0.2.10-py3-none-linux_armv6l.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for djangofmt-0.2.10-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 69b1d53505f33f46e8505991e7e28f63f4660f0d2e0635ac20f7743eaad27adc
MD5 27e8eeb44e3c93554b3d85ecc7e68fd0
BLAKE2b-256 9392da8312d614c9498affd5d0c195786f9294bb484c7e98f029b7e839cad1e9

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