RandomInts 0.0.6__tar.gz → 0.0.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- randomints-0.0.8/PKG-INFO +30 -0
- randomints-0.0.8/README.md +22 -0
- randomints-0.0.8/RandomInts.egg-info/PKG-INFO +30 -0
- {randomints-0.0.6 → randomints-0.0.8}/RandomInts.egg-info/SOURCES.txt +1 -0
- {randomints-0.0.6 → randomints-0.0.8}/pyproject.toml +1 -1
- randomints-0.0.6/PKG-INFO +0 -7
- randomints-0.0.6/RandomInts.egg-info/PKG-INFO +0 -7
- {randomints-0.0.6 → randomints-0.0.8}/RandomInts.egg-info/dependency_links.txt +0 -0
- {randomints-0.0.6 → randomints-0.0.8}/RandomInts.egg-info/top_level.txt +0 -0
- {randomints-0.0.6 → randomints-0.0.8}/setup.cfg +0 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: RandomInts
|
|
3
|
+
Version: 0.0.8
|
|
4
|
+
Summary: A custom random number generator built from scratch. Function #1 Rand() function #2 RandSeed(45).
|
|
5
|
+
Author-email: wawa2016-here <lemver2016@gmail.com>
|
|
6
|
+
Requires-Python: >=3.7
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# RandomInts
|
|
10
|
+
*A custom random number generator built from scratch.
|
|
11
|
+
*And to Import it you use from RandomInts import Rand
|
|
12
|
+
|
|
13
|
+
## Functions Included:
|
|
14
|
+
* **Rand()**: Generates a random integer.
|
|
15
|
+
* **RandSeed(seed)**: Sets a custom seed value for generation.
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
```bash
|
|
19
|
+
pip install RandomInts
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Quick Start
|
|
23
|
+
```python
|
|
24
|
+
from RandomInts import Rand
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
# Try it out
|
|
28
|
+
```python
|
|
29
|
+
Rand()
|
|
30
|
+
RandSeed(23)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# RandomInts
|
|
2
|
+
*A custom random number generator built from scratch.
|
|
3
|
+
*And to Import it you use from RandomInts import Rand
|
|
4
|
+
|
|
5
|
+
## Functions Included:
|
|
6
|
+
* **Rand()**: Generates a random integer.
|
|
7
|
+
* **RandSeed(seed)**: Sets a custom seed value for generation.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
```bash
|
|
11
|
+
pip install RandomInts
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Quick Start
|
|
15
|
+
```python
|
|
16
|
+
from RandomInts import Rand
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
# Try it out
|
|
20
|
+
```python
|
|
21
|
+
Rand()
|
|
22
|
+
RandSeed(23)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: RandomInts
|
|
3
|
+
Version: 0.0.8
|
|
4
|
+
Summary: A custom random number generator built from scratch. Function #1 Rand() function #2 RandSeed(45).
|
|
5
|
+
Author-email: wawa2016-here <lemver2016@gmail.com>
|
|
6
|
+
Requires-Python: >=3.7
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# RandomInts
|
|
10
|
+
*A custom random number generator built from scratch.
|
|
11
|
+
*And to Import it you use from RandomInts import Rand
|
|
12
|
+
|
|
13
|
+
## Functions Included:
|
|
14
|
+
* **Rand()**: Generates a random integer.
|
|
15
|
+
* **RandSeed(seed)**: Sets a custom seed value for generation.
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
```bash
|
|
19
|
+
pip install RandomInts
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Quick Start
|
|
23
|
+
```python
|
|
24
|
+
from RandomInts import Rand
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
# Try it out
|
|
28
|
+
```python
|
|
29
|
+
Rand()
|
|
30
|
+
RandSeed(23)
|
randomints-0.0.6/PKG-INFO
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: RandomInts
|
|
3
|
-
Version: 0.0.6
|
|
4
|
-
Summary: A custom random number generator built from scratch. Function #1 Rand() function #2 RandSeed(45).
|
|
5
|
-
Author-email: wawa2016-here <lemver2016@gmail.com>
|
|
6
|
-
Requires-Python: >=3.7
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: RandomInts
|
|
3
|
-
Version: 0.0.6
|
|
4
|
-
Summary: A custom random number generator built from scratch. Function #1 Rand() function #2 RandSeed(45).
|
|
5
|
-
Author-email: wawa2016-here <lemver2016@gmail.com>
|
|
6
|
-
Requires-Python: >=3.7
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
File without changes
|
|
File without changes
|
|
File without changes
|