Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shpaker/tiny-userpic
https://github.com/shpaker/tiny-userpic
avatar avatar-generator userpic
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shpaker/tiny-userpic
- Owner: shpaker
- Created: 2021-07-01T08:55:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-22T19:44:08.000Z (over 2 years ago)
- Last Synced: 2024-11-09T00:48:55.963Z (about 2 months ago)
- Topics: avatar, avatar-generator, userpic
- Language: Python
- Homepage:
- Size: 37.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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)
```