Espen Angell Kristiansen
Espen Angell Kristiansen
Seems to work fine without `simplejson`, but today I had to add another package that has a hard dependency on simplejson, so now django-simple-rest stopped working. The trackeback is: ```...
The motivation is clearly stated in #2. We should be able to use: ``` python with instancewrapper.instance_settings(): print_uname() ``` As a shortcut for: ``` python ssh_uri = instancewrapper.get_ssh_uri() key_filename =...
remove the hard dependency on simplejson. The motivation for this is that simplejson is not required, and it causes problems with Django 1.5 (see https://github.com/simplejson/simplejson/issues/37). For most cases, the speedup...