Metadata-Version: 2.1
Name: css-html-prettify
Version: 2.5.5
Summary: StandAlone Async cross-platform Prettifier Beautifier for the Web.
Home-page: https://github.com/juancarlospaco/css-html-prettify#css-html-prettify
Author: Juan Carlos
Author-email: juancarlospaco@gmail.com
Maintainer: Juan Carlos
Maintainer-email: juancarlospaco@gmail.com
License: GPL-3 LGPL-3
Download-URL: https://github.com/juancarlospaco/css-html-prettify#css-html-prettify
Project-URL: Docs, https://github.com/juancarlospaco/css-html-prettify/README.md
Project-URL: Bugs, https://github.com/juancarlospaco/css-html-prettify/issues
Description: # css-html-prettify
        
        Async single-file cross-platform no-dependencies Prettifier Beautifier for the Web. [![GPL License](http://img.shields.io/badge/license-GPL-blue.svg?style=plastic)](http://opensource.org/licenses/GPL-3.0) [![LGPL License](http://img.shields.io/badge/license-LGPL-blue.svg?style=plastic)](http://opensource.org/licenses/LGPL-3.0) [![Python Version](https://img.shields.io/badge/Python-3-brightgreen.svg?style=plastic)](http://python.org)
        
        ![screenshot](https://source.unsplash.com/q78PYnUehV8/800x402 "Illustrative Photo by https://unsplash.com/@s_erwin")
        
        
        https://pypi.python.org/pypi/css-html-prettify
        
        ```bash
        css-html-prettify.py --help
        
        usage: css-html-prettify.py [-h] [--version] [--prefix PREFIX] [--timestamp]
        [--quiet] [--checkupdates] [--after AFTER]
        [--before BEFORE] [--watch] [--group] [--justify]
        fullpath
        
        CSS-HTML-Prettify. StandAlone Async single-file cross-platform no-dependencies
        Unicode-ready Python3-ready Prettifier Beautifier for the Web.
        
        positional arguments:
            fullpath         Full path to local file or folder.
        
        optional arguments:
            -h, --help       show this help message and exit
            --version        show programs version number and exit
            --prefix PREFIX  Prefix string to prepend on output filenames.
            --timestamp      Add a Time Stamp on all CSS/SCSS output files.
            --quiet          Quiet, Silent, force disable all Logging.
            --checkupdates   Check for Updates from Internet while running.
            --after AFTER    Command to execute after run (Experimental).
            --before BEFORE  Command to execute before run (Experimental).
            --watch          Re-Compress if file changes (Experimental).
            --group          Group Alphabetically CSS Poperties by name.
            --justify        Right Justify CSS Properties (Experimental).
            --extraline      Add 1 New Line for each New Line (Experimental)
        
        CSS-HTML-Prettify: Takes file or folder full path string and process all
        CSS/SCSS/HTML found. If argument is not file/folder will fail. Check Updates
        works on Python3. StdIn to StdOut is deprecated since may fail with unicode
        characters. CSS Properties are AlphaSorted,to help spot cloned ones,Selectors
        not. Watch works for whole folders, with minimum of ~60 Secs between runs.
        ```
        
        - Takes a full path to anything, a file or a folder, then parse, Prettify and Beautify for Human Development.
        - If full path is a folder with multiple files it will use Async Multiprocessing.
        - Pretty-Printed colored Logging to Standard Output and Log File on OS Temporary Folder.
        - Set its own Process name and show up on Process lists.
        - Full Unicode/UTF-8 support, SASS SCSS Support.
        - Smooth CPU usage.
        - Can Watch for changes on files.
        - Can execute arbitrary commands after and before running.
        - `*.css` files are saved as `*.css`, `*.html` are saved as `*.html`, unless provided a prefix.
        
        
        # Use
        
        ```shell
        css-html-prettify.py file.html
        
        css-html-prettify.py file.htm
        
        css-html-prettify.py file.css
        
        css-html-prettify.py file.scss
        
        css-html-prettify.py /project/static/
        ```
        
        
        # Install
        
        ```
        pip install css-html-prettify
        ```
        Uninstall `pip uninstall css-html-prettify`
        
        
        # Why?
        
        - This project is the small brother of [another project that does the inverse, a Minifier Compressor for the Web.](https://github.com/juancarlospaco/css-html-js-minify#css-html-js-minify)
        
        
        # Requisites
        
        - [Python 3.6+](https://www.python.org "Python Homepage")
        
        **Optional:**
        
        - BeautifulSoup 4+ (Recommeded, for HTML5 Prettify, without BeautifulSoup it works, but only strict XHTML can be processed)
        
        
        # Example
        
        <details>
        
        **Input CSS:**
        
        ```css
        /* dont remove this comment */
        .class, #NotHex, input[type="text"], a:hover  {
            border:none;
            margin:0 0 0 0;
            border-color:    fuchsia;
            color:           mediumspringgreen;
            background-position:0 0;
            transform-origin:0 0;
            margin: 0px !important;
            color: #000000;
            background-color: #FFFFFF;
        }
        
        
        
        
        
        .foo {content: "If you leave too much new lines it will add a horizontal line"}
        ```
        
        **Output CSS:**
        
        ```css
        @charset utf-8;
        
        
        /* dont remove this comment */
        .class, #NotHex, input[type="text"], a:hover {
            background-color:    #FFFFFF;
            background-position: 0 0;
            border:              none;
            border-color:        fuchsia;
        
            color:               mediumspringgreen;
            color:               #000000;
        
            margin:              0 0 0 0;
            margin:              0 !important;
        
            transform-origin:    0 0;
        }
        
        
        
        
        /* ------------------------------------------------------------------------ */
        
        
        
        
        .foo {content: "If you leave too much new lines it will add a horizontal line"}
        
        
        ```
        
        </details>
        
        
        # Coding Style Guide
        
        - Lint, [PEP-8](https://www.python.org/dev/peps/pep-0008), [PEP-257](https://www.python.org/dev/peps/pep-0257),  [iSort](https://github.com/timothycrosley/isort) must Pass Ok. `pip install prospector pre-commit isort`
        - If theres any kind of Tests, they must Pass Ok, if theres no Tests, its ok, if Tests provided, is even better.
        
        
        # Contributors
        
        - **Please Star this Repo on Github !**, it helps to show up faster on searchs.
        - [Help](https://help.github.com/articles/using-pull-requests) and more [Help](https://help.github.com/articles/fork-a-repo) and Interactive Quick [Git Tutorial](https://try.github.io).
        
        
        # Licence
        
        - GNU GPL Latest Version *AND* GNU LGPL Latest Version *AND* any Licence [YOU Request via Bug Report](https://github.com/juancarlospaco/css-html-prettify/issues/new).
        
Keywords: python3,argentina,CSS,HTML,Prettify,CSS3,HTML5,Web,Beautify
Platform: Linux
Platform: Darwin
Platform: Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Other Audience
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development
Requires: anglerfish
Requires: beautifulsoup4
Requires-Python: >=3.6
Description-Content-Type: text/markdown
