I am trying to figure out the nyquist plot of the transfer function $$G(s)=\frac{\exp\big(-Ts\big)}{s}$$ but I cannot plot it in neither python nor wolfram alpha. I have figured out that the plot of $ \dfrac{1}{s} $ is
but I can't seem to plot the exponential for the $G(s)$ I have stated. I also worked out the math for the $\displaystyle\frac{1}{s}$ nyquist plot but I don't know what I should do for exponential transfer functions. Any ideas?

This is because you are trying to plot it in polar coordinates. You get a better understanding by using a log-polar scale. This is how the Nyquist plot of $e^{-0.1s}/s$ looks like (I used
nyqlogin MATLAB):The MATLAB code to produce this plot is:
In general I have found that software can be very helpful in plotting Nyquist diagrams, but you often get misleading results, especially for functions with poles at the origin or on the imaginary axis.
The way that the exponential term, $e^{-Ts}$, $T>0$, acts on a Nyquist plot is by rotating it in the clockwise direction as shown below:
It seems to me that scipy does not support transfer functions with input delay, but if you have a transfer function of the form
$$ G(s) = exp(-Ts)H(s), $$
where $H$ is a rational function, you can use Python to generate $|H(j\omega)|$ and $\arg H(j\omega)$ and then
$$ |G(j\omega)| = |H(j\omega)| $$
and
$$ \arg G(j\omega) = \arg H(j\omega) - T\omega $$