<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/python
import ephem
import math
venus = ephem.Venus()
venus.compute(ephem.now())
radeg = float(venus.ra)*180./math.pi
decdeg = float(venus.dec)*180./math.pi
print radeg, decdeg


</pre></body></html>