An open API service indexing awesome lists of open source software.

https://github.com/shpaker/tiny-userpic

Oversimplified Github-like userpics generation python library
https://github.com/shpaker/tiny-userpic

avatar avatar-generator userpic

Last synced: 8 months ago
JSON representation

Oversimplified Github-like userpics generation python library

Awesome Lists containing this project

README

          

# Userpic Generator

[![PyPI version](https://badge.fury.io/py/tiny-userpic.svg)](https://pypi.org/project/tiny-userpic/)

## Getting Started

## Installing

tiny-userpic can be installed using pip:

```bash
pip install tiny-userpic
```

## Usage

To test that installation was successful, try:

```bash
python -m userpic --output img.png
```

tiny-userpic can be used both from the command line and as a Python library.

```python
from userpic import make_userpic
data = make_userpic(
cells_count=7,
cell_size=32,
offset=16,
data_format="svg",
)
with open("output.svg", "wb") as file:
file.write(data)
```