The default venv scripts for setting up app-specific Python environments just appends (env) to the console prompt. This is not particularly helpful and can lead to massive mistakes (e.g., if you have dev and production apps). You can update line 70 of the activate script in the venv/bin folder to show the app name instead.
PS1="($(basename $(dirname \"$VIRTUAL_ENV\"))) ${PS1-}"