Metadata-Version: 2.1
Name: randstr-random
Version: 1.1.2
Summary: Python package for generating strings with random characters.
Home-page: https://github.com/CodeConfidant/randstr-random
Author: Drew Hainer
Author-email: codeconfidant@gmail.com
License: MIT
Description: # ***randstr-random***
        
            Python package for generating strings with random characters.
        
            Make sure to have the latest version of Python 3 installed although this should work with previous versions. 
        
            To install the package with pip enter command in terminal:
                pip install randstr-random
        
            To uninstall the package with pip enter command in terminal:
                pip uninstall randstr-random
        
        <table width="100%">
        	<tr>
        		<th align="left">
                    Method
                </th>
        		<th align="left">
                    Description
                </th>
        	</tr>
        	<tr>
        		<td>
                    <code>randdigit()</code>
                </td>
        		<td>
                    Generates a random digit ranging from 0 to 9 (Digits in Decimal Number System) and returns it as a string.
                </td>
        	</tr>
            <tr>
        		<td>
                    <code>randalpha()</code>
                </td>
        		<td>
                    Generates a random lowercase letter from the english alphabet and returns it as a string.
                </td>
        	</tr>
            <tr>
        		<td>
                    <code>randspec()</code>
                </td>
        		<td>
                    Generates a random special character and returns it as a string.
                </td>
        	</tr>
            <tr>
        		<td>
                    <code>generate(string_length, seed_type)</code>
                </td>
        		<td>
                    Return a string with random values of designated int length (Cap of 10000).
                    The random value combos are selected by using a specific string for the seed_type argument. <br/>
                    The seed_type argument value options (not case sensitive) are as follows: <br/>
                        "al" - (Alphabet Lower) Random lowercase alphabet letters. <br/>
                        "au" - (Alphabet Upper) Random uppercase alphabet letters. <br/>
                        "dig" - (Digit) Random digits 0-9. <br/>
                        "spec" - (Special) Random special characters. <br/>
                        "ad" - (Alphabet Lower | Alphabet Upper | Digit) Random lowercase & uppercase alphabet letters. Random digits 0-9. <br/>
                        "ads" - (Alphabet Lower | Alphabet Upper | Digit | Special) Random lowercase & uppercase alphabet letters. Random digits 0-9. Random special characters.
                </td>
        	</tr>
            <tr>
        		<td>
                    <code>isspec(arg)</code>
                </td>
        		<td>
                    Return true if all characters in arg string are special characters.
                </td>
        	</tr>
            <tr>
        		<td>
                    <code>isads(arg)</code>
                </td>
        		<td>
                    Return true if all characters in arg string are either upper/lower case alphabet, decimal or special characters.
                </td>
        	</tr>
        </table>
        
        [Back to Top](#randstr-random)
        
        ---
        
Platform: Windows
Platform: Linux
Description-Content-Type: text/markdown
