Posts tagged 'Monday-Modules'

April Meet Minutes

Introduction: It's always hard to parse the binary file to text. Today we will see rescue module which will help us to convert docx to md file.

Module: docx2md

Installation: pip install docx2md

About: Converts Microsoft Word document files (.docx extension) to Markdown files.

Execution: % python -m docx2md ~/Downloads/example …

April Meet Minutes

Module: pynguin

Installation: pip install pynguin

About: Pynguin, the PYthoN General UnIt test geNerator, is a tool that allows developers to generate unit tests automatically.

Sample Source Code: def triangle(x: int, y: int, z: int) -> str: if x == y == z: return "Equilateral triangle" elif x == y or y == z …