Metadata-Version: 2.1
Name: gradient-generator
Version: 0.1.0
Summary: Generate random but beautiful gradients in a super simple way.
Home-page: https://github.com/marek-vybiral/gradient-generator
Author: Marek Vybíral
Author-email: me@marekvybiral.com
License: MIT
Description: # Gradient Generator
        Generate random but beautiful gradients in a super simple way.
        
        ## Features
        - Super simple API
        
        ## Current limitations
        - No way to choose colors
        - PNG only
        
        
        ## Installation
        ``` console
        $ pip install gradient-generator
        ```
        
        ## Usage
        ``` python
        from gradient_generator import generate_gradient
        
        image = generate_gradient(640, 480)
        
        image
        <_io.BytesIO object at 0x10ce70040>
        
        with open('test.png', 'wb') as f:
        	f.write(image.getbuffer())
        
        ```
        
        ## Support
        If you need help or found a bug, consider opening an issue on the project.
        
        
        ## Licence
        The source code for this project is licensed under the MIT license, which you can find in the MIT-LICENSE.txt file.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
