Turns out you can kill multiple process by name with 'pkill'.
It came in handy today as I had a mistake in a python script that ran other python scripts and I needed to kill all processes named "python":
pkill -f python
I feel like this is something I should have known about sooner, but better late than never I suppose.