diff options
author | Jimmy Huang <jimmy.huang@linux.intel.com> | 2012-08-31 15:24:14 -0700 |
---|---|---|
committer | Jimmy Huang <jimmy.huang@linux.intel.com> | 2012-08-31 15:24:14 -0700 |
commit | f007752892d78fb2d2cddbf5dd2f8a61574d91ed (patch) | |
tree | fe359b1f287d6780700456937c25bf0df8a33995 /autobahn/util.py | |
download | python-autobahn-2.0.tar.gz python-autobahn-2.0.tar.bz2 python-autobahn-2.0.zip |
Initial import to TizenHEADsubmit/trunk/20120831.222423submit/2.0alpha/20121116.194117submit/2.0/20130320.030059accepted/trunk/20120904.170034accepted/2.0alpha/20121116.234516accepted/2.0/20130320.0404041.0_branch2.0alpha2.01.0
Signed-off-by: Jimmy Huang <jimmy.huang@linux.intel.com>
Diffstat (limited to 'autobahn/util.py')
-rw-r--r-- | autobahn/util.py | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/autobahn/util.py b/autobahn/util.py new file mode 100644 index 0000000..208ee42 --- /dev/null +++ b/autobahn/util.py @@ -0,0 +1,60 @@ +###############################################################################
+##
+## Copyright 2011 Tavendo GmbH
+##
+## Licensed under the Apache License, Version 2.0 (the "License");
+## you may not use this file except in compliance with the License.
+## You may obtain a copy of the License at
+##
+## http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+##
+###############################################################################
+
+import datetime
+import time
+import random
+
+UTC_TIMESTAMP_FORMAT = "%Y-%m-%dT%H:%M:%SZ"
+
+
+def utcnow():
+ """
+ Get current time in UTC as ISO 8601 string.
+ """
+ now = datetime.datetime.utcnow()
+ return now.strftime(UTC_TIMESTAMP_FORMAT)
+
+
+def parseutc(s):
+ """
+ Parse an ISO 8601 combined date and time string, like i.e. 2011-11-23T12:23Z
+ into a UTC datetime instance.
+ """
+ try:
+ return datetime.datetime.strptime(s, UTC_TIMESTAMP_FORMAT)
+ except:
+ return None
+
+
+def utcstr(dt):
+ """
+ Convert an UTC datetime instance into an ISO 8601 combined date and time,
+ like i.e. 2011-11-23T12:23Z
+ """
+ try:
+ return dt.strftime(UTC_TIMESTAMP_FORMAT)
+ except:
+ return None
+
+
+def newid():
+ """
+ Generate a new random object ID.
+ """
+ return ''.join([random.choice("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_") for i in xrange(16)])
|