Metadata-Version: 2.1
Name: gic
Version: 1.6.0
Summary: Group Image Compressor (GIC)
Home-page: https://github.com/poyynt
Author: Parsa Torbati
Author-email: parsa@programmer.net
License: UNKNOWN
Description: # GIC 
        
        ## An image compressor that compresses all images in the working directory.  
        
        
        ### To execute:  
        #### In Linux|Unix|macOS:  
        Run `gic` in a shell.  
        #### In Windows:
        ##### Method 1:
        In a `cmd` window, change working directory to your desired folder and run `gic`.  
        ##### Method 2:
        Copy the file `gic.exe` from `pythoninstallation\Scripts\` to your desired folder and double-click it.  
        #### To use in your python code:  
        A code that the **user** sets the compression level.
        ```python
        import gic.main
        #change the working directory to whatever you want
        gic.main.run()
        ```
        #### To be quiet:  
        A code that **you** set the compression level.
        ```python
        import gic.main
        #change the working directory to whatever you want
        #set gic.main.image_quality to 1|2|3|4
        gic.main.compress()
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.2
Description-Content-Type: text/markdown
