James Addison
James Addison
Would it be possible to refactor `certbot` to be more of a library+tool than just a tool? Or two packages `python-certbot` and `certbot`, with the latter having the current functionality...
Is there a (much!) better way to achieve the following? (Note the hack at the bottom of the snippet) ``` def json_loads(v): return json.loads(v) def serialize_unknown_types(v): if isinstance(v, Decimal): return...
Maybe a dumb question, but I'm looking at using this app and am wondering how resizing the image would work. Eg. I use sorl-thumbnail currently in my project, is there...
As a `client_credentials` based access token has no refresh token, the `refresh_token()` functionality raises an exception (ie. `InvalidRequestError: Missing refresh token parameter.`). Based on the spec, I believe this is...
It would be great if this could support both the `psycopg2` as well as `postgis` Django DB backends.
I'm not sure if this is a feasible request or not, but bootstrap 2.0 has been released (twitter's version). is it worth it to re-base this repo on the updated...
On line https://github.com/flashingpumpkin/django-socialregistration/blob/master/socialregistration/mixins.py#L126 it reads: `return User()` but technically it should read: `return get_user_model()()` which, while ugly, works for Django 1.5 (edit: when using a custom user model). Otherwise, I...
This command doesn't appear to have a differing status code, depending on if it updated the database(s) or not. It would be good to return something different so a cron...
Gleaned from the discussion with @avelis in #20, **during the bulk reindexing scenario only** the [following line](https://github.com/jaddison/django-simple-elasticsearch/blob/2e01808eb7b3d3593579ae64226f463320ec8487/simple_elasticsearch/mixins.py#L92): ``` data = {'delete' if delete else 'index': data} ``` would likely be...
Ben, I added you as a contributor on the original django-cachebuster repo - I figured you've done quite a bit of good work and I'm really quite busy, so hopefully...