Metadata-Version: 2.1
Name: RoboArt
Version: 0.1.1
Summary: A basic random avatar generator
Author: puang59
Author-email: puang59@proton.me
Keywords: python,avatar,roboart,random avatar,robohash,robots art
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# 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:

```bash
pip install roboart
```

## Usage

Import RoboArt in your Python script and create an instance of the roboart class:

```python
from roboart import roboart
ra = roboart()
```

Then, generate an avatar by passing a hash value to the robo() method:

```python
ra.robo("thisishash")
```

This will generate an avatar based on the provided hash value.

## Quick Example

```python
from roboart import roboart

ra = roboart()

ra.robo("Robot") # It generates a robot avatar
ra.monster("Monster") # It generates a monster avatar
ra.robohead("Head") # It generates a robot head avatar
ra.kitten('cats') # It generates a cat avatar
```

## License:

This project is licensed under the terms of the MIT license. You can find the full license text in the LICENSE file.
