Start by cloning the repo
git clone https://github.com/pranavbaburaj/polyglot.git
Python
- Download and install python from the official download pagePIP
- PIP is the python package manager. Read more about it here
pip install -r requirements.txt
Once you have finished adding the changes, make sure to format your code with formatter. It is recommended to use black
<#
Install the black code formatter
using pip
#>
pip install black
<#
Format the code using black
#>
black .
You can read more about pull requests here