Skip to main content

A Python tool to tidy and format CSS files

Project description

CSS Tidy

A Python tool to tidy and format CSS files.

Features

  • CSS Formatting: Automatically format CSS code to make it more readable
  • Syntax Validation: Check CSS syntax errors
  • Batch Processing: Support batch processing of multiple CSS files
  • Custom Options: Customize indentation, line breaks, and other formatting options
  • Selector Grouping: Automatically group related CSS selectors by prefix
  • Command Line Tool: Provide simple and easy-to-use command line interface

Installation

pip install css-tidy

Usage

css-tidy [css-file-name] [options]

Command Line Usage

# Format a single CSS file
css-tidy style.css

# Format and output to a new file
css-tidy input.css -o output.css

# Batch process all CSS files in a directory
css-tidy *.css

# Use custom indentation
css-tidy style.css --indent 4

# Minify CSS
css-tidy style.css --minify

# Group selectors
css-tidy style.css --group

Command Line Options

Usage: css-tidy [OPTIONS] INPUT_FILE

Options:
  -o, --output TEXT          Output file path
  -i, --indent INTEGER       Indentation size (default: 2)
  -m, --minify              Minify CSS output
  -s, --sort                Sort CSS properties
  -c, --remove-comments     Remove CSS comments
  -g, --group               Group CSS selectors by prefix
  -v, --verbose             Enable verbose output
  --validate-only           Only validate CSS, do not format
  --version                 Show version and exit
  --help                    Show this message and exit

Python API Usage

from css_tidy import CSSFormatter

# Create formatter
formatter = CSSFormatter()

# Format CSS string
css_code = """
body{margin:0;padding:0}div{color:red}
"""
formatted_css = formatter.format(css_code)
print(formatted_css)

# Format file
formatter.format_file('input.css', 'output.css')

# Use custom options
formatter = CSSFormatter(indent_size=4, max_line_length=80)
formatted_css = formatter.format(css_code)

# Group selectors
formatter = CSSFormatter(group_selectors=True)
formatted_css = formatter.format(css_code)

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.


License

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


Support

If you have questions or need help, please open an issue on GitHub.

Thank you to all contributors and the open-source community for your support.

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

css_tidy-0.1.1.tar.gz (19.3 kB view details)

Uploaded Source

Built Distribution

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

css_tidy-0.1.1-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file css_tidy-0.1.1.tar.gz.

File metadata

  • Download URL: css_tidy-0.1.1.tar.gz
  • Upload date:
  • Size: 19.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.4

File hashes

Hashes for css_tidy-0.1.1.tar.gz
Algorithm Hash digest
SHA256 2d5bf48038aae2264175e74d62a6522644f7d982cfab5e1b7cfe6dc71b4e0ade
MD5 e5c4c9f533c98a8deb1e7f4471294f05
BLAKE2b-256 18ee2999dcb3d1878e3f56a702d667647db748f3479b00e9a6e268869485aeab

See more details on using hashes here.

File details

Details for the file css_tidy-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: css_tidy-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.4

File hashes

Hashes for css_tidy-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 031a2fddd09aa348b4feb90a40c0a958fc9d943f78486591d89bdd40c11d5d98
MD5 d9726baea885d8a16011f62f41bfbc9f
BLAKE2b-256 2f96af1b168f7304cd3558b950161d5f64c0c57e210c8710355094d53fdc5686

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