Metadata-Version: 1.1
Name: fixfmt
Version: 0.13.1
Summary: fixed-width formatters for C++ and Python
Home-page: https://github.com/alexhsamuel/fixfmt
Author: Alex Samuel
Author-email: alexhsamuel@gmail.com
License: Apache 2.0
Description: 
        A C++ and Python library for formatting values (numbers, strings, etc.)
        in fixed-width fields. Useful for printing tabular data and similar.
        
        For example, strings:
        
        .. code:: py
        
            >>> fmt = fixfmt.String(10)
            >>> fmt("testing")
            'testing   '
            >>> fmt("Hello, world!")
            'Hello, wo…'
        
        and numbers:
        
        .. code:: py
        
            >>> fmt = fixfmt.Number(3, 3)
            >>> fmt(math.pi)
            '   3.142'
        
        Includes C++ and Python libraries.  Requires a C++14 compiler and GNU Make to
        build.
        
Keywords: formatting,tables
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
