This Repository is a collection of my python scripts.
Diamond pattern using asterisk (0.1.0)
Author: Mayank Thakur
Date Updated: 27-02-2020
Generates diamond pattern using asterisk (*):
Requirements:
-> Python 3.0 or higher
Usage:
-> Call the diamond_pattern(x) function where x is the size of the diamond.
Matrix Transposer (0.1.0)
Author: Mayank Thakur
Date Updated: 17-01-2019
Transposes the given matrix in the form of 2-d list.
ex. [[1,2,3],[4,5,6]] --> [[1, 4], [2, 5], [3, 6]]
Author: Mayank Thakur
Date Updated: 17-01-2019
Converts M3U playlist to mp4 file using FFMPEG.
Requirements:
-> Python 3.0 or higher
-> FFMPEG installed in system path.
-> Working internet connection for online M3U FIle.
Usage:
-> Simply run this script with python and follow on screen instructions.
Readme.md Generator (0.1.1)
Author: Mayank Thakur
Date Updated: 18-01-2019
This script automatically generates GitHub styled Readme.md (markdown file)
from the docstrings and other info from the files present in the '/scripts'.
Author: Mayank Thakur
Date Updated: 27-02-2020
Generates greatest common factor of 2 numbers using Euclidean Algorithm.
Requirements:
-> Python 3.0 or higher
Please read CONTRIBUTING.md for details on code of conduct, and the process for submitting pull requests.
This project is licensed under the MIT License - see the LICENSE file for details
- Hat tip to anyone whose code was used
- Inspiration
- etc