Skip to main content

Password generator tools for project apps

Project description

#generatepass

This is password generator::

Hizart.soft H._T@2022

Usage

  1. Generate a Password:

     from password_generator import generate_pass
    
     password = generate_pass()
     print("Generated Password:", password)
    
  2. Check Password Strength:

    from password_generator import check_pass, get_user_password
    
    user_password = get_user_password()
    strength_result = check_pass(user_password)
    print(strength_result)
    
  3. Encrypt and Decrypt Password:

    from password_generator import use_encrypt_pass, use_decrypt_pass, get_user_password
    
    user_password = get_user_password()
    
    # Encrypt password
    encrypted_password = use_encrypt_pass(user_password)
    print("Encrypted Password:", encrypted_password)
    
    # Decrypt password
    decrypted_password = use_decrypt_pass(encrypted_password)
    print("Decrypted Password:", decrypted_password)
    
  4. Customize Password Length:

    from password_generator import generate_pass
    
    custom_length_password = generate_pass(length=16)
    print("Custom Length Password:", custom_length_password)
    
  5. Check Password Strength and Generate

    from password_generator import check_pass, generate_pass
    
    password = generate_pass()
    print("Generated Password:", password)
    
    strength_result = check_pass(password)
    print(strength_result)
    

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

generatepass-1.0.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

generatepass-1.0-py3-none-any.whl (2.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page