We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eff760 commit 1383856Copy full SHA for 1383856
README.md
@@ -24,7 +24,11 @@ Here's an example usage:
24
```python
25
import random, time
26
from randcrack import RandCrack
27
+
28
+random.seed(time.time())
29
30
rc = RandCrack()
31
32
for i in range(624):
33
rc.submit(random.getrandbits(32))
34
# Could be filled with random.randint(0,4294967294) or random.randrange(0,4294967294)
0 commit comments