
s = "HOSE 1/4 X BSP F 3/8             Each"
print ( s.split('  ')[0] )

import re
m = re.search(r'^\S+(?:\s\S+)*', s)
if m:
  print( m.group() )