Metadata-Version: 2.1
Name: pyPWD
Version: 1.0.0
Summary: A simple password generator
Home-page: https://github.com/HYKANTUS/pyPWD
Author: HYKANTUS
Author-email: hykantus@gmail.com
License: UNKNOWN
Project-URL: Personal Website, http://hykantus.tk/
Description: # pyPWD
        A simple password generator
        
        ### Info
        Passwords are generated in this format: (LETTERS) (SYMBOL) (NUMBERS)
        
        ### Usage: 
        ```python
        import pyPWD
        PyPWD.generate(letter_length, special_character, number_length)
        ```
        
        ### Example: 
        simple code to generate 12 letters, a symbol, and 12 numbers
        
        #### Code:
        ```python
        import pyPWD
        
        password = pyPWD.generate(12, '@', 12)
        print(password)
        ```
        you can also do 
        
        ```python 
        from pyPWD import generate
        ``` 
        
        to make it easier.
        
        > Remember that instead of `pyPWD.generate()`, you should do `generate()`
        
        #### Output:
        This code will generate something like this:
        
        ```
        OhvkpUYMUMaR@553339954271
        ```
        
        in the format of LETTERS, then a SYMBOL, followed by a string of NUMBERS
        
        ### Inbuilt help feature
        ```python
        import pyPWD
        
        pyPWD.help()
        ```
        
        Prints a short help message
        
        ### Credits
        made by HYKANTUS.
        
        🌐 [Website](http://hykantus.tk)
        
        📺 [YouTube](https://www.youtube.com/channel/UCTrjOFWCDxorgDScilYH18Q)
        
        📷 [InstaGram](https://www.instagram.com/hykantus/)
        
        💻 [GitHub](https://github.com/HYKANTUS)
        
Keywords: password,passwords,password generator,security
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
