Metadata-Version: 2.1
Name: whatimage
Version: 0.0.2
Summary: Python library to detect image type from a few bytes
Home-page: https://github.com/david-poirier-csn/whatimage
Author: David Poirier
Author-email: david-poirier-csn@users.noreply.github.com
License: UNKNOWN
Description: # whatimage
        Python library to detect image type from a few bytes
        
        ## Installation
        pip install whatimage
        
        ## Usage
        ```python
        import whatimage
        
        with open('image.jpg', 'rb') as f:
            data = f.read()
        fmt = whatimage.identify_image(data)
        print(fmt)
        ```
        > 'jpeg'
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
