A simple Python script that generates random usernames composed of lowercase letters and digits.
Run the script from the command line. By default, it generates 1 username with 5 characters.
python username_generator.pyYou can also specify parameters:
--lengthor-l: The length of each username.--numberor-n: The number of usernames to generate.
For example, to generate 3 usernames each with 8 characters:
python username_generator.py --length 8 --number 3This project is open-source and available under the MIT License.