This module makes round-robin strings.
This module has no installer yet, so you can install only yourself.
| name | type | description |
|---|---|---|
| any_characters | list | This list consolidate to character_list. |
| use_all | bool | If it has True, character_list has all aphabets and numbers. |
| use_aphabets | bool | If it has True, character_list has all aphabets. |
| use_small_aphabets | bool | If it has True, character_list has smaller aphabets. |
| use_large_aphabets | bool | If it has True, character_list has larger aphabets. |
| use_numbers | bool | If it has True, character_list has all numbers. |
This program continue getting round_robin strings from RoundRobin.next() and printing them.
import round_robin
import time
roundrobin = round_robin.RoundRobin(use_all=True)
for pattern in roundrobin.next():
print(pattern)
time.sleep(0.1)