less than 1 minute read

As part of my own personal development I have been learning Python. This post will link to Python scripts I have created. These scripts will mostly be proof of concept projects, as I learn the language.

createFiles.py

  • This is just a simple script to learn a little automation.
  • When this script runs it creates 10 text files in the current working directory, named text_file(0-9).txt. If these files already exist, it will create an additional 10 files titled text_file(10-19).txt, and so on.

encryptDecrypt.py

  • Just a simple script to explore Crypto.Cipher method. Allows user to encrypt or decrypt a string using ECB mode of AES.

passGen.py

  • Simple scrypt to create random passwords. Prompts user for desired length, and any special characters that must be excluded, and returns the randomly generated password.