dicebear


Namedicebear JSON
Version 2.7.3 PyPI version JSON
download
home_pagehttps://jvh.gitbook.io/dicebear
SummaryA python wrapper for DiceBear's avatar generating API.
upload_time2024-03-09 19:19:27
maintainerjvherck
docs_urlNone
authorjvherck
requires_python>=3.7
licenseMIT License
keywords python dicebear avatar avatars generating generation generator api wrapper image images picture pictures png jpg svg json cli pillow pil requests adventurer adventurer-neutral avataaars avataaars-neutral big-ears big-ears-neutral big-smile bottts bottts-neutral croodles croodles-neutral fun-emoji icons identicon initials lorelei lorelei-neutral micah miniavs notionists notionists-neutral open-peeps personas pixel-art pixel-art-neutral shapes thumbs
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # DiceBear Py Wrapper  
![Downloads](https://static.pepy.tech/personalized-badge/dicebear?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads)
![Downloads](https://static.pepy.tech/personalized-badge/dicebear?period=month&units=international_system&left_color=grey&right_color=orange&left_text=Downloads/Month) \
![PyPI](https://img.shields.io/pypi/v/dicebear)
![GitHub issues](https://img.shields.io/github/issues/jvherck/dicebear)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/dicebear)
![GitHub](https://img.shields.io/github/license/jvherck/dicebear)
![Maintenance](https://img.shields.io/maintenance/yes/2024)
![PyPI - Status](https://img.shields.io/pypi/status/dicebear)

Always keep an eye on https://jvh.gitbook.io/dicebear/ for updates and warnings about this packages!

[`dicebear`](https://pypi.org/project/dicebear/) is an API wrapper for https://dicebear.com. Using this wrapper you can get custom avatars for your program. \
For an example go to [`examples/dicebear.py`](https://github.com/jvherck/dicebear/tree/main/examples).


---


## Useful links  
* Docs: https://jvh.gitbook.io/dicebear/  
* PyPI: https://pypi.org/project/dicebear/  
* GitHub: https://github.com/jvherck/dicebear  
* Dicebear: https://dicebear.com/  
- Dicebear CLI: https://github.com/jvherck/dicebear-cli  


---


## Changelog
Find the changelog here: https://github.com/jvherck/dicebear/blob/main/CHANGELOG.md


---


## How to install  
Run `pip install -U dicebear` \
If that doesn't work try `py -m pip install -U dicebear`  


---


## Usage  
Important note: *Pillow* is not a required dependency, it's only required when you want to be able to edit the avatar images (using `DAvatar.pillow()`).
When using a `PIL` function while it's not installed it will raise `dicebear.errors.PILError`.  

When the environment variable `ENABLE_PYTHON_DICEBEAR_USAGE_STATS` is set to true, an API will be pinged on most function calls to update this package's usage stats. This will be used to analyse Dicebear's usage and improve your overall experience, but may have performance costs.
```py  
import PIL.Image
import os
from dicebear import DAvatar, DStyle, DOptions, DColor, DFormat, bulk_create


# Enable anonymous usage statistics
os.environ['ENABLE_PYTHON_DICEBEAR_USAGE_STATS'] = 'true'


# Creating options
options = DOptions(
    backgroundColor=DColor("00ddd0"),
    rotate=90
)


# Making a DAvatar object
av = DAvatar(
    style=DStyle.pixel_art,
    seed="John Apple",
    options=options
)
print(av.url_svg) # Prints the svg url


# Editing the DAvatar object
av.edit(
    extra_options=DOptions(backgroundColor=DColor("000000"))
)
# Using `extra_options` keep the `rotate` option but override the `backgroundColor` option

print(av.url_png) # Prints the png url


# Editing the style specific customisations
av.customise(
    blank_options={
        "face": "variant04"
    }
)
# Using `blank_options` will delete your previous customisations for this DAvatar and generate new ones

print(av.url_jpg) # Prints the jpg url


# Saving an avatar to your device
av.save(
    location=None, # Passing `None` will save it in the current working directory
    file_name="dicebear_avatar",
    file_format=DFormat.svg,
    overwrite=True,
    open_after_save=False
)


# Converting the DAvatar object into a PIL.Image.Image object
av_img: PIL.Image.Image = av.pillow()


# Opening and viewing the DAvatar image
av.open(use_pil=True) # or av.view()


# Creating multiple random avatars of the same style at once
avatars: list = bulk_create(style=DStyle.random(), amount=10)
```


---


## CLI Usage  
Dicebear has a CLI package that uses Python to generate avatars quickly.
You can't customize each avatar, to do that you'll need to use the Python module.

To use the CLI run `pip install dicebear-cli` in a terminal. 
Documentation can be found here: https://github.com/jvherck/dicebear-cli.


---


## Customization
Customize your avatars with these possibilities.  


### Styles  
All the possible avatar styles. \
https://dicebear.com/styles  
  
* `adventurer`  
* `adventurer-neutral`  
* `avataaars`  
* `avataaars-neutral`  
* `big-ears`  
* `big-ears-neutral`  
* `big-smile`  
* `bottts`  
* `bottts-neutral`  
* `croodles`  
* `croodles-neutral`  
* `fun-emoji`  
* `icons`  
* `identicon`  
* `initials`  
* `lorelei`  
* `lorelei-neutral`  
* `micah`  
* `miniavs`  
* `notionists`
* `notionists-neutral`
* `open-peeps`  
* `personas`  
* `pixel-art`  
* `pixel-art-neutral`
* `rings`
* `shapes`
* `thumbs`


### Base Options  
All the possible options for the avatar. These options work for all the styles.  

* `seed` (type: `str`) - the seed for the avatar generator, determine its basic looks  
* `flip` (type: `bool`) - flips the image vertically (default False)  
* `rotate` (type: `int`) - rotates the avatar (default 0, min 0, max 360)  
* `scale` (type: `int`) - the scale of the avatar drawing itself (default 100, min 0, max 200)  
* `radius` (type: `int`) - the radius of the avatar (default 0, min 0, max 50)  
* `size` (type: `int`) - the size of the avatar (px) (default 256, min 1, max 256)  
* `backgroundColor` (type: `DColor("transparent")` ) - the background color of the avatar. this can be a list of strings
if you have *backgroundType* set to "gradientLinear". (default transparent)  
* `backgroundType` (type: `str` ) - set the background to either `gradientLinear` or `solid` (default solid)  
* `backgroundRotation` (type: `int` ) - rotate the background if backgroundType is set to `gradientLinear` (default 0)  
* `translateX` (type: `int`) - move the avatar horizontally (default 0, min -100, max 100)  
* `translateY` (type: `int`) - move the avatar vertically (default 0, min -100, max 100)  
* `randomizeIds` (type: `bool`) - randomize the IDs in the generated SVG/XML, can be useful if the avatars are included 
directly in HTML and you want to avoid ID conflicts (default false)  


### Specific Style Options   
Specific options to get a more detailed avatar. This is different for every style. \
Click the style to see its options.  

* [adventurer](https://dicebear.com/styles/adventurer#options)  
* [adventurer-neutral](https://dicebear.com/styles/adventurer-neutral#options)  
* [avataaars](https://dicebear.com/styles/avataaars#options)  
* [avataaars-neutral](https://dicebear.com/styles/avataaars-neutral#options)  
* [big-ears](https://dicebear.com/styles/big-ears#options)  
* [big-ears-neutral](https://dicebear.com/styles/big-ears-neutral#options)  
* [big-smile](https://dicebear.com/styles/big-smile#options)  
* [bottts](https://dicebear.com/styles/bottts#options)  
* [bottts-neutral](https://dicebear.com/styles/bottts-neutral#options)  
* [croodles](https://dicebear.com/styles/croodles#options)  
* [croodles-neutral](https://dicebear.com/styles/croodles-neutral#options)  
* [fun-emoji](https://dicebear.com/styles/fun-emoji#options)  
* [icons](https://dicebear.com/styles/icons#options)  
* [identicon](https://dicebear.com/styles/identicon#options)  
* [initials](https://dicebear.com/styles/initials#options)  
* [lorelei](https://dicebear.com/styles/lorelei#options)  
* [lorelei-neutral](https://dicebear.com/styles/lorelei-neutral#options)  
* [micah](https://dicebear.com/styles/micah#options)  
* [miniavs](https://dicebear.com/styles/miniavs#options)  
* [notionists](https://dicebear.com/styles/notionists#options)  
* [notionists-neutral](https://dicebear.com/styles/notionists-neutral#options)  
* [open-peeps](https://dicebear.com/styles/open-peeps#options)  
* [personas](https://dicebear.com/styles/personas#options)  
* [pixel-art](https://dicebear.com/styles/pixel-art#options)  
* [pixel-art-neutral](https://dicebear.com/styles/pixel-art-neutral#options)  
* [rings](https://www.dicebear.com/styles/rings#options)
* [shapes](https://dicebear.com/styles/shapes#options)  
* [thumbs](https://dicebear.com/styles/thumbs#options)  


### Formats   
These are the only supported formats. \
If you have Pillow (PIL) installed you can convert `DAvatar` to a `PIL.Image.Image` object to get a
wider range of formats (Pillow doesn't support svg).  
  
* `DFormat.svg` (default)  
* `DFormat.png`  
* `DFormat.jpg`  
* `DFormat.json`  


---


## Credits  
Special thanks to [DiceBear](https://github.com/dicebear) ([Florian Körner](https://github.com/FlorianKoerner)) for 
making this amazing API and to [all artists](https://dicebear.com/licenses) that helped making avatars!  


## Licenses and privacy policy  
- Dicebear **Licenses**: https://dicebear.com/licenses  
- Dicebear **Privacy Policy**: https://dicebear.com/legal/privacy-policy  
- Dicebear Python API wrapper (this project): https://jvh.gitbook.io/dicebear/license

            

Raw data

            {
    "_id": null,
    "home_page": "https://jvh.gitbook.io/dicebear",
    "name": "dicebear",
    "maintainer": "jvherck",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "contact@janvh.be",
    "keywords": "python,dicebear,avatar,avatars,generating,generation,generator,API,wrapper,image,images,picture,pictures,png,jpg,svg,json,cli,pillow,pil,requests,adventurer,adventurer-neutral,avataaars,avataaars-neutral,big-ears,big-ears-neutral,big-smile,bottts,bottts-neutral,croodles,croodles-neutral,fun-emoji,icons,identicon,initials,lorelei,lorelei-neutral,micah,miniavs,notionists,notionists-neutral,open-peeps,personas,pixel-art,pixel-art-neutral,shapes,thumbs",
    "author": "jvherck",
    "author_email": "contact@janvh.be",
    "download_url": "https://files.pythonhosted.org/packages/a5/91/e285adb727c6b6e1788a53473833fd9a69b75fb72c6aea700817050eb1fd/dicebear-2.7.3.tar.gz",
    "platform": null,
    "description": "# DiceBear Py Wrapper  \r\n![Downloads](https://static.pepy.tech/personalized-badge/dicebear?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads)\r\n![Downloads](https://static.pepy.tech/personalized-badge/dicebear?period=month&units=international_system&left_color=grey&right_color=orange&left_text=Downloads/Month) \\\r\n![PyPI](https://img.shields.io/pypi/v/dicebear)\r\n![GitHub issues](https://img.shields.io/github/issues/jvherck/dicebear)\r\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/dicebear)\r\n![GitHub](https://img.shields.io/github/license/jvherck/dicebear)\r\n![Maintenance](https://img.shields.io/maintenance/yes/2024)\r\n![PyPI - Status](https://img.shields.io/pypi/status/dicebear)\r\n\r\nAlways keep an eye on https://jvh.gitbook.io/dicebear/ for updates and warnings about this packages!\r\n\r\n[`dicebear`](https://pypi.org/project/dicebear/) is an API wrapper for https://dicebear.com. Using this wrapper you can get custom avatars for your program. \\\r\nFor an example go to [`examples/dicebear.py`](https://github.com/jvherck/dicebear/tree/main/examples).\r\n\r\n\r\n---\r\n\r\n\r\n## Useful links  \r\n* Docs: https://jvh.gitbook.io/dicebear/  \r\n* PyPI: https://pypi.org/project/dicebear/  \r\n* GitHub: https://github.com/jvherck/dicebear  \r\n* Dicebear: https://dicebear.com/  \r\n- Dicebear CLI: https://github.com/jvherck/dicebear-cli  \r\n\r\n\r\n---\r\n\r\n\r\n## Changelog\r\nFind the changelog here: https://github.com/jvherck/dicebear/blob/main/CHANGELOG.md\r\n\r\n\r\n---\r\n\r\n\r\n## How to install  \r\nRun `pip install -U dicebear` \\\r\nIf that doesn't work try `py -m pip install -U dicebear`  \r\n\r\n\r\n---\r\n\r\n\r\n## Usage  \r\nImportant note: *Pillow* is not a required dependency, it's only required when you want to be able to edit the avatar images (using `DAvatar.pillow()`).\r\nWhen using a `PIL` function while it's not installed it will raise `dicebear.errors.PILError`.  \r\n\r\nWhen the environment variable `ENABLE_PYTHON_DICEBEAR_USAGE_STATS` is set to true, an API will be pinged on most function calls to update this package's usage stats. This will be used to analyse Dicebear's usage and improve your overall experience, but may have performance costs.\r\n```py  \r\nimport PIL.Image\r\nimport os\r\nfrom dicebear import DAvatar, DStyle, DOptions, DColor, DFormat, bulk_create\r\n\r\n\r\n# Enable anonymous usage statistics\r\nos.environ['ENABLE_PYTHON_DICEBEAR_USAGE_STATS'] = 'true'\r\n\r\n\r\n# Creating options\r\noptions = DOptions(\r\n    backgroundColor=DColor(\"00ddd0\"),\r\n    rotate=90\r\n)\r\n\r\n\r\n# Making a DAvatar object\r\nav = DAvatar(\r\n    style=DStyle.pixel_art,\r\n    seed=\"John Apple\",\r\n    options=options\r\n)\r\nprint(av.url_svg) # Prints the svg url\r\n\r\n\r\n# Editing the DAvatar object\r\nav.edit(\r\n    extra_options=DOptions(backgroundColor=DColor(\"000000\"))\r\n)\r\n# Using `extra_options` keep the `rotate` option but override the `backgroundColor` option\r\n\r\nprint(av.url_png) # Prints the png url\r\n\r\n\r\n# Editing the style specific customisations\r\nav.customise(\r\n    blank_options={\r\n        \"face\": \"variant04\"\r\n    }\r\n)\r\n# Using `blank_options` will delete your previous customisations for this DAvatar and generate new ones\r\n\r\nprint(av.url_jpg) # Prints the jpg url\r\n\r\n\r\n# Saving an avatar to your device\r\nav.save(\r\n    location=None, # Passing `None` will save it in the current working directory\r\n    file_name=\"dicebear_avatar\",\r\n    file_format=DFormat.svg,\r\n    overwrite=True,\r\n    open_after_save=False\r\n)\r\n\r\n\r\n# Converting the DAvatar object into a PIL.Image.Image object\r\nav_img: PIL.Image.Image = av.pillow()\r\n\r\n\r\n# Opening and viewing the DAvatar image\r\nav.open(use_pil=True) # or av.view()\r\n\r\n\r\n# Creating multiple random avatars of the same style at once\r\navatars: list = bulk_create(style=DStyle.random(), amount=10)\r\n```\r\n\r\n\r\n---\r\n\r\n\r\n## CLI Usage  \r\nDicebear has a CLI package that uses Python to generate avatars quickly.\r\nYou can't customize each avatar, to do that you'll need to use the Python module.\r\n\r\nTo use the CLI run `pip install dicebear-cli` in a terminal. \r\nDocumentation can be found here: https://github.com/jvherck/dicebear-cli.\r\n\r\n\r\n---\r\n\r\n\r\n## Customization\r\nCustomize your avatars with these possibilities.  \r\n\r\n\r\n### Styles  \r\nAll the possible avatar styles. \\\r\nhttps://dicebear.com/styles  \r\n  \r\n* `adventurer`  \r\n* `adventurer-neutral`  \r\n* `avataaars`  \r\n* `avataaars-neutral`  \r\n* `big-ears`  \r\n* `big-ears-neutral`  \r\n* `big-smile`  \r\n* `bottts`  \r\n* `bottts-neutral`  \r\n* `croodles`  \r\n* `croodles-neutral`  \r\n* `fun-emoji`  \r\n* `icons`  \r\n* `identicon`  \r\n* `initials`  \r\n* `lorelei`  \r\n* `lorelei-neutral`  \r\n* `micah`  \r\n* `miniavs`  \r\n* `notionists`\r\n* `notionists-neutral`\r\n* `open-peeps`  \r\n* `personas`  \r\n* `pixel-art`  \r\n* `pixel-art-neutral`\r\n* `rings`\r\n* `shapes`\r\n* `thumbs`\r\n\r\n\r\n### Base Options  \r\nAll the possible options for the avatar. These options work for all the styles.  \r\n\r\n* `seed` (type: `str`) - the seed for the avatar generator, determine its basic looks  \r\n* `flip` (type: `bool`) - flips the image vertically (default False)  \r\n* `rotate` (type: `int`) - rotates the avatar (default 0, min 0, max 360)  \r\n* `scale` (type: `int`) - the scale of the avatar drawing itself (default 100, min 0, max 200)  \r\n* `radius` (type: `int`) - the radius of the avatar (default 0, min 0, max 50)  \r\n* `size` (type: `int`) - the size of the avatar (px) (default 256, min 1, max 256)  \r\n* `backgroundColor` (type: `DColor(\"transparent\")` ) - the background color of the avatar. this can be a list of strings\r\nif you have *backgroundType* set to \"gradientLinear\". (default transparent)  \r\n* `backgroundType` (type: `str` ) - set the background to either `gradientLinear` or `solid` (default solid)  \r\n* `backgroundRotation` (type: `int` ) - rotate the background if backgroundType is set to `gradientLinear` (default 0)  \r\n* `translateX` (type: `int`) - move the avatar horizontally (default 0, min -100, max 100)  \r\n* `translateY` (type: `int`) - move the avatar vertically (default 0, min -100, max 100)  \r\n* `randomizeIds` (type: `bool`) - randomize the IDs in the generated SVG/XML, can be useful if the avatars are included \r\ndirectly in HTML and you want to avoid ID conflicts (default false)  \r\n\r\n\r\n### Specific Style Options   \r\nSpecific options to get a more detailed avatar. This is different for every style. \\\r\nClick the style to see its options.  \r\n\r\n* [adventurer](https://dicebear.com/styles/adventurer#options)  \r\n* [adventurer-neutral](https://dicebear.com/styles/adventurer-neutral#options)  \r\n* [avataaars](https://dicebear.com/styles/avataaars#options)  \r\n* [avataaars-neutral](https://dicebear.com/styles/avataaars-neutral#options)  \r\n* [big-ears](https://dicebear.com/styles/big-ears#options)  \r\n* [big-ears-neutral](https://dicebear.com/styles/big-ears-neutral#options)  \r\n* [big-smile](https://dicebear.com/styles/big-smile#options)  \r\n* [bottts](https://dicebear.com/styles/bottts#options)  \r\n* [bottts-neutral](https://dicebear.com/styles/bottts-neutral#options)  \r\n* [croodles](https://dicebear.com/styles/croodles#options)  \r\n* [croodles-neutral](https://dicebear.com/styles/croodles-neutral#options)  \r\n* [fun-emoji](https://dicebear.com/styles/fun-emoji#options)  \r\n* [icons](https://dicebear.com/styles/icons#options)  \r\n* [identicon](https://dicebear.com/styles/identicon#options)  \r\n* [initials](https://dicebear.com/styles/initials#options)  \r\n* [lorelei](https://dicebear.com/styles/lorelei#options)  \r\n* [lorelei-neutral](https://dicebear.com/styles/lorelei-neutral#options)  \r\n* [micah](https://dicebear.com/styles/micah#options)  \r\n* [miniavs](https://dicebear.com/styles/miniavs#options)  \r\n* [notionists](https://dicebear.com/styles/notionists#options)  \r\n* [notionists-neutral](https://dicebear.com/styles/notionists-neutral#options)  \r\n* [open-peeps](https://dicebear.com/styles/open-peeps#options)  \r\n* [personas](https://dicebear.com/styles/personas#options)  \r\n* [pixel-art](https://dicebear.com/styles/pixel-art#options)  \r\n* [pixel-art-neutral](https://dicebear.com/styles/pixel-art-neutral#options)  \r\n* [rings](https://www.dicebear.com/styles/rings#options)\r\n* [shapes](https://dicebear.com/styles/shapes#options)  \r\n* [thumbs](https://dicebear.com/styles/thumbs#options)  \r\n\r\n\r\n### Formats   \r\nThese are the only supported formats. \\\r\nIf you have Pillow (PIL) installed you can convert `DAvatar` to a `PIL.Image.Image` object to get a\r\nwider range of formats (Pillow doesn't support svg).  \r\n  \r\n* `DFormat.svg` (default)  \r\n* `DFormat.png`  \r\n* `DFormat.jpg`  \r\n* `DFormat.json`  \r\n\r\n\r\n---\r\n\r\n\r\n## Credits  \r\nSpecial thanks to [DiceBear](https://github.com/dicebear) ([Florian K\u00f6rner](https://github.com/FlorianKoerner)) for \r\nmaking this amazing API and to [all artists](https://dicebear.com/licenses) that helped making avatars!  \r\n\r\n\r\n## Licenses and privacy policy  \r\n- Dicebear **Licenses**: https://dicebear.com/licenses  \r\n- Dicebear **Privacy Policy**: https://dicebear.com/legal/privacy-policy  \r\n- Dicebear Python API wrapper (this project): https://jvh.gitbook.io/dicebear/license\r\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "A python wrapper for DiceBear's avatar generating API.",
    "version": "2.7.3",
    "project_urls": {
        "Documentation": "https://jvh.gitbook.io/dicebear",
        "Homepage": "https://jvh.gitbook.io/dicebear",
        "Source": "https://github.com/jvherck/dicebear",
        "Tracker": "https://github.com/jvherck/dicebear/issues"
    },
    "split_keywords": [
        "python",
        "dicebear",
        "avatar",
        "avatars",
        "generating",
        "generation",
        "generator",
        "api",
        "wrapper",
        "image",
        "images",
        "picture",
        "pictures",
        "png",
        "jpg",
        "svg",
        "json",
        "cli",
        "pillow",
        "pil",
        "requests",
        "adventurer",
        "adventurer-neutral",
        "avataaars",
        "avataaars-neutral",
        "big-ears",
        "big-ears-neutral",
        "big-smile",
        "bottts",
        "bottts-neutral",
        "croodles",
        "croodles-neutral",
        "fun-emoji",
        "icons",
        "identicon",
        "initials",
        "lorelei",
        "lorelei-neutral",
        "micah",
        "miniavs",
        "notionists",
        "notionists-neutral",
        "open-peeps",
        "personas",
        "pixel-art",
        "pixel-art-neutral",
        "shapes",
        "thumbs"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53ae75cee7aaad6ad4bbc0fa18d030bc7250bb6303acf1843f4b448afd2a645c",
                "md5": "9023350b5c3f8e4e1908d226552831ff",
                "sha256": "bc6071ca5ca978e24f4bb67265cb52ee1d68f980a732fbf2bdfaf2034916a16d"
            },
            "downloads": -1,
            "filename": "dicebear-2.7.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9023350b5c3f8e4e1908d226552831ff",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 20882,
            "upload_time": "2024-03-09T19:19:25",
            "upload_time_iso_8601": "2024-03-09T19:19:25.783596Z",
            "url": "https://files.pythonhosted.org/packages/53/ae/75cee7aaad6ad4bbc0fa18d030bc7250bb6303acf1843f4b448afd2a645c/dicebear-2.7.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a591e285adb727c6b6e1788a53473833fd9a69b75fb72c6aea700817050eb1fd",
                "md5": "dd6985f436dbeab85c266323e98793d9",
                "sha256": "07156735a78cc3598721d62c7fbadeec25448d47d71b10228ab71cb333ec172a"
            },
            "downloads": -1,
            "filename": "dicebear-2.7.3.tar.gz",
            "has_sig": false,
            "md5_digest": "dd6985f436dbeab85c266323e98793d9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 20330,
            "upload_time": "2024-03-09T19:19:27",
            "upload_time_iso_8601": "2024-03-09T19:19:27.988811Z",
            "url": "https://files.pythonhosted.org/packages/a5/91/e285adb727c6b6e1788a53473833fd9a69b75fb72c6aea700817050eb1fd/dicebear-2.7.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-09 19:19:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jvherck",
    "github_project": "dicebear",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dicebear"
}
        
Elapsed time: 0.25079s