A generator of avatar optimised to generate or random avatars based on multiple image layers
Project description
PiouPiou
An avatar generator optimised for generating random avatars based on multiple image layers, able to return same image from a string "seed". Heavily inspired by David Revoy's cat avatar generator and MonsterID by Andreas Gohr's.
This generator relies on the Pillow library to do image processing.
See a Demo (running pioupiouweb from buxx).
Install
From pypi
$ pip install pioupiou
From source
- clone this repository
pip install -e "."
Usage
High Level Api
The high level Api will help you choose avatar between multiples themes, according to installed themes.
from pioupiou import AvatarGenerator
# check sample/example.py for code to build default sample themes
from sample.example import generate_default_themes
themes = generate_default_themes(sample_dir_path="./sample")
avatar_generator = AvatarGenerator(themes)
# note: you can override default theme list and/or theme chooser (mecanism to randomly choose a theme according to token)
avatar = avatar_generator.generate_avatar(token="just a random string")
avatar_generator.save_on_disk(avatar, path="/tmp/saved_file.png")
# note: you can choose a specific theme according to activate theme
avatar = avatar_generator.generate_avatar(
theme_name="cat_revoy", token="just a random string"
)
avatar_generator.save_on_disk(avatar, path="/tmp/saved_file_2.png")
Low Level Api (AvatarTheme)
The easy way to use it is to be based on FolderAvatarTheme. To do this, you should create many .png file of same image, all with transparency. You should follow a similar naming pattern as in the following example.
To test it, you can, for instance, use a cat avatar by David Revoy:
from pioupiou import FolderAvatarTheme
theme = FolderAvatarTheme(
folder_path="sample/cat_revoy",
layers_name=["body", "fur", "eyes", "mouth", "accessorie"],
)
avatar = theme.generate_avatar(token="just a random string")
theme.save_on_disk(avatar, path="/tmp/saved_file.png")
Or a bird avatar by David Revoy:
from pioupiou import FolderAvatarTheme
theme = FolderAvatarTheme(
"sample/bird_revoy",
layers_name=["tail", "hoop", "body", "wing", "eyes", "bec", "accessorie"],
)
avatar = theme.generate_avatar(token="just a random string")
theme.save_on_disk(avatar, path="/tmp/saved_file.png")
Or a Monster avatar by Andreas Gohr's:
from pioupiou import FolderAvatarTheme
theme = FolderAvatarTheme(
"sample/monster_id",
layers_name=["legs", "hair", "arms", "body", "eyes", "mouth"],
)
avatar = theme.generate_avatar(token="just a random string")
theme.save_on_disk(avatar, path="/tmp/saved_file.png")
Configure Chooser
To generate avatars, pioupiou provides tools to help you use the algorithm you want.
The default behaviour is to rely on random.Random()
, but pioupiou is made to support any type of chooser.
To do this, you just need to configure the chooser with your AvatarTheme
:
from pioupiou import FolderAvatarTheme
from random import Random
theme = FolderAvatarTheme(
folder_path="sample/cat_revoy",
layers_name=["body", "fur", "eyes", "mouth", "accessorie"],
chooser=Random(), # same as default, don't change anything
)
You can use any hashlib algorithm you want from hashlib
, using pioupiou.chooser.HashLibChooser
.
It will make choices using a modulo.
from pioupiou import FolderAvatarTheme
import hashlib
from pioupiou.chooser import HashLibChooser
theme = FolderAvatarTheme(
folder_path="sample/cat_revoy",
layers_name=["body", "fur", "eyes", "mouth", "accessorie"],
chooser=HashLibChooser(
hashlib.sha256()
), # hashlib.sha256() is just an example, hashlib.md5() should also work for example.
)
You can also implement pioupiou.chooser.Chooser
and use a custom chooser.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pioupiou-0.8.1-py3-none-any.whl
.
File metadata
- Download URL: pioupiou-0.8.1-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 581cbc9574a6f298ca2482d2125f4592c005faae20dc724a346376999dc0a37e |
|
MD5 | 86e8945b1a7b19238d1d4426f6488cb3 |
|
BLAKE2b-256 | f1fc89bc9b8aa83d60fbea901d25d375df43a3ff95d3cd59c5990f547043c1be |