Skip to content

Commit 263267f

Browse files
committed
docs(en): same small visual and text updates
1 parent 5693c07 commit 263267f

1 file changed

Lines changed: 11 additions & 7 deletions

File tree

README.en.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,27 @@
1-
<div align="center">
1+
<h1 align="center">
22

3-
# PyCustomRand
3+
PyCustomRand
44

55
![Python](https://custom-icon-badges.demolab.com/badge/Python-3.8+-blue?logo=pythonn)
66
[![Last Commit](https://img.shields.io/github/last-commit/n1xsi/pycustomrand.svg)](https://github.com/n1xsi/pycustomrand/commits/main)
77
[![Run Tests](https://github.com/n1xsi/PyCustomRand/actions/workflows/python-app.yml/badge.svg)](https://github.com/n1xsi/PyCustomRand/actions/workflows/python-app.yml)
88

9-
</div>
9+
</h1>
10+
11+
<div align="center">
1012

11-
🌐 **Languages:**
13+
🌐 **Readme languages:**
1214
🇷🇺 <a href="README.md">Русский</a> | *🇬🇧 English*
1315

16+
</div>
17+
1418
<br>
1519

16-
**PyCustomRand** is a Python library for generating **pseudo-random numbers**, based on an algorithm that utilizes system time with nanosecond precision.
20+
**PyCustomRand** is a self‑written Python library for generating **pseudo-random numbers**, based on an algorithm that utilizes system time with nanosecond precision.
1721

1822
This author's project was created to study algorithms and alternative approaches to random number generation and rounding.
19-
I was not satisfied with the fact that Python's standard `random` module generates insufficiently random numbers (*especially during multiple sequential generations*), and the built-in `round` module rounds
20-
numbers rather "roughly" ( *`round(1.5)` = 2 and at the same time `round(2.5)` = 2* ). Therefore, I decided to write *my own* library for pseudo-random number generation — simpler and with higher entropy.
23+
I was not satisfied with the fact that Python's standard `random` module generates insufficiently random numbers ( *especially during multiple sequential generations* ), and the built-in `round` module rounds
24+
numbers rather "roughly" ( *`round(1.5)` = 2 and at the same time `round(2.5)` = 2* ). Therefore, I decided to write *my own* library for pseudo-random number generation — simpler, with higher entropy and proper mathematical rounding.
2125

2226
> [!WARNING]
2327
> PyCustomRand is *currently* **not** a cryptographically secure library and is **not intended** for use in security systems!

0 commit comments

Comments
 (0)