Metadata-Version: 2.4
Name: temporal-random
Version: 1.4.0
Summary: Генератор случайных чисел на основе временной нестабильности
Author-email: Jipin <artemgtflow@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/artemgtflow-del/temporal-random
Project-URL: Repository, https://github.com/artemgtflow-del/temporal-random
Project-URL: Issues, https://github.com/artemgtflow-del/temporal-random/issues
Keywords: random,entropy,temporal,generator,cryptography
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

[![Python](https://img.shields.io/badge/python-3.7+-blue.svg)](https://www.python.org/)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
[![Version](https://img.shields.io/badge/version-1.4.0-brightgreen.svg)](https://github.com/artemgtflow-del/temporal-random/releases)

# Temporal-Random

Генератор случайных чисел на основе временной нестабильности.

## Идея
Ни одно действие не выполняется за одинаковое время. Разница во времени между двумя одинаковыми операциями — это источник энтропии.

## Использование
```python
from temporal_random import TemporalRandom

rng = TemporalRandom()
print(rng.random_int(0, 100))

```
EN

# Temporal-Random

Random number generator based on temporal instability.

## Idea
No action is performed in exactly the same time. The difference in time between two identical operations is a source of entropy.

## Usage
```python
from temporal_random import TemporalRandom

rng = TemporalRandom()
print(rng.random_int(0, 100))
