From ca43deb9769b4a6a9cfb7fbab7fb4d2256c2c403 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Fri, 24 May 2013 21:06:34 +0200 Subject: moved common to utils package --- module/utils/json_layer.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 module/utils/json_layer.py (limited to 'module/utils/json_layer.py') diff --git a/module/utils/json_layer.py b/module/utils/json_layer.py new file mode 100644 index 000000000..cf9743603 --- /dev/null +++ b/module/utils/json_layer.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +# abstraction layer for json operations + +print ".json_layer is deprecated, use .json instead" + +try: # since python 2.6 + import json + from json import loads as json_loads + from json import dumps as json_dumps +except ImportError: #use system simplejson if available + import simplejson as json + from simplejson import loads as json_loads + from simplejson import dumps as json_dumps -- cgit v1.2.3