Metadata-Version: 2.1
Name: code128bgen
Version: 0.0.1
Summary: Generation of the Code128b barcode
Home-page: https://github.com/damiandennis/code128bgen
Author: Damian Dennis
Author-email: damiandennis@gmail.com
License: UNKNOWN
Description: # Code128b Generator
        
        A simple barcode generator (full python solution)
        
        This library makes use of Pillow  to generate the barcode image, 
        it also fully supports extended ASCII which I found most other libraries did not support except GNU barcode in raw mode.
        
        
        ### Installation
        ```bash
        python -m pip install code128bgen
        ```
        
        ### Usage
        #### 
        ```python
        from code128bgen import generate_bar_widths, write_barcode_to_image_file, write_barcode_to_image
        
        test_str_unicode = u'12345678ÐEª2345FD'
        bars = generate_bar_widths(test_str_unicode) # generates the bar widths for generating image.
        pil_image = write_barcode_to_image(test_str_unicode, bars) # if you want to manipulation the image with PIL.
        write_barcode_to_image_file(test_str_unicode, bars, 'test.png') # writes out file to specified file name.
        ```
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
