Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--convert.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/convert.py b/convert.py
index d35039a..6c120a1 100644
--- a/convert.py
+++ b/convert.py
@@ -85,7 +85,11 @@ time = {'day': (1, 1), 'Week': (7, 0.14285714285714285),
'Year': (365.25, 0.0027378507871321013),
'Hour': (0.041666666666666664, 24),
'Minute': (0.0006944444444444445, 1440),
- 'Second': (0.000011574074074074073, 86400)
+ 'Second': (0.000011574074074074073, 86400),
+ 'Millisecond': (1.1574074074074074e-8, 86400000),
+ 'Microsecond': (1.1574074074074074e-11, 86400000000),
+ 'Nanosecond': (1.1574074074074075e-14, 86400000000000),
+ 'Picosecond': (1.1574074074074074e-17, 86400000000000000),
}