From ea560d243c1ee09b7be1d646c78b32efce3f8977 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Dec 30 2015 10:16:38 +0000 Subject: Drop the use of simplejson In python3 the std lib json module is at least as fast as simplejson and that gives us one less dependency which is always good. --- diff --git a/mdapi/__init__.py b/mdapi/__init__.py index 7428d37..473773b 100644 --- a/mdapi/__init__.py +++ b/mdapi/__init__.py @@ -22,13 +22,10 @@ ''' Top level of the mdapi aiohttp application. ''' +import json import os import urllib -try: - import simplejson as json -except ImportError: - import json import asyncio import werkzeug