Metadata-Version: 2.1
Name: package-passgen
Version: 0.0.2
Summary: A package to generate strong random passwords
Home-page: https://github.com/chris1109873/package_passgen
Author: Chris
Author-email: christopher.m9876@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# package_passgen

### Project description:
A package to generate strong random passwords. User can define the length, 
number of passwords and the character sets (punctuation, lowercase, uppercase 
and numbers) that needs to be included in the password.


### Usage:

* No of passwords that would be generated by default is 1
* Minimum length of password is 8
* Possible options for charsets include 'punctuation', 'lowercase', 
  'numbers' and 'uppercase'. You can choose to include one or more charsets
  in the generated password


``` python
  import package_passgen as passgen

  include_charsets = ['punctuation', 'lowercase', 'numbers', 'uppercase']

  password_list = passgen.generate_password(
    password_length=10,
    include_charsets=include_charsets,
    no_of_passwords=5
    )

  for p in password_list:
    print(p)
```


