Note: for this script, I need to "import jwt" which is not available in the 
installed packages that come with bluehost. 

I have to install Python3. I followed these instructions:
https://www.bluehost.com/help/article/python-installation

I called bluehost - instructions say I have to be added to the "compiler group"

Then, I have to create a python virtual environment with the new python3:
	~/python/Python-3.9.2/python -m venv fluid_virtual_environment

then, to activate the virtual environment:
	source fluid_virtual_environment/bin/activate

after activating, you are in the new environment, using the correct python even from the command line
so, "pip" command will be correct. Run this to install the JWT package:
	pip install PyJWT

to make HTTP POST requests, I have to install the requests package
	NOTE: make sure you have activated the virtual environment
	pip install requests

NOTE: this example will run the script from the command line:
	- make sure you activate the virtual environment before running this:
		source fluid_virtual_environment/bin/activate
 	- python create_fluidmath_net_account.py -e 'dpc@fluiditysoftware.com' -f 'Don' -l 'Carney' -n '1' -a WDW83RPJWWPPUDNDEKM53 -i 'abc@sso.onmicrosoft.com' -t 'standard'
