Full 360 from two points

Hello

Rs.angle() return 0/180 and - 180/0, how I can have the full 360 angle from two points?

Thanks

does this help?

import rhinoscriptsyntax as rs

pts = rs.GetPoints(max_points=2)

if pts and len(pts)==2:
    angle = rs.Angle(pts[0],pts[1])[0]
   
    if angle<0:
        angle=360+angle
    print angle

Thank you.