Metadata-Version: 2.1
Name: RoomCodeGen
Version: 1.0
Summary: A module to generate random strings of numbers and letters
Author: AndysThings
Author-email: andrew@andysthings.tk
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

A module to generate random strings of numbers and letters

Can be used for lots of things, Auth-keys, room-codes, etc.
#How-To
Install: ```pip install ranstring```  
Example:
```
from ranstring import gen
# len = length of string, default is 4
# chars = are there letters in the string, default is True
# nums = are there numbers in the string, default is False
ran = gen.init(len, chars, nums)
print(ran.gen())  
```



