Metadata-Version: 2.1
Name: rand-string
Version: 0.40
Summary: Generates a random string of a specified length.
Home-page: https://github.com/TheSongList/random-string
Author: TheSongList
Author-email: the@songlist.moe
License: MIT
Download-URL: https://github.com/TheSongList/random-string/archive/v0.1.tar.gz
Description: # random-string
        Generates a random string of a specified length.
        
        # Usage
        Currently there are 5 types:
        - uppercase
        - lowercase
        - upperlower
        - alphanumerical
        - ascii
        
        You can probably guess what each one would create
        
        The function requires 2 parameters type and length; Type of course is the above.
        ```py
        RandString(type, length)
        ```
        Now lets look at some examples
        
        uppercase:
        ```py
        print(RandString("uppercase", 10))
        # Output: TPDROEAVRY
        ```
        
        lowercase:
        ```py
        print(RandString("lowercase", 10))
        # Output: mdvsewzkwf
        ```
        
        upperlower:
        ```py
        print(RandString("upperlower", 10))
        # Output: YjHFGzysFx
        ```
        
        alphanumerical:
        ```py
        print(RandString("alphanumerical", 10))
        # Output: Fy0Nbqno6B
        ```
        
        ascii:
        ```py
        print(RandString("ascii", 10))
        # Output: jtj-NV<PSV
        ```
Keywords: RANDOM,STRING,GENERATOR
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
