Metadata-Version: 2.1
Name: dicebear
Version: 0.1.2
Summary: A python API wrapper for DiceBear's avatar generating API.
Home-page: UNKNOWN
Author: jvherck
Author-email: <jvh.discord@gmail.com>
License: UNKNOWN
Description: # DiceBear Py Wrapper
        `dicebear` is an API wrapper for https://dicebear.com. Using the API you can get custom avatars for your program.
        
        ## How to install
        Run `pip install dicebear`\
        If that doesn't work try `py -m pip install dicebear`
        
        ## Usage
        ```python
        from dicebear import Avatar
        
        options = {
            "flip": True,
            "rotate": 90
        }
        
        av = Avatar(type="avataaars", seed="John Apple", options=options) # this returns a URL to the avatar
        print(av)
        
        av.edit(options={"flip": True}) # this will edit the avatar instance 
        print(av)
        ```
        
        ### Options
        All the possible options for the avatar.
        
        * `seed` (type: string) - the seed for the avatar generator
        * `dataUri` (type: boolean) - wether or not to give the dataUri 
        * `flip` (type: boolean) - flips the image vertically
        * `rotate` (type: int) - rotates the avatar
        * `scale` (type: int) - edits the scale of the avatar
        * `radius` (type: int) - edits the radius of the avatar
        * `size` (type: int) - the size of the avatar
        * `backgroundColor` (type: hex 0x) - the background color of the avatar
        * `translateX` (type: int) - move the avatar horizontally
        * `translateY` (type: int) - move the avatar vertically
        
        ### Styles
        All the possible avatar styles.
Keywords: python,dicebear,avatar,generating,API,wrapper
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Other Audience
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Artistic Software
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Multimedia :: Graphics
Description-Content-Type: text/markdown
