This Repository is a collection of my python scripts.
Diamond pattern using asterisk (0.1.0) ![](https://camo.githubusercontent.com/e4cbc31461d91ee695ce0f7703a56297deed3757b108217abcb5ce300352b749/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73697a652f69726f746563742f4d792d507974686f6e2d536372697074732f736372697074732f6469616d6f6e645f737461725f7061747465726e2e70792e737667)
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) ![](https://camo.githubusercontent.com/afb002fde6ce343cad34856d68091d9230851c0a0e81d0838ed6d6734fff18ed/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73697a652f69726f746563742f4d792d507974686f6e2d536372697074732f736372697074732f6d61747269785f7472616e73706f73652e70792e737667)
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) ![](https://camo.githubusercontent.com/84da51851e8f72127cbe720007be1231c853969087bf9f0a02561bda3ebf2b87/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73697a652f69726f746563742f4d792d507974686f6e2d536372697074732f736372697074732f726561646d655f67656e657261746f722e70792e737667)
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