Can Panda3d find out PCs date and time?

I want my sky to change its colours depending on the PCs current time.So it will be night when its night in the real world.
Can Panda3d find out my PCs current date and time?

You would use Python for finding the date and time instead of Panda. You need to use the standard datetime module that comes with python. To use it:

from datetime import datetime
date = datetime.today()
print date.month, date.hour

:bulb: oh…good.