RoboArt
Avatars lovingly delivered by Robohash.org
RoboArt is a basic random avatar generator which generates avatar in 4 different sets when hash is provided.
Installation
You can install RoboArt via pip:
pip3 install -U RoboArt
This will install the latest version of RoboArt
To update your existing RoboArt package, use:
pip3 install RoboArt - U
Usage
Import RoboArt in your Python script and create an instance of the roboart class:
from RoboArt import roboart
ra = roboart()
Then, generate an avatar by passing a hash value to the robo() method:
ra.robo("thisishash")
This will generate an avatar based on the provided hash value.
Quick Example
from RoboArt import roboart
ra = roboart()
Robot = ra.robo("Robot")
Monster = ra.monster("Monster")
RoboHead = ra.robohead("Head")
Kittens = ra.kitten('cats')
print(Robot)
License:
This project is licensed under the terms of the MIT license. You can find the full license text in the LICENSE file.