Metadata-Version: 2.1
Name: identy
Version: 0.0.4
Summary: Generate grayscale identity icons.
Home-page: https://github.com/onerbs/identy
Author: AAAA
Author-email: dev@onerbs.com
License: MIT
Keywords: identicon png
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: xu

# identy

Generate grayscale identity icons.

## Usage

```python
import identy

print(identy.from_string('identy', v=1))
print()
print(identy.random().png().base64str())

# You can save the icon
identy.random().png(256).save('/path/to/file.png')
```

    ████████████████
    ████░░    ░░████
    ██▓▓▓▓▓▓▓▓▓▓▓▓██
    ██▒▒▒▒░░░░▒▒▒▒██
    ██▒▒▒▒░░░░▒▒▒▒██
    ██▓▓▓▓▓▓▓▓▓▓▓▓██
    ████░░    ░░████
    ████████████████

    iVBORw0KGgoAAAANSUh...

> __Note__: The `str` representation of the icon may differ from the generated png image.


