Skip to main content

A simple python library to generate customizable random passwords in python!

Project description

RandomPassword

A simple python library to generate customizable random passwords in python!

Installation:

pip install RandomPassword

Import:

import RandomPassword

Making a simple password:

import RandomPassword

a = RandomPassword.RandomPassword()
password = a.generate_random_password(length=10)
print(password)

Customizing your password:

The generate_random_password() has some parameters to customize the password!

  • include_upper_case_alphabets ---> Set to 'True' if you want uppercase alphabets in your password
  • include_lower_case_alphabets ---> Set to 'True' if you want lowercase alphabets in your password
  • include_special_characters ---> Set to 'True' if you want special characters in your password
  • include_numbers ---> Set to 'True' if you want digits in your password

Thank you!

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

RandomPassword-1.0.tar.gz (3.0 kB view hashes)

Uploaded Source

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