Open Graph Editor (PYTHON)
import maya.cmds as cmds

def open_graph_editor():
    cmds.GraphEditor()

# Call the function to open the Graph Editor
open_graph_editor()
Deselect All (MEL)
toggleSelMode;
toggleSelMode;
selectMode -object;

select -cl;
Viewport PAUSE/PLAY (PYTHON)
import pymel.core as pm

pm.ogs(p=True)
Viewport ON/OFF (MEL)
global string $gMainPane;
if (`paneLayout -q -manage $gMainPane`)
    paneLayout -e -manage false $gMainPane;
else
    paneLayout -e -manage true $gMainPane;
Open Bake Window (PYTHON)
import maya.mel as mel

def open_bake_simulation_box():
    mel.eval('BakeSimulationOptions')

# Call the function to open the Bake Simulation Window
open_bake_simulation_box()
Easy Reference Tool (PYTHON)
Download Script
EasyReferenceTool