Metadata-Version: 2.4
Name: numgen_egg
Version: 1.3.4
Summary: A Python package for generating pseudo-random high entropy number strings.
Author: Egglord
License-Expression: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file
Dynamic: requires-python

# Numgen

A simple Python package for generating pseudo-random high entropy number strings.

This is my second python library :D

Commands:

numgen.gen(0, 2)

Replace 0 with any number, it's recomended not to use a number lower than 3 and higher than 32. Replace 2 with any number, or remove it (2 is default).


Examples:

Python
```python
import numgen_egg as nge
print(nge.gen(3, 2))
```

Shell/output
```
0050997506234413965087281795511221945137157107231920199501246882793017456359102244389027431421446384039900249376558603491271820448877805486284289276807980049875311720698254364089775561097256857855361596009975062344139650872817955112219451371571072319201995012468827930174563591022443890274314214463840399002493765586034912718204488778054862842892768079800498753117206982543640897755610972568578553615960099750623441396508728179551122194513715710723192019950124688279301745635910224438902743142144638403990024937655860349127182044887780548628428927680798004987531172069825436408977556109725685785536159600997506234413965087281795511221945137157107231920199501246882793017456359102244389027431421446384039900249376558603491271820448877805486284289276807980049875311720698254364089775561097256857855361596009975062344139650872817955112219451371571072319201995012468827930174563591022443890274314214463840399
```

!NB!

Use: pip install numgen-egg

Import it to python: import numgen_egg
