Skip to content
Benjamin edited this page Dec 19, 2015 · 10 revisions

Welcome to the PythonYard wiki!

List of items and purpose

pwdgenerator.py(wiki)

Original design to be a passwords generator, it actually randomly choose two words (a descriptive and a noum), then it prints the selection to the standard output. Finally, the program create a sort of leet string usable as a password. The words used are stored in a JSON file (see next point).

words.json

Store words in two categories, descriptive ones and noums.

leet.py (wiki)

Module to play with a sort of leet (1337) language. See leet module wiki page.

pwdmeter.py(wiki)

Compute passwords strength. It's only a toy program. More tests and some improvement have to be done to be truly safe.

input2json.py

Read data from standard input and store it to a JSON file. The main goal is to provide a way to read huge file like dictionaries and store all the words into a JSON file to use it for passwords generation for instance.
Under heavy development.

More fun to come...

Clone this wiki locally