Metadata-Version: 2.1
Name: randomisedString
Version: 1.4.0
Summary: A well maintained program to generate cryptographically safe randomised strings. Can be used for assigning unique IDs of any specified size. Can be alpha only or numeric or alphanumeric as specified.
Maintainer-email: Bhindi <bhaskarpanja93@gmail.com>
Project-URL: Homepage, https://github.com/BhaskarPanja93/randomisedString
Keywords: id,uid,uuid,random string,unique id
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# randomisedString v1.4.0

```pip install randomisedString --upgrade```


###### <br>A well maintained program to generate cryptographically safe randomised strings. Can be used for assigning unique IDs of any specified size. Can be alpha only or numeric or alphanumeric as specified.


<br>To install: 
```
pip install randomisedString --upgrade
pip3 install randomisedString --upgrade
python -m pip install randomisedString --upgrade
python3 -m pip install randomisedString --upgrade
```


#### <br><br>Using this program is as simple as:
```
from randomisedString import Generator as StringGenerator

generator = StringGenerator()

print(generator.AlphaNumeric(10, 10))
>> 45HCMJ4SCy
print(generator.OnlyNumeric(10, 10))
>> 1127163
print(generator.OnlyAlpha(10, 10))
>> UjfQZDDOOq
print(generator.AlphaNumeric(5, 10))
>> FxgirdEYB
print(generator.OnlyNumeric(5, 10))
>> 917478
print(generator.OnlyAlpha(5, 10))
>> HqGiHqt
```


### Future implementations:
* Include special characters.


###### <br>This project is always open to suggestions and feature requests.
