Help for autoexec.py

Good morning!
I need help to configure the autoexec.py script.
I want you to run the command only in a time frame, from 08:00 to 23:59.
This is the command to be executed:

"import xbmc
xbmc.executebuiltin (‘PlayMedia (plugin: //plugin.audio.somafm/sonicuniverse)’)

Can I have help?
Thank you!

Grazie!
Fabrizio

Et Voilà!

import xbmc
from datetime import datetime, time
now = datetime.now()
now_time = now.time()
if now_time >= time(07,30) and now_time <= time(23,59):
xbmc.executebuiltin(‘PlayMedia(plugin://plugin.audio.somafm/sonicuniverse)’)