Metadata-Version: 2.1
Name: pilgram
Version: 1.0.0
Summary: library for instagram filters
Home-page: https://github.com/akiomik/pilgram
Author: Akiomi Kamakura
Author-email: akiomik@gmail.com
License: Apache License 2.0
Description: # pilgram
        
        [![CircleCI](https://circleci.com/gh/akiomik/pilgram.svg?style=svg)](https://circleci.com/gh/akiomik/pilgram)
        
        A python library for instagram filters.
        
        ![screenshot](screenshot.png)
        
        Filter implementations are inspired by [CSSgram](https://una.im/CSSgram/).
        
        ## Requirements
        
        - Python 3
        - [Pillow](https://pillow.readthedocs.io/en/stable/) or [pillow-simd](https://github.com/uploadcare/pillow-simd)
        
        ## Usage
        
        Available instagram filters on `pilgram`: `_1977`, `aden`, `brannan`, `brooklyn`, `clarendon`, `earlybird`, `gingham`, `hudson`, `inkwell`, `kelvin`, `lark`, `lofi`, `maven`, `mayfair`, `moon`, `nashville`, `perpetua`, `reyes`, `rise`, `slumber`, `stinson`, `toaster`, `valencia`, `walden`, `willow`, `xpro2`
        
        ```python
        from PIL import Image
        import pilgram
        
        im = Image.open('sample.jpg')
        pilgram.aden(im).save('sample-aden.jpg')
        ```
        
        Similarly, pilgram provides css filters as as by-product.
        Available css filters on `pilgram.css`: `contrast`, `grayscale`, `hue_rotate`, `saturate`, `sepia`
        
        ```python
        from PIL import Image
        import pilgram.css
        
        im = Image.open('sample.jpg')
        pilgram.css.sepia(im).save('sample-sepia.jpg')
        ```
        
        ## Test
        
        ```sh
        pipenv install --dev
        make test
        ```
        
Keywords: pillow,instagram,instagram-filters,css-filters,image-processing,data-augmentation
Platform: any
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
