Skip to main content

nginx config file formatter/beautifier with no additional dependencies.

Project description

nginx config file formatter/beautifier

nginx config file formatter/beautifier written in Python with no additional dependencies. It can be used as a library or a standalone script. It formats nginx configuration files in a consistent way, described below:

  • All lines are indented uniformly, with four spaces per level. The number of spaces is customizable.
  • Neighboring empty lines are collapsed to at most two. The number is customizable (see options below).
  • Curly brace placement follows the Java convention.
  • Whitespace is collapsed, except in comments and within quotation marks.
  • Newline characters are normalized to the operating system default (LF or CRLF), but this can be overridden.

Installation

Python 3.4 or later is needed to run this program. The easiest way is to download the package from PyPI:

pip install nginxfmt

Manual installation

The simplest form of installation is copying nginxfmt.py to your scripts' directory. It has no third-party dependencies.

You can also clone the repository and symlink the executable:

cd
git clone https://github.com/slomkowski/nginx-config-formatter.git
ln -s ~/nginx-config-formatter/nginxfmt.py ~/bin/nginxfmt.py

Usage as standalone script

It can format one or several files. By default, the result is saved to the original file, but it can be redirected to stdout. It can also function in piping mode, using the --pipe or - switch.

usage: nginxfmt.py [-h] [-v] [-] [-p | -b] [-i INDENT] [--max-empty-lines MAX_EMPTY_LINES] [--line-endings {auto,unix,windows,crlf,lf}] [config_files ...]

Formats nginx configuration files in consistent way.

positional arguments:
config_filesconfiguration files to format

options:
-h, --helpshow this help message and exit
-v, --verbose show formatted file names
-, --pipe reads content from standard input, prints result to stdout
-p, --print-resultprints result to stdout, original file is not changed
-b, --backup-original
backup original config file as filename.conf~

formatting options:
-i, --indent INDENT specify number of spaces for indentation
--max-empty-lines MAX_EMPTY_LINES
maximum number of consecutive empty lines to keep (default: 2)
--line-endings {auto,unix,windows,crlf,lf}
specify line ending style: 'unix' or 'lf' for \n, 'windows' or 'crlf' for \r\n. When not provided, system-default is used

Using as a library

The main logic is within the Formatter class, which can be used in third-party code.

import nginxfmt

# initializing with standard FormatterOptions
f = nginxfmt.Formatter()

# format from string
formatted_text = f.format_string(unformatted_text)

# format file and save result to the same file
f.format_file(unformatted_file_path)

# format file and save result to the same file, original unformatted content is backed up
f.format_file(unformatted_file_path, backup_path)

Customizing formatting options:

import nginxfmt

fo = nginxfmt.FormatterOptions()
fo.indentation = 2  # 2 spaces instead of default 4
fo.line_endings = '\n'  # force Unix line endings
fo.max_empty_lines = 1  # allow at most 1 consecutive empty line (default: 2)

# initialize with standard FormatterOptions
f = nginxfmt.Formatter(fo)

Reporting bugs

Please create an issue at https://github.com/slomkowski/nginx-config-formatter/issues. Be sure to include config snippets to reproduce the issue, preferably:

  • Snippet to be formatted
  • Actual result with the invalid formatting
  • Desired result

Credits

Copyright 2021 Michał Słomkowski. License: Apache 2.0. Previously published under https://github.com/1connect/nginx-config-formatter.

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

nginxfmt-1.4.0.tar.gz (9.9 kB view details)

Uploaded Source

Built Distribution

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

nginxfmt-1.4.0-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file nginxfmt-1.4.0.tar.gz.

File metadata

  • Download URL: nginxfmt-1.4.0.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.14.2 Linux/6.12.63-1-lts

File hashes

Hashes for nginxfmt-1.4.0.tar.gz
Algorithm Hash digest
SHA256 e5dcb3e7e05eafd60a2fcb3fe896af538c94dfbde971c212e99178eb4e26d35f
MD5 d16294562e8d6592c316ec1ddb79edf6
BLAKE2b-256 60241a1d7b1a153890f1b2d9a6e4e677471976d053409567c6e979a64a6c7150

See more details on using hashes here.

File details

Details for the file nginxfmt-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: nginxfmt-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.14.2 Linux/6.12.63-1-lts

File hashes

Hashes for nginxfmt-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 200c434fa97a90b5ecee9cf35ccfcfb596b15ff3d9ad3d3ce7006d444420b5b2
MD5 87f1576bad29c64b416c4c7586b29636
BLAKE2b-256 65de2eeb85279374b6990898ac3d6909ab190b704c11131633a6272b5d340b42

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