Python

Meters To Miles Converter

Submitted by ndsuero on
A simple Python program that will allow you to convert Meters to Miles. def askUserForMeters(): userMeters = float(input("Please enter the distance" + \ "in Kilometers:")) return userMeters def convertMetersToMiles(userMeters): miles = userMeters * 0.6214 return miles def main(): userMetersTyped = askUserForMeters() miles = convertMetersToMiles(userMetersTyped)

Safelock 0.5

Submitted by Mohamed Feddad on
Simple drag & drop file encryption tool. based on python and uses PyCrypto to encrypt the inputted files with AES encryption. Then sqlite database file is generated with a unique key to store the encrypted files and folders in binary blobs for later decryption. More info and binaries

USB Resetter 1.0

Submitted by Mohamed Feddad on
USB resetting is the closest equivalent to physically unplugging and re-plugging a USB device. It's written in python, based on PySide for GUI and PyUsb for USB support. How to Run it : (With Python2.7) pip install requirements.txt && python run.py