requests working

This commit is contained in:
root
2013-02-11 15:10:34 -06:00
parent 6ba0458fbb
commit c1e8e305e1
9 changed files with 391 additions and 16 deletions

View File

@@ -12,6 +12,8 @@ def dt_to_decimal(utc):
def dt_from_decimal(dec):
if dec == None:
return "n/a"
integer = int(dec)
micro = (dec - decimal.Decimal(integer)) * decimal.Decimal(1000000)