Metadata-Version: 2.1
Name: pylumenta
Version: 0.1.3
Summary: Polumenta generator
Home-page: https://github.com/vladimirlojanica/pylumenta
Author: Vladimir Lojanica
Author-email: vladimirlojanica@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3

# Polumenta generator

## Intro

This generator is ispired by http://polumenta.zardina.org/ and based on https://github.com/vl4dimir/polumenta.

## Getting started

### Requirements

- Python >= 3.7

### Installation

```python
pip install pylumenta
```

### Example

Generate one Polumenta:

```python
>>> from pylumenta.generator import jedanPolumenta
>>> pol = jedanPolumenta()
>>> print(pol)
Клађo
```

Generate array of unique Polumentas (max number is 100):

```python
>>> from pylumenta.generator import Polumente
>>> poliske = Polumente(5)
>>> print(poliske)
['Шаџo Полумента', 'Ховo Полумента', 'Фњалo Полумента', 'Тлацo Полумента', 'Млаџo Полумента']
```

Will certain Polumenta will be born in one million cycles and if so, in what cycle:

```python
>>> from pylumenta.generator import rodiPolumentu
>>> name, counter, status = rodiPolumentu('Фњалo')
Фњалo Полумента родио се у циклусу: 7273
>>> print(name, counter, status)
Фњалo 7273 True
```
